diff --git a/examples/remote_procedure/mnist/README.md b/examples/remote_procedure/mnist/README.md index ba84f80ec..299bc1b19 100644 --- a/examples/remote_procedure/mnist/README.md +++ b/examples/remote_procedure/mnist/README.md @@ -1,11 +1,9 @@ - - # Mephisto MNIST Model Evaluator demo This task is a simple model evaluation demo, presenting the worker with three spaces to draw images in, running an MNIST model on them to predict an output, and then allowing the worker to assess and correct that output. -Introduced in [#677](https://github.com/facebookresearch/Mephisto/pull/677), some screenshots and discussion there. \ No newline at end of file +Introduced in [#677](https://github.com/facebookresearch/Mephisto/pull/677), some screenshots and discussion there. + +For more details how to write your own `webapp` (ReactJS application) see example in current directory. +Also, read [short documentation](../../../mephisto/client/review_app/README.md) +for the main Review App to understand how to add review part in your `webapp`. diff --git a/examples/remote_procedure/mnist/custom-review/.gitignore b/examples/remote_procedure/mnist/custom-review/.gitignore deleted file mode 100644 index 4d29575de..000000000 --- a/examples/remote_procedure/mnist/custom-review/.gitignore +++ /dev/null @@ -1,23 +0,0 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# dependencies -/node_modules -/.pnp -.pnp.js - -# testing -/coverage - -# production -/build - -# misc -.DS_Store -.env.local -.env.development.local -.env.test.local -.env.production.local - -npm-debug.log* -yarn-debug.log* -yarn-error.log* diff --git a/examples/remote_procedure/mnist/custom-review/README.md b/examples/remote_procedure/mnist/custom-review/README.md deleted file mode 100644 index 80b13b356..000000000 --- a/examples/remote_procedure/mnist/custom-review/README.md +++ /dev/null @@ -1,92 +0,0 @@ - - - -# Mephisto Review App - -A customizable base template for creating data exploration interfaces with first-class support for the ```mephisto review``` command. - -## Table of Contents -1. [Usage](#Usage) -2. [Notes](#Notes) -3. [Customization](#Customization) - -## Usage - -1. Create a sample data file ```sample-data.csv``` (this template also ships with a sample data file for you): - - ``` - This is good text, row1 - This is bad text, row2 - ``` - -2. Use `create-react-app` to generate a review app with this template as a base - - ```npx create-react-app my-review --template mephisto-review``` - -3. Build your app - - cd my-review - npm run build - -4. Run ```mephisto review``` (note that [Mephisto must be installed](https://github.com/facebookresearch/Mephisto/blob/main/docs/quickstart.md) to use this CLI command) - - $ cat sample-data.csv | mephisto review ~/path/to/your/my-review/build --all -o results.csv - -5. Open the review app in your browser - -If the review CLI command ran correctly, you should see output similar to the following on your terminal: - - Running on http://127.0.0.1:5000/ (Press CTRL+C to quit) - -Open ```http://127.0.0.1:5000/``` or the given URL in an internet browser - -6. Review your sample data with the UI prompts - -7. Press ```Ctrl-C``` in your terminal to shut down Mephisto review if it has not shut down automatically - -8. View your review results in the generated ```results.csv``` - -## Notes - -- The ID property of review items represents their 0-indexed position within the given list of review items for Mephisto review. -- If you wish to review jsonl type data, remember to add the --json flag to your Mephisto review command for proper data parsing. -- If you wish to review all items in an unordered fashion include the ```--all``` flag in your Mephisto review command -- If you wish to review all items once in an ordered fashion do not include the ```--all``` flag in your Mephisto review command - -## Customization - -To customize the review interface, make modifications to the ```index.js``` file -You can customize the way review items are displayed for both of the two routes in the App: - -1. Customize the layout of all data: - - - **Modify the properties of the `````` tag under the ```/``` route on line 35.** - - - If you do not wish to use pagination, set the ```pagination``` property to ```false``` (default is true, must be a boolean value) - - - Adjust the number of results that appear per page of review by setting the ```resultsPerPage``` property (must be an integer) - - - Add custom renderers for rendering the layout of all items by passing a ```collectionRenderer``` property to AllItemView: - - The collectionRenderer property must be a react component. - - The collectionRenderer component will be passed down a property of ```items```, which represents an array of all review items. - - The collectionRenderer component will also be passed down a property of ```itemRenderer``` which can collectionRenderer the data of a single item. - - The itemRenderer can be placed in each of the individual item views of your collectionRenderer - - By default the item collectionRenderer will be a header displaying the item id as well as a pre element containing the stringified JSON data of the item - - - Customize the layout of individual items in either the default collectionRenderer or your custom collectionRenderer by passing an ```itemRenderer``` property to AllItemView: - - The itemRenderer must be a react component. - - The itemRenderer will be passed down a property of ```item``` - - The item property will contain the properties of ```items``` representing the JSON data of the review item as well as an ```id``` representing the 0 indexed position of the item in the review data - -2. Customize the layout of individual item views: - - - **Modify the properties of the `````` tag under the ```/``` route on line 24.** - - - Add custom renderers for items by passing an ```itemRenderer``` property to ItemView: - - The itemRenderer property must be a react component. - - The itemRenderer component will be passed down a property of ```item``` - - The item property will contain the properties of ```items``` representing the JSON data of the review item as well as an ```id``` representing the 0 indexed position of the item in the review data diff --git a/examples/remote_procedure/mnist/custom-review/package.json b/examples/remote_procedure/mnist/custom-review/package.json deleted file mode 100644 index 19bf75a6a..000000000 --- a/examples/remote_procedure/mnist/custom-review/package.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "name": "custom-review", - "version": "0.1.0", - "private": true, - "dependencies": { - "@blueprintjs/core": "^3.54.0", - "mephisto-review-hook": "^2.0.3", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "react-router-dom": "^5.3.3", - "react-scripts": "5.0.1" - }, - "scripts": { - "start": "react-scripts start", - "build": "react-scripts build", - "test": "react-scripts test", - "eject": "react-scripts eject", - "serve": "serve -s build", - "build-and-serve": "npm run build && npm run serve" - }, - "eslintConfig": { - "extends": [ - "react-app", - "plugin:jsx-a11y/recommended" - ], - "plugins": [ - "jsx-a11y" - ] - }, - "browserslist": { - "production": [ - ">0.2%", - "not dead", - "not op_mini all" - ], - "development": [ - "last 1 chrome version", - "last 1 firefox version", - "last 1 safari version" - ] - } -} diff --git a/examples/remote_procedure/mnist/custom-review/public/favicon.ico b/examples/remote_procedure/mnist/custom-review/public/favicon.ico deleted file mode 100644 index a11777cc4..000000000 Binary files a/examples/remote_procedure/mnist/custom-review/public/favicon.ico and /dev/null differ diff --git a/examples/remote_procedure/mnist/custom-review/public/index.html b/examples/remote_procedure/mnist/custom-review/public/index.html deleted file mode 100644 index ec0ac83ef..000000000 --- a/examples/remote_procedure/mnist/custom-review/public/index.html +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - Mephisto Review - - - -
- - - diff --git a/examples/remote_procedure/mnist/custom-review/public/logo192.png b/examples/remote_procedure/mnist/custom-review/public/logo192.png deleted file mode 100644 index fc44b0a37..000000000 Binary files a/examples/remote_procedure/mnist/custom-review/public/logo192.png and /dev/null differ diff --git a/examples/remote_procedure/mnist/custom-review/public/logo512.png b/examples/remote_procedure/mnist/custom-review/public/logo512.png deleted file mode 100644 index a4e47a654..000000000 Binary files a/examples/remote_procedure/mnist/custom-review/public/logo512.png and /dev/null differ diff --git a/examples/remote_procedure/mnist/custom-review/public/robots.txt b/examples/remote_procedure/mnist/custom-review/public/robots.txt deleted file mode 100644 index e9e57dc4d..000000000 --- a/examples/remote_procedure/mnist/custom-review/public/robots.txt +++ /dev/null @@ -1,3 +0,0 @@ -# https://www.robotstxt.org/robotstxt.html -User-agent: * -Disallow: diff --git a/examples/remote_procedure/mnist/custom-review/sample-data.csv b/examples/remote_procedure/mnist/custom-review/sample-data.csv deleted file mode 100644 index da7032112..000000000 --- a/examples/remote_procedure/mnist/custom-review/sample-data.csv +++ /dev/null @@ -1,2 +0,0 @@ -1,ball,bouncy -2,car,shiny diff --git a/examples/remote_procedure/mnist/custom-review/sample-data.jsonl b/examples/remote_procedure/mnist/custom-review/sample-data.jsonl deleted file mode 100644 index d29796703..000000000 --- a/examples/remote_procedure/mnist/custom-review/sample-data.jsonl +++ /dev/null @@ -1,2 +0,0 @@ -{"id": 1, "name": "ball", "description": "bouncy"} -{"id": 2, "name": "car", "description": "shiny"} diff --git a/examples/remote_procedure/mnist/custom-review/src/components/CollectionView.jsx b/examples/remote_procedure/mnist/custom-review/src/components/CollectionView.jsx deleted file mode 100644 index 4361c3ea4..000000000 --- a/examples/remote_procedure/mnist/custom-review/src/components/CollectionView.jsx +++ /dev/null @@ -1,168 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React, { useState } from "react"; -import { Redirect } from "react-router-dom"; -import { useMephistoReview } from "mephisto-review-hook"; -import { - InputGroup, - Button, - Navbar, - NavbarGroup, - NavbarDivider, - NavbarHeading, - Alignment, -} from "@blueprintjs/core"; -import { Tooltip } from "@blueprintjs/core"; -import { GridCollection, JSONItem } from "../renderers"; -import { Pagination } from "./pagination"; -import { getHostname } from "../utils"; -import ErrorPane from "./ErrorPane"; - -function CollectionView({ - itemRenderer = JSONItem, - collectionRenderer: CollectionRenderer = GridCollection, - pagination = true, - resultsPerPage = 9, -}) { - const [page, setPage] = useState(pagination ? 1 : null); - const [filters, setFilters] = useState(""); - const [filtersBuffer, setFiltersBuffer] = useState(""); - const [filterTimeout, setFilterTimeout] = useState(null); - - const { - data, - isFinished, - isLoading, - error, - mode, - totalPages, - } = useMephistoReview({ - page, - resultsPerPage, - filters, - hostname: getHostname(), - }); - - const setFiltersAndResetPage = (filtersStr) => { - if (page !== null && page !== 1) setPage(1); - setFilters(filtersStr); - }; - - const delaySetFilters = (filtersStr) => { - setFiltersBuffer(filtersStr); - if (filterTimeout) { - clearTimeout(filterTimeout); - } - setFilterTimeout( - setTimeout(() => { - setFiltersAndResetPage(filtersStr); - }, 3000) - ); - }; - - const setFiltersImmediately = () => { - if (filterTimeout) { - clearTimeout(filterTimeout); - } - setFiltersAndResetPage(filtersBuffer); - }; - - const searchButton = ( - - ); - - if (mode === "OBO") return ; - return ( - <> - -
- - - Mephisto Review - - - - - - delaySetFilters(event.target.value)} - onKeyDown={(event) => { - if (event.key === "Enter") setFiltersImmediately(); - }} - placeholder="Filter data..." - value={filtersBuffer} - rightElement={searchButton} - /> - - -
-
-
-
- - {isLoading ? ( -

Loading...

- ) : isFinished ? ( -

- Done reviewing! You can close this app now -

- ) : data && data.length > 0 ? ( - <> - - {pagination && totalPages > 1 ? ( - - ) : null} - - ) : ( -
-

- Thanks for using the $ mephisto review interface. - Here are a few ways to get started: -

-

- 1. Review data from a .csv or{" "} - .jsonl file -

-
-                $ cat sample-data.json |
-                mephisto review review-app/build/{" "}
-                --json --all --stdout
-              
-
-                $ cat sample-data.csv |
-                mephisto review review-app/build/{" "}
-                --csv --all --stdout
-              
-

2. Review data from the Mephisto database

-
-                $ mephisto review review-app/build/{" "}
-                --db mephisto_db_task_name{" "}
-                --all --stdout
-              
-
- )} -
-
- - ); -} - -export default CollectionView; diff --git a/examples/remote_procedure/mnist/custom-review/src/components/ErrorPane.js b/examples/remote_procedure/mnist/custom-review/src/components/ErrorPane.js deleted file mode 100644 index 6cd25a07f..000000000 --- a/examples/remote_procedure/mnist/custom-review/src/components/ErrorPane.js +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React from "react"; -import { Button, Icon } from "@blueprintjs/core"; - -function ErrorPane({ error }) { - const [hide, setHide] = React.useState(false); - const errorType = error && error.type; - React.useEffect(() => { - if (!error) return; - console.error(error); - }, [error, errorType]); - return ( - error && - !hide && ( -
-
- ) - ); -} - -export default ErrorPane; diff --git a/examples/remote_procedure/mnist/custom-review/src/components/ItemView.jsx b/examples/remote_procedure/mnist/custom-review/src/components/ItemView.jsx deleted file mode 100644 index aef6abf88..000000000 --- a/examples/remote_procedure/mnist/custom-review/src/components/ItemView.jsx +++ /dev/null @@ -1,184 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React from "react"; -import { useMephistoReview } from "mephisto-review-hook"; -import { useParams, useHistory, Link } from "react-router-dom"; -import { - Button, - Navbar, - NavbarGroup, - NavbarDivider, - NavbarHeading, - Alignment, - Position, - Toaster, -} from "@blueprintjs/core"; -import { JSONItem } from "../renderers/JSONItem"; -import { getHostname } from "../utils"; -import ErrorPane from "./ErrorPane"; - -const AppToaster = Toaster.create({ - className: "recipe-toaster", - position: Position.TOP, -}); - -function ItemView({ - itemRenderer: ItemRenderer = JSONItem, - wrapClass, - allowReview = true, -}) { - const { id } = useParams(); - const { - data: item, - isFinished, - isLoading, - submit, - error, - mode, - } = useMephistoReview({ taskId: id, hostname: getHostname() }); - - const history = useHistory(); - - const confirmReview = () => { - if (mode === "OBO") { - history.push("/"); - } else { - AppToaster.show({ message: "Review response recorded." }); - } - }; - - const reviewError = (error) => { - AppToaster.show({ message: `ERROR: ${error}` }); - }; - - const buttonDisable = error || isFinished || isLoading || item == null; - - const hideReviewWorkflow = !allowReview && mode === "ALL"; - - return ( - <> - -
- - {mode === "ALL" ? ( - <> - - - - - - ) : null} - - {hideReviewWorkflow ? ( - Viewing task: - ) : ( - Please review the following item: - )} - - - {hideReviewWorkflow ? null : ( - - - - - )} -
-
-
- {isLoading ? ( -
- -

Loading...

-
- ) : isFinished ? ( -
- -

- Done reviewing! You can close this app now -

-
- ) : item ? ( - wrapClass ? ( -
- - -
- ) : ( - <> - - - - ) - ) : ( -
-
- -

- Thanks for using the $ mephisto review interface. - Here are a few ways to get started: -

-

- 1. Review data from a .csv or{" "} - .jsonl file -

-
-                $ cat sample-data.json |
-                mephisto review review-app/build/{" "}
-                --json --stdout
-              
-
-                $ cat sample-data.csv |
-                mephisto review review-app/build/{" "}
-                --csv --stdout
-              
-

2. Review data from the Mephisto database

-
-                $ mephisto review review-app/build/{" "}
-                --db mephisto_db_task_name{" "}
-                --stdout
-              
-
-
- )} -
- - ); -} - -export default ItemView; diff --git a/examples/remote_procedure/mnist/custom-review/src/components/pagination/Pagination.css b/examples/remote_procedure/mnist/custom-review/src/components/pagination/Pagination.css deleted file mode 100644 index abf1cc881..000000000 --- a/examples/remote_procedure/mnist/custom-review/src/components/pagination/Pagination.css +++ /dev/null @@ -1,9 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -.pagination { - padding: 12px 0px; -} diff --git a/examples/remote_procedure/mnist/custom-review/src/components/pagination/Pagination.jsx b/examples/remote_procedure/mnist/custom-review/src/components/pagination/Pagination.jsx deleted file mode 100644 index aa0b060ba..000000000 --- a/examples/remote_procedure/mnist/custom-review/src/components/pagination/Pagination.jsx +++ /dev/null @@ -1,130 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React from "react"; -import { Button, Icon, Intent } from "@blueprintjs/core"; -import "./Pagination.css"; - -/* - * Creates pagination buttons based on the total number of pages to be paginated as well as the active page. - * The setPage parameter allows the component to change the page state in its parent component. - */ - -function getPagination(page, totalPages) { - //how many buttons are allowed to be displayed between the next and last page buttons - const MAX_CELLS = 7; - //middle entry of the buttons is the floor of half of the max - const CELL_MID_LEN = Math.floor(MAX_CELLS / 2); - - /*stores the attributes of the buttons to be displayed - * The term ellipsis in objects stored in this array refers to series of page numbers condensed into a single "..." button - * The term number in objects stored in this array refers to the page number of the button if the button is not an ellipsis - */ - let pages = []; - - if (totalPages > MAX_CELLS) { - //if there are more pages than the maximum buttons we can display, calculate where to place ellipis - - //start by populating the first and last two buttons in the display with their page numbers - pages[0] = { number: 1 }; - pages[1] = { number: 2 }; - pages[MAX_CELLS - 2] = { number: totalPages - 1 }; - pages[MAX_CELLS - 1] = { number: totalPages }; - - if (page <= CELL_MID_LEN) { - /* - * if active page is less than or equal to the middle entry of the display - * place ellipsis before the last button and populate the cells from the first button on - */ - pages[MAX_CELLS - 2].ellipsis = true; - for (let i = 2; i < MAX_CELLS - 2; i++) { - pages[i] = { number: i + 1 }; - } - } else if (totalPages - page < CELL_MID_LEN) { - /* - * else if the distance from active page to the last page is less than the middle entry of the display - * place ellipsis after the first button and populate the cells from the last button prior - */ - pages[1].ellipsis = true; - for (let i = 2; i < MAX_CELLS - 2; i++) { - pages[i] = { number: totalPages - MAX_CELLS + i + 1 }; - } - } else { - /* - * otherwise the active page must be too far away from first and last buttons and two ellipsis must be placed on either side of the active pages - * cells are populated assuming the middle button is the active page - */ - pages[1].ellipsis = true; - pages[MAX_CELLS - 2].ellipsis = true; - - pages[CELL_MID_LEN] = { number: page }; - for (let i = 1; i < MAX_CELLS - 5; i++) { - pages[CELL_MID_LEN + i] = { number: page + i }; - pages[CELL_MID_LEN - i] = { number: page - i }; - } - } - } else { - //If there are less pages than the max no ellipsis is needed and all buttons can be populated normally - for (let i = 0; i < totalPages; i++) { - pages[i] = { number: i + 1, ellipsis: false }; - } - } - - //set active flag for active page - pages.forEach((p) => { - if (p.number === page) p.active = true; - }); - - //if at last page disable going forward and if at first page disable going back - const isLeftArrowEnabled = page > 1; - const isRightArrowEnabled = page < totalPages; - - return { - pages, - isLeftArrowEnabled, - isRightArrowEnabled, - }; -} - -function Pagination({ page = 1, totalPages = 1, setPage = () => {} }) { - const { pages, isLeftArrowEnabled, isRightArrowEnabled } = getPagination( - page, - totalPages - ); - - return ( -
- - {pages.map((p) => ( - -
- ); -} - -export default Pagination; diff --git a/examples/remote_procedure/mnist/custom-review/src/components/pagination/index.js b/examples/remote_procedure/mnist/custom-review/src/components/pagination/index.js deleted file mode 100644 index a1dfc64a3..000000000 --- a/examples/remote_procedure/mnist/custom-review/src/components/pagination/index.js +++ /dev/null @@ -1,9 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import Pagination from "./Pagination"; - -export { Pagination }; diff --git a/examples/remote_procedure/mnist/custom-review/src/config.js b/examples/remote_procedure/mnist/custom-review/src/config.js deleted file mode 100644 index 4ce1d12d1..000000000 --- a/examples/remote_procedure/mnist/custom-review/src/config.js +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -const config = { - /* - The port that useMephistoReview() in the browser will connect to the - server on. - - Tip: This is useful when developing on the review interface locally so UI changes - don't require you to kill and relaunch the server each time. - You can launch `$ mephisto review --port 9000` once to launch - the review server fed in with the appropriate data source, and then instead of using - the interface at , you can run `npm start` to get a - live-reloading developer build server. - */ - // port: 9000, -}; - -export default config; diff --git a/examples/remote_procedure/mnist/custom-review/src/custom/.gitkeep b/examples/remote_procedure/mnist/custom-review/src/custom/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/examples/remote_procedure/mnist/custom-review/src/custom/MyDataItem.js b/examples/remote_procedure/mnist/custom-review/src/custom/MyDataItem.js deleted file mode 100644 index 3a015bac2..000000000 --- a/examples/remote_procedure/mnist/custom-review/src/custom/MyDataItem.js +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React from "react"; -import { Card } from "@blueprintjs/core"; - -function AnnotationCard({ annotation }) { - console.log(annotation); - const { isCorrect, trueAnnotation, currentAnnotation, imgData } = annotation; - return ( -
-

- {""} -

-

Model Annotation: {currentAnnotation}

-

Marked correct: {isCorrect ? "👍" : "👎"}

-

Provided Annotation: {trueAnnotation}

-
- ); -} - -export default function MyDataItem({ item }) { - const data = item.data.data; - const annotations = data.final_submission.annotations; - const annotation_cards = annotations.map((annotation, idx) => ( - - )); - const request_count = data.requests.length / 2; - const duration = Math.round(item.data.task_end - item.data.task_start); - return ( - -
{annotation_cards}
-

{request_count} drawings

-

{duration} seconds

-
- ); -} diff --git a/examples/remote_procedure/mnist/custom-review/src/index.css b/examples/remote_procedure/mnist/custom-review/src/index.css deleted file mode 100644 index 0198ddbdf..000000000 --- a/examples/remote_procedure/mnist/custom-review/src/index.css +++ /dev/null @@ -1,103 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", - "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", - sans-serif; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - background-color: #ededed; -} - -code { - font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", - monospace; -} - -.error { - color: #e3242b; -} - -.navbar-wrapper { - width: 75vw; - margin: 0 auto; -} - -.all-item-view-search-bar { - width: 60vw; -} - -@media only screen and (max-width: 1200px) { - .navbar-header { - display: none !important; - } - - .all-item-view-search-bar { - width: 75vw; - } -} - -.all-item-view-message { - margin: auto 0px; -} - -.all-item-view-error { - margin-top: 36px; - max-width: 50%; -} - -.all-item-view-no-data { - max-width: 50%; -} - -.all-item-view, -.item-view { - padding-top: 50px; - width: 100vw; - overflow: auto; -} - -.item-dynamic { - display: flex; - flex-direction: column; - align-items: center; - font-size: calc(10px + 1vmin); - height: calc(100vh - 50px); -} - -.item-view-message { - margin: auto 0px; -} - -.item-view-error { - position: absolute; - bottom: 0px; - left: 0; - right: 0; - background: red; - color: white; - padding: 10px; - font-size: 14px; -} - -.item-view-no-data { - max-width: 50%; -} - -.btn { - margin: 0px 6px; -} - -code { - background-color: #ddd; - padding: 3px 5px; -} - -.highlight { - background-color: hsla(60, 83%, 68%, 0.3); -} diff --git a/examples/remote_procedure/mnist/custom-review/src/index.js b/examples/remote_procedure/mnist/custom-review/src/index.js deleted file mode 100644 index 5eca8623f..000000000 --- a/examples/remote_procedure/mnist/custom-review/src/index.js +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React from "react"; -import ReactDOM from "react-dom"; -import { BrowserRouter as Router, Switch, Route } from "react-router-dom"; -import CollectionView from "./components/CollectionView"; -import ItemView from "./components/ItemView"; -import "normalize.css/normalize.css"; -import "@blueprintjs/icons/lib/css/blueprint-icons.css"; -import "@blueprintjs/core/lib/css/blueprint.css"; -import MyDataItem from "./custom/MyDataItem"; -import "./index.css"; - -import { GridCollection, JSONItem } from "./renderers"; - -ReactDOM.render( - - - - - {/* For more information see the 'Customization' section of the README.md file. */} - - - - {/* For more information see the 'Customization' section of the README.md file. */} - - - - - , - document.getElementById("root") -); diff --git a/examples/remote_procedure/mnist/custom-review/src/utils.js b/examples/remote_procedure/mnist/custom-review/src/utils.js deleted file mode 100644 index 25efa7d51..000000000 --- a/examples/remote_procedure/mnist/custom-review/src/utils.js +++ /dev/null @@ -1,15 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import config from "./config"; - -function getHostname() { - return config.port - ? `${window.location.protocol}//${window.location.hostname}:${config.port}` - : window.location.origin; -} - -export { getHostname }; diff --git a/examples/remote_procedure/mnist/hydra_configs/conf/launch_with_local.yaml b/examples/remote_procedure/mnist/hydra_configs/conf/launch_with_local.yaml index 73b5c99da..74453dc11 100644 --- a/examples/remote_procedure/mnist/hydra_configs/conf/launch_with_local.yaml +++ b/examples/remote_procedure/mnist/hydra_configs/conf/launch_with_local.yaml @@ -1,7 +1,3 @@ -# Copyright (c) Meta Platforms and its affiliates. -# This source code is licensed under the MIT license found in the -# LICENSE file in the root directory of this source tree. - #@package _global_ defaults: - /mephisto/blueprint: remote_procedure @@ -10,6 +6,7 @@ defaults: mephisto: blueprint: task_source: ${task_dir}/webapp/build/bundle.js + task_source_review: ${task_dir}/webapp/build/bundle.review.js link_task_source: false # NOTE pick something based on your task block_qualification: test_qual_block diff --git a/examples/remote_procedure/mnist/hydra_configs/conf/screening_example.yaml b/examples/remote_procedure/mnist/hydra_configs/conf/screening_example.yaml index 52ea55aa5..d9083c550 100644 --- a/examples/remote_procedure/mnist/hydra_configs/conf/screening_example.yaml +++ b/examples/remote_procedure/mnist/hydra_configs/conf/screening_example.yaml @@ -1,7 +1,3 @@ -# Copyright (c) Meta Platforms and its affiliates. -# This source code is licensed under the MIT license found in the -# LICENSE file in the root directory of this source tree. - #@package _global_ defaults: - /mephisto/blueprint: remote_procedure @@ -10,6 +6,7 @@ defaults: mephisto: blueprint: task_source: ${task_dir}/webapp/build/bundle.js + task_source_review: ${task_dir}/webapp/build/bundle.review.js link_task_source: false units_per_assignment: 1 passed_qualification_name: "test-mnist-passed-qualification" diff --git a/examples/remote_procedure/mnist/model.py b/examples/remote_procedure/mnist/model.py index 7e2299cb2..adc4a19ed 100644 --- a/examples/remote_procedure/mnist/model.py +++ b/examples/remote_procedure/mnist/model.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Copyright (c) Meta Platforms and its affiliates. +# Copyright (c) Facebook, Inc. and its affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. diff --git a/examples/remote_procedure/mnist/run_task.py b/examples/remote_procedure/mnist/run_task.py index 6a51d5f66..9dc6c96b5 100644 --- a/examples/remote_procedure/mnist/run_task.py +++ b/examples/remote_procedure/mnist/run_task.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Copyright (c) Meta Platforms and its affiliates. +# Copyright (c) Facebook, Inc. and its affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. @@ -52,7 +52,7 @@ def validate_screening_unit(unit: Unit): agent = unit.get_assigned_agent() if agent is not None: data = agent.state.get_data() - annotation = data["outputs"]["final_submission"]["annotations"][0] + annotation = data["final_submission"]["annotations"][0] if annotation["isCorrect"] and annotation["currentAnnotation"] == 3: return True return False diff --git a/examples/remote_procedure/mnist/webapp/cypress.config.js b/examples/remote_procedure/mnist/webapp/cypress.config.js index a8f21d574..c54a8b3b0 100644 --- a/examples/remote_procedure/mnist/webapp/cypress.config.js +++ b/examples/remote_procedure/mnist/webapp/cypress.config.js @@ -1,9 +1,3 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - module.exports = { video: false, diff --git a/examples/remote_procedure/mnist/webapp/cypress/e2e/remote_procedure_mnist.cy.js b/examples/remote_procedure/mnist/webapp/cypress/e2e/remote_procedure_mnist.cy.js index 0180d316f..89165224d 100644 --- a/examples/remote_procedure/mnist/webapp/cypress/e2e/remote_procedure_mnist.cy.js +++ b/examples/remote_procedure/mnist/webapp/cypress/e2e/remote_procedure_mnist.cy.js @@ -1,9 +1,3 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - describe("Loads remote_procedure_mnist", () => { it("Makes request for agent", () => { cy.intercept({ pathname: "/request_agent" }).as("agentRequest"); diff --git a/examples/remote_procedure/mnist/webapp/link_mephisto_task.sh b/examples/remote_procedure/mnist/webapp/link_mephisto_task.sh index 6936741b2..1c20308b1 100644 --- a/examples/remote_procedure/mnist/webapp/link_mephisto_task.sh +++ b/examples/remote_procedure/mnist/webapp/link_mephisto_task.sh @@ -1,7 +1,2 @@ #!/bin/sh - -# Copyright (c) Meta Platforms and its affiliates. -# This source code is licensed under the MIT license found in the -# LICENSE file in the root directory of this source tree. - npm link mephisto-task diff --git a/examples/remote_procedure/mnist/webapp/package.json b/examples/remote_procedure/mnist/webapp/package.json index e21012b8a..05c0debca 100644 --- a/examples/remote_procedure/mnist/webapp/package.json +++ b/examples/remote_procedure/mnist/webapp/package.json @@ -5,7 +5,8 @@ "main": "webpack.config.js", "scripts": { "dev": "webpack --mode development", - "test": "cypress open" + "test": "cypress open", + "build:review": "webpack --config=webpack.config.review.js --mode development" }, "keywords": [], "author": "", diff --git a/examples/remote_procedure/mnist/webapp/src/app.jsx b/examples/remote_procedure/mnist/webapp/src/app.jsx index 6b8854b33..e30b47148 100644 --- a/examples/remote_procedure/mnist/webapp/src/app.jsx +++ b/examples/remote_procedure/mnist/webapp/src/app.jsx @@ -1,7 +1,9 @@ /* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. + * Copyright (c) 2017-present, Facebook, Inc. + * All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. */ import React from "react"; @@ -64,6 +66,7 @@ function RemoteProcedureApp() { if (isPreview) { return ; } + return ( @@ -71,7 +74,7 @@ function RemoteProcedureApp() { diff --git a/examples/remote_procedure/mnist/webapp/src/components/core_components.jsx b/examples/remote_procedure/mnist/webapp/src/components/core_components.jsx index 61cafbdee..3b95c6a0c 100644 --- a/examples/remote_procedure/mnist/webapp/src/components/core_components.jsx +++ b/examples/remote_procedure/mnist/webapp/src/components/core_components.jsx @@ -1,7 +1,9 @@ /* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. + * Copyright (c) 2017-present, Facebook, Inc. + * All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. */ import React, { Fragment } from "react"; @@ -140,13 +142,22 @@ function Instructions({ taskData }) { } function TaskFrontend({ - taskData, - finalResults = null, classifyDigit, + finalResults = null, handleSubmit, + initialTaskData, }) { + if (finalResults) { + return ( + + ); + } + // TODO Update this file such that, if finalResults contains data we render in review mode with that data - const NUM_ANNOTATIONS = taskData.isScreeningUnit ? 1 : 3; + const NUM_ANNOTATIONS = initialTaskData.isScreeningUnit ? 1 : 3; const [annotations, updateAnnotations] = React.useReducer( (currentAnnotation, { updateIdx, updatedAnnotation }) => { return currentAnnotation.map((val, idx) => @@ -165,7 +176,7 @@ function TaskFrontend({ return (
- +
{annotations.map((_d, idx) => ( +
+ {"img" +
+ +
+ + Current Annotation: {value["currentAnnotation"]} + +
+ Annotation Correct?{" "} + + +
+ Corrected Annotation: +
+ +
+
+ ); +} + +function ReviewFrontend({ initialTaskData, reviewData }) { + return ( +
+ +
+ {reviewData["final_submission"]["annotations"].map((_d, idx) => ( + null} + value={_d} + /> + ))} +
+
+ + +
+ ); +} + +export { + LoadingScreen, + TaskFrontend as BaseFrontend, + ReviewFrontend, + Instructions, +}; diff --git a/examples/remote_procedure/mnist/webapp/src/main.js b/examples/remote_procedure/mnist/webapp/src/main.js index f710171aa..f4be63f80 100644 --- a/examples/remote_procedure/mnist/webapp/src/main.js +++ b/examples/remote_procedure/mnist/webapp/src/main.js @@ -1,5 +1,5 @@ /* - * Copyright (c) Meta Platforms and its affiliates. + * Copyright (c) Facebook, Inc. and its affiliates. * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ diff --git a/examples/remote_procedure/mnist_for_review/webapp/src/review.js b/examples/remote_procedure/mnist/webapp/src/review.js similarity index 100% rename from examples/remote_procedure/mnist_for_review/webapp/src/review.js rename to examples/remote_procedure/mnist/webapp/src/review.js diff --git a/examples/remote_procedure/mnist_for_review/webapp/src/reviewapp.jsx b/examples/remote_procedure/mnist/webapp/src/reviewapp.jsx similarity index 100% rename from examples/remote_procedure/mnist_for_review/webapp/src/reviewapp.jsx rename to examples/remote_procedure/mnist/webapp/src/reviewapp.jsx diff --git a/examples/remote_procedure/mnist/webapp/src/static/index.html b/examples/remote_procedure/mnist/webapp/src/static/index.html index a8ed9fea6..9737ee19f 100644 --- a/examples/remote_procedure/mnist/webapp/src/static/index.html +++ b/examples/remote_procedure/mnist/webapp/src/static/index.html @@ -1,7 +1,8 @@ - diff --git a/examples/remote_procedure/mnist/webapp/webpack.config.js b/examples/remote_procedure/mnist/webapp/webpack.config.js index 7c92f67df..609297eda 100644 --- a/examples/remote_procedure/mnist/webapp/webpack.config.js +++ b/examples/remote_procedure/mnist/webapp/webpack.config.js @@ -1,5 +1,5 @@ /* - * Copyright (c) Meta Platforms and its affiliates. + * Copyright (c) Facebook, Inc. and its affiliates. * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ diff --git a/examples/remote_procedure/mnist_for_review/webapp/webpack.config.review.js b/examples/remote_procedure/mnist/webapp/webpack.config.review.js similarity index 100% rename from examples/remote_procedure/mnist_for_review/webapp/webpack.config.review.js rename to examples/remote_procedure/mnist/webapp/webpack.config.review.js diff --git a/examples/remote_procedure/mnist_for_review/README.md b/examples/remote_procedure/mnist_for_review/README.md deleted file mode 100644 index 299bc1b19..000000000 --- a/examples/remote_procedure/mnist_for_review/README.md +++ /dev/null @@ -1,9 +0,0 @@ -# Mephisto MNIST Model Evaluator demo - -This task is a simple model evaluation demo, presenting the worker with three spaces to draw images in, running an MNIST model on them to predict an output, and then allowing the worker to assess and correct that output. - -Introduced in [#677](https://github.com/facebookresearch/Mephisto/pull/677), some screenshots and discussion there. - -For more details how to write your own `webapp` (ReactJS application) see example in current directory. -Also, read [short documentation](../../../mephisto/client/review_app/README.md) -for the main Review App to understand how to add review part in your `webapp`. diff --git a/examples/remote_procedure/mnist_for_review/__init__.py b/examples/remote_procedure/mnist_for_review/__init__.py deleted file mode 100644 index cfaca7562..000000000 --- a/examples/remote_procedure/mnist_for_review/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env python3 - -# Copyright (c) Meta Platforms and its affiliates. -# This source code is licensed under the MIT license found in the -# LICENSE file in the root directory of this source tree. diff --git a/examples/remote_procedure/mnist_for_review/assets/.gitkeep b/examples/remote_procedure/mnist_for_review/assets/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/examples/remote_procedure/mnist_for_review/hydra_configs/conf/launch_with_local.yaml b/examples/remote_procedure/mnist_for_review/hydra_configs/conf/launch_with_local.yaml deleted file mode 100644 index 74453dc11..000000000 --- a/examples/remote_procedure/mnist_for_review/hydra_configs/conf/launch_with_local.yaml +++ /dev/null @@ -1,25 +0,0 @@ -#@package _global_ -defaults: - - /mephisto/blueprint: remote_procedure - - /mephisto/architect: local - - /mephisto/provider: mock -mephisto: - blueprint: - task_source: ${task_dir}/webapp/build/bundle.js - task_source_review: ${task_dir}/webapp/build/bundle.review.js - link_task_source: false - # NOTE pick something based on your task - block_qualification: test_qual_block - units_per_assignment: 1 - task: - allowed_concurrent: 1 - task_name: remote-procedure-test-task - task_title: "Provide feedback on our MNIST model" - # NOTE you'll want to update your task description - task_description: "You will draw digits. Try to fool our MNIST model, and provide us the correct label." - # NOTE set a reasonable reward - task_reward: 0.05 - # NOTE will want real tags - task_tags: "mnist,drawing,models,correction" - # We expect to handle 25 people using the MNIST model at once - max_num_concurrent_units: 25 diff --git a/examples/remote_procedure/mnist_for_review/hydra_configs/conf/screening_example.yaml b/examples/remote_procedure/mnist_for_review/hydra_configs/conf/screening_example.yaml deleted file mode 100644 index d9083c550..000000000 --- a/examples/remote_procedure/mnist_for_review/hydra_configs/conf/screening_example.yaml +++ /dev/null @@ -1,27 +0,0 @@ -#@package _global_ -defaults: - - /mephisto/blueprint: remote_procedure - - /mephisto/architect: local - - /mephisto/provider: mock -mephisto: - blueprint: - task_source: ${task_dir}/webapp/build/bundle.js - task_source_review: ${task_dir}/webapp/build/bundle.review.js - link_task_source: false - units_per_assignment: 1 - passed_qualification_name: "test-mnist-passed-qualification" - block_qualification: "test-mnist-blocked-qualification" - use_screening_task: true - max_screening_units: 3 - task: - task_name: remote-procedure-test-task - task_title: "Provide feedback on our MNIST model" - # NOTE you'll want to update your task description - task_description: "You will draw digits. Try to fool our MNIST model, and provide us the correct label." - # NOTE set a reasonable reward - task_reward: 0.05 - # NOTE will want real tags - task_tags: "mnist,drawing,models,correction" - # We expect to handle 25 people using the MNIST model at once - max_num_concurrent_units: 25 - allowed_concurrent: 1 diff --git a/examples/remote_procedure/mnist_for_review/model.py b/examples/remote_procedure/mnist_for_review/model.py deleted file mode 100644 index adc4a19ed..000000000 --- a/examples/remote_procedure/mnist_for_review/model.py +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/env python3 - -# Copyright (c) Facebook, Inc. and its affiliates. -# This source code is licensed under the MIT license found in the -# LICENSE file in the root directory of this source tree. - -# Using the implementation provided at -# https://github.com/aaron-xichen/pytorch-playground/blob/master/mnist/model.py - -import torch.nn as nn -from collections import OrderedDict -import torch.utils.model_zoo as model_zoo - -model_urls = {"mnist": "http://ml.cs.tsinghua.edu.cn/~chenxi/pytorch-models/mnist-b07bb66b.pth"} - - -class MLP(nn.Module): - def __init__(self, input_dims, n_hiddens, n_class): - super(MLP, self).__init__() - assert isinstance(input_dims, int), "Please provide int for input_dims" - self.input_dims = input_dims - current_dims = input_dims - layers = OrderedDict() - - if isinstance(n_hiddens, int): - n_hiddens = [n_hiddens] - else: - n_hiddens = list(n_hiddens) - for i, n_hidden in enumerate(n_hiddens): - layers["fc{}".format(i + 1)] = nn.Linear(current_dims, n_hidden) - layers["relu{}".format(i + 1)] = nn.ReLU() - layers["drop{}".format(i + 1)] = nn.Dropout(0.2) - current_dims = n_hidden - layers["out"] = nn.Linear(current_dims, n_class) - - self.model = nn.Sequential(layers) - print(self.model) - - def forward(self, input): - # input = input.view(input.size(0), -1) - assert input.size(1) == self.input_dims - return self.model.forward(input) - - -def mnist(input_dims=784, n_hiddens=[256, 256], n_class=10, pretrained=None): - model = MLP(input_dims, n_hiddens, n_class) - if pretrained is not None: - try: - m = model_zoo.load_url(model_urls["mnist"]) - except RuntimeError: - # No GPU, CPU only - m = model_zoo.load_url(model_urls["mnist"], map_location="cpu") - state_dict = m.state_dict() if isinstance(m, nn.Module) else m - assert isinstance(state_dict, (dict, OrderedDict)), type(state_dict) - model.load_state_dict(state_dict) - return model diff --git a/examples/remote_procedure/mnist_for_review/run_task.py b/examples/remote_procedure/mnist_for_review/run_task.py deleted file mode 100644 index 9dc6c96b5..000000000 --- a/examples/remote_procedure/mnist_for_review/run_task.py +++ /dev/null @@ -1,117 +0,0 @@ -#!/usr/bin/env python3 - -# Copyright (c) Facebook, Inc. and its affiliates. -# This source code is licensed under the MIT license found in the -# LICENSE file in the root directory of this source tree. - -try: - import torch - from PIL import Image -except ImportError: - print( - "Need to have torch, PIL, numpy installed to use this demo. For example: pip install torch pillow numpy" - ) - exit(1) - -import os -import base64 -from io import BytesIO -from mephisto.abstractions.blueprints.mixins.screen_task_required import ( - ScreenTaskRequired, -) -from mephisto.data_model.unit import Unit -from model import mnist - -from mephisto.operations.operator import Operator -from mephisto.tools.scripts import ( - build_custom_bundle, - task_script, -) -from mephisto.abstractions.blueprints.remote_procedure.remote_procedure_blueprint import ( - SharedRemoteProcedureTaskState, - RemoteProcedureAgentState, -) - -from omegaconf import DictConfig -from typing import List, Any, Dict -from rich import print - - -def my_screening_unit_generator(): - """ - The frontend react webapp reads in - isScreeningUnit using the initialTaskData - prop - """ - while True: - yield {"isScreeningUnit": True} - - -def validate_screening_unit(unit: Unit): - """Checking if the drawn number is 3""" - agent = unit.get_assigned_agent() - if agent is not None: - data = agent.state.get_data() - annotation = data["final_submission"]["annotations"][0] - if annotation["isCorrect"] and annotation["currentAnnotation"] == 3: - return True - return False - - -@task_script(default_config_file="launch_with_local") -def main(operator: Operator, cfg: DictConfig) -> None: - tasks: List[Dict[str, Any]] = [{"isScreeningUnit": False}] * cfg.num_tasks - mnist_model = mnist(pretrained=True) - is_using_screening_units = cfg.mephisto.blueprint["use_screening_task"] - - def handle_with_model( - _request_id: str, args: Dict[str, Any], agent_state: RemoteProcedureAgentState - ) -> Dict[str, Any]: - """Convert the image to be read by MNIST classifier, then classify""" - img_dat = args["urlData"].split("data:image/png;base64,")[1] - im = Image.open(BytesIO(base64.b64decode(img_dat))) - im_gray = im.convert("L") - im_resized = im_gray.resize((28, 28)) - im_vals = list(im_resized.getdata()) - norm_vals = [(255 - x) * 1.0 / 255.0 for x in im_vals] - in_tensor = torch.tensor([norm_vals]) - output = mnist_model(in_tensor) - pred = output.data.max(1)[1] - print("Predicted digit:", pred.item()) - return { - "digit_prediction": pred.item(), - } - - function_registry = { - "classify_digit": handle_with_model, - } - shared_state = SharedRemoteProcedureTaskState( - static_task_data=tasks, - function_registry=function_registry, - ) - - if is_using_screening_units: - """You have to defined a few more properties to enable screening units""" - shared_state.on_unit_submitted = ScreenTaskRequired.create_validation_function( - cfg.mephisto, - validate_screening_unit, - ) - shared_state.screening_data_factory = my_screening_unit_generator() - shared_state.qualifications += ScreenTaskRequired.get_mixin_qualifications( - cfg.mephisto, shared_state - ) - - task_dir = cfg.task_dir - - build_custom_bundle( - task_dir, - force_rebuild=cfg.mephisto.task.force_rebuild, - post_install_script=cfg.mephisto.task.post_install_script, - ) - - operator.launch_task_run(cfg.mephisto, shared_state) - operator.wait_for_runs_then_shutdown(skip_input=True, log_rate=30) - - -if __name__ == "__main__": - main() diff --git a/examples/remote_procedure/mnist_for_review/webapp/.babelrc b/examples/remote_procedure/mnist_for_review/webapp/.babelrc deleted file mode 100644 index 5507f2e86..000000000 --- a/examples/remote_procedure/mnist_for_review/webapp/.babelrc +++ /dev/null @@ -1,4 +0,0 @@ -{ - "presets": ["@babel/env", "@babel/preset-react"], - "plugins": ["@babel/plugin-proposal-class-properties"] -} diff --git a/examples/remote_procedure/mnist_for_review/webapp/.eslintrc b/examples/remote_procedure/mnist_for_review/webapp/.eslintrc deleted file mode 100644 index fcf5ef32e..000000000 --- a/examples/remote_procedure/mnist_for_review/webapp/.eslintrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": ["react-app"] -} diff --git a/examples/remote_procedure/mnist_for_review/webapp/cypress.config.js b/examples/remote_procedure/mnist_for_review/webapp/cypress.config.js deleted file mode 100644 index c54a8b3b0..000000000 --- a/examples/remote_procedure/mnist_for_review/webapp/cypress.config.js +++ /dev/null @@ -1,8 +0,0 @@ -module.exports = { - video: false, - - e2e: { - baseUrl: "http://localhost:3000/?worker_id=x&assignment_id=1", - supportFile: false, - }, -}; diff --git a/examples/remote_procedure/mnist_for_review/webapp/cypress/e2e/remote_procedure_mnist.cy.js b/examples/remote_procedure/mnist_for_review/webapp/cypress/e2e/remote_procedure_mnist.cy.js deleted file mode 100644 index 89165224d..000000000 --- a/examples/remote_procedure/mnist_for_review/webapp/cypress/e2e/remote_procedure_mnist.cy.js +++ /dev/null @@ -1,92 +0,0 @@ -describe("Loads remote_procedure_mnist", () => { - it("Makes request for agent", () => { - cy.intercept({ pathname: "/request_agent" }).as("agentRequest"); - cy.visit("/"); - cy.wait("@agentRequest").then((interception) => { - expect(interception.response.statusCode).to.eq(200); - }); - }); - it("Loads correct react elements", () => { - cy.get('[data-cy="canvas-container-0"]'); - cy.get('[data-cy="clear-button-0"]'); - cy.get('[data-cy="correct-checkbox-0"]'); - cy.get('[data-cy="correct-text-input-0"]'); - - cy.get('[data-cy="canvas-container-1"]'); - cy.get('[data-cy="clear-button-1"]'); - cy.get('[data-cy="correct-checkbox-1"]'); - cy.get('[data-cy="correct-text-input-1"]'); - - cy.get('[data-cy="canvas-container-2"]'); - cy.get('[data-cy="clear-button-2"]'); - cy.get('[data-cy="correct-checkbox-2"]'); - cy.get('[data-cy="correct-text-input-2"]'); - - cy.get('[data-cy="submit-button"]').as("submitButton"); - cy.get("@submitButton").should("be.disabled"); - }); - - it("Submitting with three corrected annotations", () => { - cy.on("window:alert", (txt) => { - expect(txt).to.contain("The task has been submitted!"); - }); - - cy.get('[data-cy="clear-button-0"]').as("clearButton0"); - cy.get('[data-cy="clear-button-1"]').as("clearButton1"); - cy.get('[data-cy="clear-button-2"]').as("clearButton2"); - - // draw 4 - cy.get('[data-cy="canvas-mouse-down-container-0"]') - .trigger("mouseover") - .trigger("mousedown", 20, 20) - .trigger("mousemove", 40, 150) - .trigger("mousemove", 150, 120) - .trigger("mousemove", 150, 10) - .trigger("mouseup", 150, 220); - - // There is a wait statement here because it takes some time for the model to calculate that it is a 4 - cy.wait(1000); - cy.get('[data-cy="current-annotation-0"]').should("contain.text", "4"); - cy.get('[data-cy="correct-checkbox-0"]').check(); - cy.get('[data-cy="correct-text-input-0"]').should("not.exist"); - - // draw 1 - cy.get('[data-cy="canvas-mouse-down-container-1"]') - .trigger("mouseover") - .trigger("mousedown", 20, 60) - .trigger("mousedown", 40, 40) - .trigger("mousedown", 150, 30) - .trigger("mousedown", 180, 60) - .trigger("mousedown", 180, 120) - .trigger("mousedown", 150, 135) - .trigger("mousedown", 85, 145) - .trigger("mousedown", 180, 150) - .trigger("mousedown", 180, 210) - .trigger("mouseup", 65, 220); - - cy.wait(1000); - cy.get('[data-cy="current-annotation-1"]').should("contain.text", "3"); - cy.get('[data-cy="correct-checkbox-1"]').check(); - cy.get('[data-cy="correct-text-input-1]').should("not.exist"); - - // draw gibberish - cy.get('[data-cy="canvas-mouse-down-container-2"]') - .trigger("mouseover") - .trigger("mousedown", 10, 20) - .trigger("mousedown", 120, 200) - .trigger("mouseup", 120, 200); - - cy.get('[data-cy="clear-button-2"]').click(); - - // draw 7 - cy.get('[data-cy="canvas-mouse-down-container-2"]') - .trigger("mouseover") - .trigger("mousedown", 30, 30) - .trigger("mousedown", 220, 40) - .trigger("mouseup", 40, 200); - - cy.get('[data-cy="correct-text-input-2"]').type("7"); - - cy.get('[data-cy="submit-button"]').click({ force: true }); - }); -}); diff --git a/examples/remote_procedure/mnist_for_review/webapp/link_mephisto_task.sh b/examples/remote_procedure/mnist_for_review/webapp/link_mephisto_task.sh deleted file mode 100644 index 1c20308b1..000000000 --- a/examples/remote_procedure/mnist_for_review/webapp/link_mephisto_task.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -npm link mephisto-task diff --git a/examples/remote_procedure/mnist_for_review/webapp/package.json b/examples/remote_procedure/mnist_for_review/webapp/package.json deleted file mode 100644 index 05c0debca..000000000 --- a/examples/remote_procedure/mnist_for_review/webapp/package.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "name": "parlai-mturk-task-compiler", - "version": "1.0.1", - "description": "", - "main": "webpack.config.js", - "scripts": { - "dev": "webpack --mode development", - "test": "cypress open", - "build:review": "webpack --config=webpack.config.review.js --mode development" - }, - "keywords": [], - "author": "", - "dependencies": { - "bootstrap": "^4.6.0", - "mephisto-task": "2.0.4", - "rc-slider": "^8.6.3", - "react": "^16", - "react-bootstrap": "^1.6.0", - "react-canvas-draw": "^1.2.1", - "react-dom": "^16", - "react-table": "^6.8.6" - }, - "devDependencies": { - "@babel/cli": "^7.1.0", - "@babel/core": "^7.1.0", - "@babel/plugin-proposal-class-properties": "^7.1.0", - "@babel/preset-env": "^7.1.0", - "@babel/preset-react": "^7.0.0", - "@typescript-eslint/eslint-plugin": "^5.14.0", - "@typescript-eslint/parser": "^5.14.0", - "babel-eslint": "^10.1.0", - "babel-loader": "^8.0.2", - "css-loader": "^6.7.1", - "cypress": "^10.1.0", - "eslint": "^8.11.0", - "eslint-config-react-app": "^7.0.0", - "eslint-plugin-flowtype": "^4.7.0", - "eslint-plugin-import": "^2.20.2", - "eslint-plugin-jsx-a11y": "^6.2.3", - "eslint-plugin-react": "^7.20.0", - "eslint-plugin-react-hooks": "^4.3.0", - "style-loader": "^1.1.3", - "url-loader": "^4.1.1", - "webpack": "^5.70.0", - "webpack-cli": "^4.9.0" - } -} diff --git a/examples/remote_procedure/mnist_for_review/webapp/src/app.jsx b/examples/remote_procedure/mnist_for_review/webapp/src/app.jsx deleted file mode 100644 index e30b47148..000000000 --- a/examples/remote_procedure/mnist_for_review/webapp/src/app.jsx +++ /dev/null @@ -1,97 +0,0 @@ -/* - * Copyright (c) 2017-present, Facebook, Inc. - * All rights reserved. - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. - */ - -import React from "react"; -import ReactDOM from "react-dom"; -import { - BaseFrontend, - LoadingScreen, - Instructions, -} from "./components/core_components.jsx"; - -import { - MephistoContext, - useMephistoRemoteProcedureTask, - ErrorBoundary, -} from "mephisto-task"; - -/* ================= Application Components ================= */ - -// Generate a random id -function uuidv4() { - return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function (c) { - var r = (Math.random() * 16) | 0, - v = c == "x" ? r : (r & 0x3) | 0x8; - return v.toString(16); - }); -} - -function RemoteProcedureApp() { - let mephistoProps = useMephistoRemoteProcedureTask({}); - - let { - blockedReason, - blockedExplanation, - taskConfig, - isPreview, - previewHtml, - isLoading, - handleSubmit, - remoteProcedure, - isOnboarding, - handleFatalError, - initialTaskData, - } = mephistoProps; - - const classifyDigit = remoteProcedure("classify_digit"); - - if (isOnboarding) { - // TODO You can use this as an opportunity to display anything you want for - // an onboarding agent - - // At the moment, this task has no onboarding - return

This task doesn't currently have an onboarding example set

; - } - if (blockedReason !== null) { - return

{blockedExplanation}

; - } - if (isLoading) { - return ; - } - if (isPreview) { - return ; - } - - return ( - - -
- -
-
-
- ); -} - -function TaskPreviewView({ description }) { - return ( -
-
-
- ); -} - -ReactDOM.render(, document.getElementById("app")); diff --git a/examples/remote_procedure/mnist_for_review/webapp/src/components/core_components.jsx b/examples/remote_procedure/mnist_for_review/webapp/src/components/core_components.jsx deleted file mode 100644 index 3b95c6a0c..000000000 --- a/examples/remote_procedure/mnist_for_review/webapp/src/components/core_components.jsx +++ /dev/null @@ -1,290 +0,0 @@ -/* - * Copyright (c) 2017-present, Facebook, Inc. - * All rights reserved. - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. - */ - -import React, { Fragment } from "react"; -import CanvasDraw from "react-canvas-draw"; - -function LoadingScreen() { - return Loading...; -} - -function Directions({ children }) { - return ( -
-
-
-

{children}

-
-
-
- ); -} - -function AnnotationCanvas({ onUpdate, classifyDigit, index }) { - const [currentAnnotation, setCurrentAnnotation] = React.useState(null); - const [trueAnnotation, setTrueAnnotation] = React.useState(""); - const [isCorrect, setIsCorrect] = React.useState(null); - - const querying = React.useRef(false); - const changed = React.useRef(false); - const canvasRef = React.useRef(); - - function triggerUpdate() { - onUpdate({ - isCorrect, - trueAnnotation, - currentAnnotation, - imgData: canvasRef.current.getDataURL("png", false, "#FFF"), - }); - } - - React.useEffect(() => triggerUpdate(), [isCorrect, trueAnnotation]); - - function submitAndAnnotate() { - let urlData = canvasRef.current.getDataURL("png", false, "#FFF"); - querying.current = true; - classifyDigit({ urlData }).then((res) => { - setCurrentAnnotation(res["digit_prediction"]); - triggerUpdate(urlData); - querying.current = false; - if (changed.current === true) { - // If it's changed since we last ran, rerun! - changed.current = false; - submitAndAnnotate(); - } - }); - } - - const canvas = ( - { - if (!querying.current) { - submitAndAnnotate(); - } else { - changed.current = true; // Query once last one comes in - } - }} - canvasWidth={250} - canvasHeight={250} - brushColor={"#000"} - brushRadius={18} - hideInterface={true} - ref={(canvasDraw) => (canvasRef.current = canvasDraw)} - /> - ); - - return ( -
-
{canvas}
- -
- - Current Annotation: {currentAnnotation} - -
- Annotation Correct?{" "} - setIsCorrect(!isCorrect)} - /> - {!isCorrect && ( - -
- Corrected Annotation: -
- setTrueAnnotation(evt.target.value)} - /> -
- )} -
- ); -} - -function Instructions({ taskData }) { - return ( -
-

MNIST Model Evaluator

-

- {taskData?.isScreeningUnit - ? "Screening Unit:" - : "To submit this task, you'll need to draw 3 (single) digits in the boxes below. Our model will try to provide an annotation for each."} -

-

- {taskData?.isScreeningUnit - ? 'To submit this task you will have to correctly draw the number 3 in the box below and check the "Annotation Correct" checkbox' - : "You can confirm or reject each of the annotations. Provide a correction if the annotation is wrong."} -

-
- ); -} - -function TaskFrontend({ - classifyDigit, - finalResults = null, - handleSubmit, - initialTaskData, -}) { - if (finalResults) { - return ( - - ); - } - - // TODO Update this file such that, if finalResults contains data we render in review mode with that data - const NUM_ANNOTATIONS = initialTaskData.isScreeningUnit ? 1 : 3; - const [annotations, updateAnnotations] = React.useReducer( - (currentAnnotation, { updateIdx, updatedAnnotation }) => { - return currentAnnotation.map((val, idx) => - idx == updateIdx ? updatedAnnotation : val - ); - }, - Array(NUM_ANNOTATIONS).fill({ - currentAnnotation: null, - trueAnnotation: null, - isCorrect: null, - }) - ); - let canSubmit = - annotations.filter((a) => a.isCorrect === true || a.trueAnnotation !== "") - .length == NUM_ANNOTATIONS; - - return ( -
- -
- {annotations.map((_d, idx) => ( - - updateAnnotations({ - updateIdx: idx, - updatedAnnotation: annotation, - }) - } - /> - ))} -
-
- - -
- ); -} - -function ReviewAnnotationCanvas({ index, value }) { - return ( -
-
- {"img" -
- -
- - Current Annotation: {value["currentAnnotation"]} - -
- Annotation Correct?{" "} - - -
- Corrected Annotation: -
- -
-
- ); -} - -function ReviewFrontend({ initialTaskData, reviewData }) { - return ( -
- -
- {reviewData["final_submission"]["annotations"].map((_d, idx) => ( - null} - value={_d} - /> - ))} -
-
- - -
- ); -} - -export { - LoadingScreen, - TaskFrontend as BaseFrontend, - ReviewFrontend, - Instructions, -}; diff --git a/examples/remote_procedure/mnist_for_review/webapp/src/css/style.css b/examples/remote_procedure/mnist_for_review/webapp/src/css/style.css deleted file mode 100644 index 4a472df42..000000000 --- a/examples/remote_procedure/mnist_for_review/webapp/src/css/style.css +++ /dev/null @@ -1,5 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ diff --git a/examples/remote_procedure/mnist_for_review/webapp/src/main.js b/examples/remote_procedure/mnist_for_review/webapp/src/main.js deleted file mode 100644 index f4be63f80..000000000 --- a/examples/remote_procedure/mnist_for_review/webapp/src/main.js +++ /dev/null @@ -1,8 +0,0 @@ -/* - * Copyright (c) Facebook, Inc. and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ -import "./app.jsx"; -import "./css/style.css"; -import "bootstrap/dist/css/bootstrap.min.css"; diff --git a/examples/remote_procedure/mnist_for_review/webapp/src/static/index.html b/examples/remote_procedure/mnist_for_review/webapp/src/static/index.html deleted file mode 100644 index 9737ee19f..000000000 --- a/examples/remote_procedure/mnist_for_review/webapp/src/static/index.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - Remote Query Example - - - - - - - - - -
- - - diff --git a/examples/remote_procedure/mnist_for_review/webapp/webpack.config.js b/examples/remote_procedure/mnist_for_review/webapp/webpack.config.js deleted file mode 100644 index 609297eda..000000000 --- a/examples/remote_procedure/mnist_for_review/webapp/webpack.config.js +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (c) Facebook, Inc. and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -var path = require("path"); -var webpack = require("webpack"); - -module.exports = { - entry: "./src/main.js", - output: { - path: __dirname, - filename: "build/bundle.js", - }, - resolve: { - alias: { - react: path.resolve("./node_modules/react"), - }, - fallback: { - net: false, - dns: false, - }, - }, - module: { - rules: [ - { - test: /\.(js|jsx)$/, - loader: "babel-loader", - exclude: /node_modules/, - options: { presets: ["@babel/env"] }, - }, - { - test: /\.css$/, - use: ["style-loader", "css-loader"], - }, - { - test: /\.(svg|png|jpe?g|ttf)$/, - loader: "url-loader", - options: { limit: 100000 }, - }, - { - test: /\.jpg$/, - loader: "file-loader", - }, - ], - }, -}; diff --git a/mephisto/client/README.md b/mephisto/client/README.md deleted file mode 100644 index eeca1ecd3..000000000 --- a/mephisto/client/README.md +++ /dev/null @@ -1,242 +0,0 @@ - - -## API specifications - -All of the endpoints below are **`GET`** unless specified otherwise. - -These specs are to be implemented in `mephisto/client/api.py`. - -Key: `💚 - Data Complete / 💛 - Data Mocked / 💜 - Consumed by UI / 🖤 - Not consumed by UI` - -#### WIP Endpoints / Backlog - -- Endpoints for actions to modify the review state of a Unit -- Endpoint for getting the URL of a task and it's data to show -- Make error reponse format more consistent across all endpoints / types of errors. Some stuff from the wild: - - https://stripe.com/docs/api/errors - - https://cloud.google.com/apis/design/errors#http_mapping - ---- -## 🕵️‍♀️ Requesters - -#### `/requesters` -💚💜 *Shows a list of all the requesters that are available on the local system* - -Sample response: -``` -{ - "requesters": [ - { - "provider_type": "mturk", - "registered": false, - "requester_id": "1", - "requester_name": "Bob" - }, - { - "provider_type": "mturk", - "registered": true, - "requester_id": "2", - "requester_name": "sally" - } - ] -} -``` - -#### `/requester/` - -💚💜 *Provides information on what params to provide if you'd like to set up a requester.* - -Sample response: -``` -[ - { - "args": { - "access_key_id": { - "choices": null, - "default": null, - "dest": "access_key_id", - "help": "IAM Access Key ID", - "option_string": "--access-key-id", - "type": "str" - }, - // ... - }, - "desc": "\n MTurkRequester: AWS are required to create a new Requester.\n Please create an IAM user with programmatic access and\n AmazonMechanicalTurkFullAccess policy at\n 'https://console.aws.amazon.com/iam/ (On the \"Set permissions\"\n page, choose \"Attach existing policies directly\" and then select\n \"AmazonMechanicalTurkFullAccess\" policy). After creating\n the IAM user, you should get an Access Key ID\n and Secret Access Key.\n " - } -] -``` - -#### `//get_balance` - TODO: Change to `/requester/balance/` - -💚💜 - -[Discussion] Instead of `balance` should we make the endpoint a bit more generic, e.g. `info` or `metadata` instead? [Yes] This is because perhaps not every requester may have the concept of having a budget, although most might. - -Sample response: -``` -# Success: - -{ "balance": 3000 } - -# Error: - -{ message: "Could not find the requester" } # [501] -``` - -#### **`POST`** `/requester//register` - -💛🖤 - -Sample response: -``` -# Success: - -{ - "success": true -} - -# Error: - -{ - "msg": "No name was specified for the requester.", - "success": false -} -``` - ---- -## 🚀 Launching - -#### `/launch/options` -💛💜 - -Sample response: -``` -{ - "blueprints": [ - { "name": "Test Blueprint", "rank": 1 }, - { "name": "Simple Q+A", "rank": 2 } - ], - "architects": ["Local", "Heroku"] -} -``` - -#### `/blueprints//arguments` -💛💜 - -Sample response: -``` -{ - "args": [ - { - "name": "Task name", - "defaultValue": "Default Task Name", - "helpText": "This is what your task will be named." - } - ] -} -``` - - -#### `/architects//arguments` -💛💜 - -Sample response: -``` -{ - "args": [ - { - "name": "Port number", - "defaultValue": 8888, - "helpText": "Your task will be run on this port." - } - ] -} -``` - -#### **`POST`** `/task_runs/launch` -💛🖤 - -Sample request: -``` -{ - "blueprint_name": "Test Blueprint", - "blueprint_args": [ { ... } ], - "architect": "Test Architect", - "architect_args": [ { ... } ], - "requester": -} -``` - -Sample response: -``` -# Success: - -{ - "success": true -} - -# Error: - -{ - "success": false, - # TODO: How should the server provide validation feedback? -} -``` - ---- -## 📥 Review - -#### `/task_runs/running` -💛🖤 - -[Discussion] We need to confirm and communicate what exactly we mean by a "running" task. Based on prior discussions, my suspicion is that this categorization is a little difficult. Let's settle on a technical definition. - -Sample response: -``` -{ - live_task_count: 1, - task_count: 1, - task_runs: TaskRun[] -} - -# For full example payload, see `task_runs__running` in mephisto/webapp/src/mocks.ts -``` - -#### `/task_runs/reviewable` -💛🖤 - -*Shows tasks with atleast 1 unit that is reviewable.* - -Sample response: -``` -{ - "total_reviewable": 8, - "task_runs": TaskRun[] -} -``` - -#### `/task_runs//units` -💛🖤 - -Sample response: -``` -{ - "unit_id": , - "view_path": "https://google.com", - "data": { - "name": "me" - } -} -``` - -#### **`POST`** `/task_runs//units//accept` -💛🖤 - -[Discussion] Accept params here to allow giving a bonus? - -#### **`POST`** `/task_runs//units//reject` -💛🖤 diff --git a/mephisto/client/cli.py b/mephisto/client/cli.py index 11addd31a..71f47c881 100644 --- a/mephisto/client/cli.py +++ b/mephisto/client/cli.py @@ -1,11 +1,10 @@ #!/usr/bin/env python3 -import os -import subprocess # Copyright (c) Facebook, Inc. and its affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. - +import os +import subprocess from typing import List from flask.cli import pass_script_info @@ -354,7 +353,7 @@ def review_app( os.environ["HOST"] = host os.environ["PORT"] = str(port) - print(f"[green]Review APP will start on \"{app_url}\" address.[/green]") + print(f'[green]Review APP will start on "{app_url}" address.[/green]') # Set up Review App Client if not server_only: diff --git a/mephisto/client/full/server.py b/mephisto/client/full/server.py deleted file mode 100644 index 41e6e8003..000000000 --- a/mephisto/client/full/server.py +++ /dev/null @@ -1,54 +0,0 @@ -#!/usr/bin/env python3 - -# Copyright (c) Meta Platforms and its affiliates. -# This source code is licensed under the MIT license found in the -# LICENSE file in the root directory of this source tree. - -from flask import Flask, send_file, jsonify # type: ignore -from mephisto.client.config import Config -from mephisto.client.api import api -from mephisto.operations.operator import Operator -from mephisto.abstractions.databases.local_database import LocalMephistoDB - -import os -import atexit -import signal - - -def get_app(): - app = Flask(__name__, static_url_path="/static", static_folder="webapp/build/static") - app.config.from_object(Config) - - app.register_blueprint(api, url_prefix="/api/v1") - - # Register extensions - db = LocalMephistoDB() - operator = Operator(db) - if not hasattr(app, "extensions"): - app.extensions = {} - app.extensions["db"] = db - app.extensions["operator"] = operator - - @app.route("/", defaults={"path": "index.html"}) - @app.route("/") - def index(path): - return send_file(os.path.join("webapp", "build", "index.html")) - - @app.after_request - def after_request(response): - response.headers.add("Access-Control-Allow-Origin", "*") - response.headers.add("Access-Control-Allow-Headers", "Content-Type,Authorization") - response.headers.add("Access-Control-Allow-Methods", "GET,PUT,POST,DELETE,OPTIONS") - response.headers.add("Cache-Control", "no-store") - return response - - term_handler = signal.getsignal(signal.SIGINT) - - def cleanup_resources(*args, **kwargs): - operator.shutdown() - db.shutdown() - term_handler(*args, **kwargs) - - atexit.register(cleanup_resources) - signal.signal(signal.SIGINT, cleanup_resources) - return app diff --git a/mephisto/client/full/webapp/README.md b/mephisto/client/full/webapp/README.md deleted file mode 100644 index 454514453..000000000 --- a/mephisto/client/full/webapp/README.md +++ /dev/null @@ -1,50 +0,0 @@ - - -This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). - -## Available Scripts - -In the project directory, you can run: - -### `yarn start` - -Runs the app in the development mode.
-Open [http://localhost:3000](http://localhost:3000) to view it in the browser. - -The page will reload if you make edits.
-You will also see any lint errors in the console. - -### `yarn test` - -Launches the test runner in the interactive watch mode.
-See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. - -### `yarn build` - -Builds the app for production to the `build` folder.
-It correctly bundles React in production mode and optimizes the build for the best performance. - -The build is minified and the filenames include the hashes.
-Your app is ready to be deployed! - -See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. - -### `yarn eject` - -**Note: this is a one-way operation. Once you `eject`, you can’t go back!** - -If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. - -Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. - -You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. - -## Learn More - -You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). - -To learn React, check out the [React documentation](https://reactjs.org/). diff --git a/mephisto/client/full/webapp/public/index.html b/mephisto/client/full/webapp/public/index.html deleted file mode 100644 index 01cbd185e..000000000 --- a/mephisto/client/full/webapp/public/index.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - mephisto - - - -
- - - diff --git a/mephisto/client/full/webapp/src/App.css b/mephisto/client/full/webapp/src/App.css deleted file mode 100644 index a1d7f5614..000000000 --- a/mephisto/client/full/webapp/src/App.css +++ /dev/null @@ -1,176 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -.container { - padding: 0px 30px 30px; - display: flex; - max-width: 1280px; - margin: 50px auto 0; - align-items: flex-start; -} - -.container > div { - flex-grow: 1; - margin-right: 20px; -} - -.container > div:last-child { - margin-right: 0px; - margin-bottom: 0; -} - -@media only screen and (max-width: 800px) { - .container { - flex-direction: column; - } - .container > div { - margin-bottom: 16px; - margin-right: 0px; - } -} - -.above-the-fold { - background-repeat: no-repeat; - background-position: bottom; - height: 458px; - z-index: -1; - /* background-image: url(https://www.rev.com/content/curve/img/home/bg-home-background.svg); */ - background-image: url(./Oval.svg); - position: absolute; - width: 100%; - background-size: cover !important; -} - -header { - padding: 30px; - max-width: 1280px; - margin: 0 auto; -} - -h1 { - margin: 0; - font-size: 40px; -} - -.step-badge { - margin-right: 10px; -} - -.widget { - animation: fadeIn 0.3s cubic-bezier(0.5, 0, 0, 1); - animation-fill-mode: forwards; - opacity: 0; - border-radius: 10px !important; - will-change: transform; -} - -.widget:nth-child(1) { - animation-delay: 0.1s; -} -.widget:nth-child(2) { - animation-delay: 0.25s; -} -.widget:nth-child(3) { - animation-delay: 0.4s; -} -.widget:nth-child(4) { - animation-delay: 0.55s; -} - -@keyframes fadeIn { - 0% { - opacity: 0; - transform: scale(0.9, 0.9) translateY(80px); - } - 60% { - transform: translateY(-2px); - } - 100% { - opacity: 1; - transform: scale(1, 1) translateY(0px); - } -} - -.widget .bullet { - margin-bottom: 5px; -} - -.params-list { - overflow-y: auto; - overflow-x: none; - max-height: 80px; - color: #757677; - font-style: italic; - border-radius: 3px; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2); - background: rgba(255, 255, 255, 0.7); - padding: 2px 5px; -} - -.params-list .param-name { -} - -h1 a, -h1 a:hover { - color: inherit; -} - -.params-list .param-value { - color: #333; -} - -.details { - font-size: 13px; - margin-top: 10px; -} - -.metrics { - display: flex; - flex-direction: row; - justify-content: center; - flex-wrap: wrap; -} - -.metric { - margin: 0px 0px 0px; - text-align: center; - padding: 10px; - font-size: 16px; - color: #333; - flex: 1; -} - -.metrics.highlight-first .metric:first-child { - font-weight: bold; -} - -.metric label { - display: block; - font-size: 12px; -} - -.run-header { - background-color: rgb(245, 248, 250); - padding: 10px; - margin-bottom: 10px; - border-color: rgb(191, 204, 214); - border-width: 1px; - border-style: solid; - border-radius: 5px; -} - -.run-header.interactive:hover { - background-color: #ebf1f5; - transform: scale(1.02, 1.02); - transition: transform 0.1s ease-out; -} - -.grid-review-container { - max-width: 1280px; - margin: 0 auto; - padding: 30px; - box-sizing: border-box; -} diff --git a/mephisto/client/full/webapp/src/App.tsx b/mephisto/client/full/webapp/src/App.tsx deleted file mode 100644 index 306045caa..000000000 --- a/mephisto/client/full/webapp/src/App.tsx +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React from "react"; -import "./App.css"; -import PrepareWidget from "./widgets/Prepare"; -import LaunchWidget from "./widgets/Launch"; -import ReviewWidget from "./widgets/Review"; -import { BrowserRouter as Router, Routes, Route, Link } from "react-router-dom"; -import GridReview from "./widgets/GridReview"; - -const App = () => { - return ( - -
-
-
-
-

- mephisto -

- - crowdsourcing without the tears - -
-
-
- - - - - -
- } - > - -
- -
-
- } - /> - -
-
- - ); -}; - -export default App; diff --git a/mephisto/client/full/webapp/src/axios.ts b/mephisto/client/full/webapp/src/axios.ts deleted file mode 100644 index 2fc52f85d..000000000 --- a/mephisto/client/full/webapp/src/axios.ts +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import { configure } from "axios-hooks"; -import Axios, { AxiosRequestConfig } from "axios"; - -const axios = Axios.create({ - baseURL: "http://localhost:5000/api/v1/", -}); - -declare module "axios" { - export interface AxiosRequestConfig { - delayed?: boolean | number; - } -} - -// type CustomAxiosRequestConfig = AxiosRequestConfig & { delayed?: boolean }; - -axios.interceptors.request.use((config) => { - if (config.delayed) { - return new Promise((resolve) => - setTimeout( - () => resolve(config), - config.delayed === true - ? 600 - : config.delayed === false - ? 0 - : config.delayed - ) - ); - } - return config; -}); - -configure({ axios }); - -export default axios; diff --git a/mephisto/client/full/webapp/src/index.tsx b/mephisto/client/full/webapp/src/index.tsx deleted file mode 100644 index 009569488..000000000 --- a/mephisto/client/full/webapp/src/index.tsx +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React from "react"; -import ReactDOM from "react-dom"; -import "./index.css"; -import App from "./App"; - -import "@blueprintjs/core/lib/css/blueprint.css"; -import "@blueprintjs/icons/lib/css/blueprint-icons.css"; - -import "./axios"; - -ReactDOM.render(, document.getElementById("root")); diff --git a/mephisto/client/full/webapp/src/lib/Async.ts b/mephisto/client/full/webapp/src/lib/Async.ts deleted file mode 100644 index 5e49a6b73..000000000 --- a/mephisto/client/full/webapp/src/lib/Async.ts +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React from "react"; -import { AxiosPromise, AxiosRequestConfig } from "axios"; -import { ResponseValues, RefetchOptions, UseAxiosResult } from "axios-hooks"; -const isEmpty = require("lodash.isempty"); - -type AxiosInfo = - | [ - ResponseValues, - ( - config?: AxiosRequestConfig, - options?: RefetchOptions - ) => AxiosPromise - ] - | [ResponseValues]; - -type BaseAsyncProps = { - axiosInfo: UseAxiosResult; - refetch: Function; -}; - -type AsyncProps = { - info: UseAxiosResult; - onLoading: React.FC>; - onError: React.FC<{ error: any } & BaseAsyncProps>; - onData: React.FC<{ data: T } & BaseAsyncProps>; - onEmptyData?: React.FC<{ data: T } & BaseAsyncProps>; - checkIfEmptyFn?: (data: T) => any; -}; - -export type AsyncComponent = React.FC< - AsyncProps ->; - -export function createAsync() { - return Async as AsyncComponent; -} - -const Async: AsyncComponent = ({ - info, - onLoading, - onError, - onData, - onEmptyData, - checkIfEmptyFn: checkIfEmptyFn, -}) => { - const [{ data, loading, error }, refetch = () => {}] = info; - - const baseProps: BaseAsyncProps = { refetch, axiosInfo: info }; - - if (loading) return onLoading({ ...baseProps }); - else if (error) return onError({ error: error.response?.data, ...baseProps }); - - const dataToCheckIfEmpty = - checkIfEmptyFn !== undefined ? checkIfEmptyFn(data) : data; - const dataIsEmpty = isEmpty(dataToCheckIfEmpty); - - if (dataIsEmpty && onEmptyData !== undefined) - return onEmptyData({ data, ...baseProps }); - else return onData({ data, ...baseProps }); -}; - -export default Async; - -export function mockRequest( - mockData: T, - error: any = undefined, - loading: boolean = false -) { - const request = { - data: mockData, - loading, - error: error && { response: { data: error } }, - } as ResponseValues; - return [request, () => {}] as [ResponseValues, any]; -} diff --git a/mephisto/client/full/webapp/src/mocks.ts b/mephisto/client/full/webapp/src/mocks.ts deleted file mode 100644 index 8725bf834..000000000 --- a/mephisto/client/full/webapp/src/mocks.ts +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import { TaskRun, RunningTasks } from "./models"; - -export const task_runs__running: RunningTasks = { - live_task_count: 1, - task_count: 1, - task_runs: [ - { - param_string: - "--test --task --run --test --task --run --test --task --run --test --task --run --test --task --run --test --task --run --test --task --run --test --task --run --test --task --run ", - params: { - "run params": "Coming soon!", - status: "Not yet implemented", - }, - sandbox: false, - start_time: "2019-12-09 22:53:30", - task_id: "1", - task_name: "test_task", - task_run_id: "1", - task_status: { - accepted: 0, - assigned: 0, - completed: 0, - created: 3, - expired: 0, - launched: 0, - mixed: 0, - rejected: 0, - }, - task_type: "mock", - }, - ], -}; diff --git a/mephisto/client/full/webapp/src/models.ts b/mephisto/client/full/webapp/src/models.ts deleted file mode 100644 index 2bb2f7bf7..000000000 --- a/mephisto/client/full/webapp/src/models.ts +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ -export interface Requester { - provider_type: string; - registered: boolean; - requester_id: string; - requester_name: string; -} - -export interface Requesters { - requesters: Requester[]; -} - -export interface LaunchOptions { - architect_types: string[]; - blueprint_types: { name: string; rank: number }[]; - provider_types: string[]; - success: boolean; -} - -export interface ParamDetails { - choices: string[] | null; - default: string; - dest: string; - help: string; - option_string: string; - type: string; -} - -export type Provider = string; - -export interface TaskRun { - param_string: string; // "--test --task --run" - params: object; // { "run params": "Coming soon!"; status: "Not yet implemented"; } - sandbox: boolean; - start_time: string; // "2019-12-09 22:53:30" - task_id: string; // "1" - task_name: string; // "test_task" - task_run_id: string; // "1" - task_status: { - accepted: number; - assigned: number; - completed: number; - created: number; - expired: number; - launched: number; - mixed: number; - rejected: number; - }; - task_type: string; // "mock" (it's the blueprint name) -} - -export interface RunningTasks { - live_task_count: number; - task_count: number; - task_runs: TaskRun[]; -} - -export interface ReviewableTasks { - task_runs: TaskRun[]; - total_reviewable: number; -} diff --git a/mephisto/client/full/webapp/src/service.ts b/mephisto/client/full/webapp/src/service.ts deleted file mode 100644 index 303c3abfa..000000000 --- a/mephisto/client/full/webapp/src/service.ts +++ /dev/null @@ -1,100 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import axios from "./axios"; -import { AxiosPromise } from "axios"; - -// TEMP HACK NULL_FIELDS: some static task fields have a default value of null -// while null is also an unacceptable value, we detect explict exceptions for now -// and handle the process of skipping these fields -const SKIP_FIELD = null; - -export function launchTask(data: any): AxiosPromise { - const transformedPayload = mapLaunchDataToExpectedPayload(data); - return axios.post("task_runs/launch", transformedPayload); -} - -export function createRequester( - provider: string, - payload: any -): AxiosPromise { - return axios.post(`requester/${provider}/register`, payload); -} - -function mapLaunchDataToExpectedPayload(data: any) { - // We expect to receive a payload of the following format that - // will then transform to suit the API's expectations: - // - // { - // "blueprint": "name", - // "architect": "name", - // "requester": "name", - // "bp||<--arg-flag>": "value" - // } - const transformed = Object.entries(data) - .map(([key, value]) => { - if (key === "blueprint") { - return [ - "blueprint_type", - { - option_string: "--blueprint-type", - value: value, - }, - ]; - } else if (key === "architect") { - return [ - "architect_type", - { - option_string: "--architect-type", - value: value, - }, - ]; - } else if (key === "requester") { - return [ - "requester_name", - { - option_string: "--requester-name", - value: value, - }, - ]; - } else { - const [namespace, arg_name, opt_string] = key.split("|"); - - /* TEMP HACK NULL_FIELDS - handle in a more sophisticated fashion once optional or required flags are added */ - if (namespace === "bp" && value === null) { - return [SKIP_FIELD, SKIP_FIELD]; - } - - return [ - arg_name, - { - option_string: opt_string, - value: value === null ? null : (value as any).toString(), - }, - ]; - } - }) - .filter(([arg, data]) => arg !== SKIP_FIELD); - /* ^ TEMP HACK NULL_FIELDS filter out empty fields */ - - console.table(Object.fromEntries(transformed)); - return Object.fromEntries(transformed); -} - -export const reviewActions = { - accept: function (id: string) { - return axios.post(`unit/${id}/accept`); - }, - rejectAndPay: function (id: number) { - return axios.post(`unit/${id}/reject`); - }, - softBlock: function (id: number) { - return axios.post(`unit/${id}/softBlock`); - }, - hardBlock: function (id: number) { - return axios.post(`unit/${id}/hardBlock`); - }, -}; diff --git a/mephisto/client/full/webapp/src/setupTests.ts b/mephisto/client/full/webapp/src/setupTests.ts deleted file mode 100644 index adaf756dc..000000000 --- a/mephisto/client/full/webapp/src/setupTests.ts +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ -// jest-dom adds custom jest matchers for asserting on DOM nodes. -// allows you to do things like: -// expect(element).toHaveTextContent(/react/i) -// learn more: https://github.com/testing-library/jest-dom -import "@testing-library/jest-dom/extend-expect"; diff --git a/mephisto/client/full/webapp/src/widgets/Base.tsx b/mephisto/client/full/webapp/src/widgets/Base.tsx deleted file mode 100644 index 986949d99..000000000 --- a/mephisto/client/full/webapp/src/widgets/Base.tsx +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React from "react"; -import { Card, Elevation } from "@blueprintjs/core"; - -interface BaseProps { - heading: React.ReactElement; - badge: string | undefined; -} - -export default (function BaseWidget({ children, heading, badge }) { - return ( - -

- {badge !== undefined && ( - - {badge} - - )} - {heading} -

- {children} -
- ); -} as React.FC); diff --git a/mephisto/client/full/webapp/src/widgets/GridReview.js b/mephisto/client/full/webapp/src/widgets/GridReview.js deleted file mode 100644 index a087d5f2b..000000000 --- a/mephisto/client/full/webapp/src/widgets/GridReview.js +++ /dev/null @@ -1,187 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ -import React from "react"; -import { useTable } from "react-table"; -import { createAsync } from "../lib/Async"; -import useAxios from "axios-hooks"; -import { ButtonGroup, Tooltip, Icon } from "@blueprintjs/core"; -import { Link } from "react-router-dom"; -import { reviewActions } from "../service"; -import { ObjectInspector } from "react-inspector"; -import { useParams } from "react-router-dom"; - -const GridReviewAsync = createAsync(); - -function GridReviewWithData() { - const { id } = useParams(); - const gridReviewAsync = useAxios({ - url: "data/submitted_data?task_run_id=" + id, - }); - - return ( - } - onError={() => null} - onLoading={() => null} - onEmptyData={() =>
There are no units to review...
} - checkIfEmptyFn={(data) => data.units} - /> - ); -} - -function GridReview({ data, id }) { - const sampleTestData = [ - { - assignment_id: "179", - data: { - inputs: { - character_description: "I'm a character loaded from Mephisto!", - character_name: "Loaded Character 1", - html: "demo_task.html", - }, - outputs: { rating: "good" }, - }, - status: "expired", - task_run_id: "136", - unit_id: "231", - worker_id: "10", - }, - ]; - - const { - getTableProps, - getTableBodyProps, - headerGroups, - rows, - prepareRow, - } = useTable({ - // data: sampleTestData, - data: data.units, - columns: [ - { Header: "Assignment ID", accessor: "assignment_id" }, - { Header: "Unit ID", accessor: "unit_id" }, - { Header: "Worker ID", accessor: "worker_id" }, - { - Header: "Input", - accessor: "data.inputs", - Cell: ({ cell: { value } }) => { - return ( -
- -
- ); - }, - }, - { - Header: "Output", - accessor: "data.outputs", - Cell: ({ cell: { value } }) => { - return ( -
- -
- ); - }, - }, - { - Header: "Status", - accessor: "status", - Cell: ({ cell: { value } }) => ( - {value} - ), - }, - { - Header: "Actions", - Cell: ({ cell: { row } }) => { - const unitId = row.values.unit_id; - return ( -
- - - - - - - - - - - - - - - - -
- ); - }, - }, - ], - }); - return ( -
-
- « Return -
-

Task Run #{id}

-
- - - {headerGroups.map((headerGroup) => ( - - {headerGroup.headers.map((column) => ( - - ))} - - ))} - - - {rows.map((row, i) => { - prepareRow(row); - return ( - - {row.cells.map((cell) => { - return ( - - ); - })} - - ); - })} - -
- {column.render("Header")} -
{cell.render("Cell")}
-
-
- ); -} - -export default GridReviewWithData; diff --git a/mephisto/client/full/webapp/src/widgets/Launch.tsx b/mephisto/client/full/webapp/src/widgets/Launch.tsx deleted file mode 100644 index a7b4ccb06..000000000 --- a/mephisto/client/full/webapp/src/widgets/Launch.tsx +++ /dev/null @@ -1,301 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ -import React from "react"; -import BaseWidget from "./Base"; -import useAxios from "axios-hooks"; -import { TaskRun, RunningTasks } from "../models"; -import { - Colors, - Icon, - Drawer, - Position, - Classes, - Button, - Intent, -} from "@blueprintjs/core"; -import { createAsync } from "../lib/Async"; -import TaskRunSummary from "./TaskRunSummary"; -import BlueprintSelect from "./components/BlueprintSelect"; -import ArchitectSelect from "./components/ArchitectSelect"; -import RequesterSelect from "./components/RequesterSelect"; -import { toaster } from "../lib/toaster"; -import { launchTask } from "../service"; -import OptionsForm from "./components/OptionsForm"; - -const Async = createAsync(); -const LaunchInfoAsync = createAsync(); -const RequesterInfoAsync = createAsync(); -const DefaultTaskInfoAsync = createAsync(); - -export default (function LaunchWidget() { - // const runningTasksAsync = mockRequest(task_runs__running); - const runningTasksAsync = useAxios({ url: "task_runs/running" }); - - return ( - Launch it}> - ( -
-
- -
-
You have no tasks running.
-
- )} - onData={({ data }) => ( -
- {data.task_runs.map((run: TaskRun) => ( - - ))} -
- )} - checkIfEmptyFn={(data) => data.task_runs} - onEmptyData={() => ( -
-
- -
-
You have no tasks running.
-
- )} - onError={({ refetch }) => ( - - Something went - wrong.{" "} - refetch()}> - Try again - - - )} - /> -
-
- -
-
-
- ); -} as React.FC); - -function LaunchForm() { - const [openForm, setOpenForm] = React.useState(false); - const launchInfo = useAxios({ url: "launch/options" }); - const requesterInfo = useAxios({ - url: "requesters", - }); - const defaultTaskInfo = useAxios({ - url: "task_runs/options", - }); - - const [params, addToParams] = React.useReducer((state: any, params: any) => { - let nextState; - if (params === "CLEAR_ALL") { - nextState = {}; - } else if (params === "CLEAR_bp") { - nextState = Object.keys(state) - .filter((key) => !key.startsWith("bp|")) - .reduce((obj: any, key: string) => { - obj[key] = state[key]; - return obj; - }, {}); - } else if (params === "CLEAR_arch") { - nextState = Object.keys(state) - .filter((key) => !key.startsWith("arch|")) - .reduce((obj: any, key: string) => { - obj[key] = state[key]; - return obj; - }, {}); - } else if (params === "CLEAR_task") { - nextState = Object.keys(state) - .filter((key) => !key.startsWith("task|")) - .reduce((obj: any, key: string) => { - obj[key] = state[key]; - return obj; - }, {}); - } else { - nextState = { ...state, ...params }; - } - return nextState; - }, {}); - - return ( -
- - setOpenForm(false)} - title="Launch a task" - autoFocus={true} - canEscapeKeyClose={false} - canOutsideClickClose={false} - enforceFocus={true} - hasBackdrop={true} - isOpen={openForm} - position={Position.RIGHT} - size={"50%"} - usePortal={true} - > -
-
-

Step 1. Choose a Task Blueprint

-

- A blueprint defines the task that will be run & its associated - configuration parameters. -

- Loading...} - onData={({ data }) => ( -
- addToParams(data)} - /> -
- )} - onError={() => Error} - /> - -

Step 2. Choose an Architect

-

- An architect manages the deployment target of your task. -

- Loading...} - onData={({ data }) => ( -
- { - addToParams(data); - }} - /> -
- )} - onError={() => Error} - /> -

Step 3. Choose a Requester

-

- A requester is the service account that will run your task. -

- Loading...} - onData={({ data }) => ( -
- r.registered)} - onUpdate={(data: any) => { - addToParams(data); - }} - /> -
- )} - onError={() => Error} - /> -

Step 4. Final Task Options

- Loading...} - onData={({ data }) => ( -
- addToParams(data)} - /> -
- )} - onError={() => Error} - /> - - -
-
-
-
- ); -} diff --git a/mephisto/client/full/webapp/src/widgets/Prepare.tsx b/mephisto/client/full/webapp/src/widgets/Prepare.tsx deleted file mode 100644 index 897fbf339..000000000 --- a/mephisto/client/full/webapp/src/widgets/Prepare.tsx +++ /dev/null @@ -1,149 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ -import React from "react"; -import BaseWidget from "./Base"; -import { Colors, Icon, Button } from "@blueprintjs/core"; -import { pluralize } from "../utils"; -import cx from "classnames"; -import useAxios from "axios-hooks"; -import { Drawer, Classes, Position, Card } from "@blueprintjs/core"; -import { Requesters, Requester } from "../models"; -import { createAsync } from "../lib/Async"; -import RequesterForm from "../widgets/components/RequesterForm"; - -const Async = createAsync(); - -export default (function PrepareWidget() { - const [numProviders, setNumProviders] = React.useState(0); - const [numInstalledTasks, setNumInstalledTasks] = React.useState(1); - const [requesterDrawerOpen, setRequesterDrawerOpen] = React.useState(false); - - const requesterAsync = useAxios({ - url: "requesters", - }); - - return ( - Prepare it}> - <> -
-
- ( - - Something - went wrong.{" "} - refetch()}> - Try again - - - )} - onLoading={() => ( -
 
- )} - checkIfEmptyFn={(data) => data.requesters} - onEmptyData={() => ( - - - {" "} - You have no accounts set up.{" "} - setRequesterDrawerOpen(true)}> - Configure - - - )} - onData={({ data }) => ( - - You have{" "} - setRequesterDrawerOpen(true)}> - {data.requesters.length} requester accounts - {" "} - set up - - )} - /> -
- setRequesterDrawerOpen(false)} - title="Requester accounts" - autoFocus={true} - canEscapeKeyClose={true} - // canOutsideClickClose={true} - enforceFocus={true} - hasBackdrop={true} - isOpen={requesterDrawerOpen} - position={Position.BOTTOM} - size={"72%"} - usePortal={true} - > -
-
- {requesterAsync[0].data && ( -
- {requesterAsync[0].data.requesters.map((r: Requester) => ( -
- - - - {r.provider_type} - -

- {r.requester_name} -

{" "} - {!r.registered && ( - - — This account still needs to be registered. - - )} -
-
- ))} -
- { - setRequesterDrawerOpen(false); - window.location.reload(); - }} - /> -
-
- )} -
-
-
-
-
-
- You - have{" "} - - {numInstalledTasks} task{" "} - {pluralize(numInstalledTasks, "template")} - - {" "} - available to use -
-
- -
- ); -} as React.FC); diff --git a/mephisto/client/full/webapp/src/widgets/Review.tsx b/mephisto/client/full/webapp/src/widgets/Review.tsx deleted file mode 100644 index bce3776aa..000000000 --- a/mephisto/client/full/webapp/src/widgets/Review.tsx +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ -import React from "react"; -import BaseWidget from "./Base"; -import useAxios from "axios-hooks"; -import { createAsync, mockRequest } from "../lib/Async"; -import { Icon, Colors, Button, Intent } from "@blueprintjs/core"; -import { ReviewableTasks } from "../models"; -import TaskRunSummary from "./TaskRunSummary"; -import { Link } from "react-router-dom"; - -const Async = createAsync(); - -export default (function ReviewWidget() { - const reviewAsync = useAxios({ - url: "task_runs/reviewable", - }); - - return ( - Review it}> - ( -
-
-
- -
-
You have no work to review.
-
-
- )} - onError={({ refetch }) => ( - - Something went - wrong.{" "} - refetch()}> - Try again - - - )} - onData={({ data }) => ( - - {data.task_runs.map((run) => ( - - - - ))} - - )} - checkIfEmptyFn={(data) => data.task_runs} - onEmptyData={() => ( -
-
-
- -
-
You have no work to review.
-
-
- )} - /> -
- ); -} as React.FC); diff --git a/mephisto/client/full/webapp/src/widgets/TaskRunSummary.tsx b/mephisto/client/full/webapp/src/widgets/TaskRunSummary.tsx deleted file mode 100644 index 493f5003f..000000000 --- a/mephisto/client/full/webapp/src/widgets/TaskRunSummary.tsx +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React from "react"; -import { TaskRun } from "../models"; -import moment from "moment"; -import cx from "classnames"; - -export default function TaskRunSummary({ - run, - interactive, -}: { - run: TaskRun; - interactive?: boolean; -}) { - const taskEntries = Object.entries(run.params).map(([key, value]) => ( - - {key}= - {"" + Object.values(value)[0]} - - )); - - return ( -
-
- {run.task_name} -
{" "} - — {moment.utc(run.start_time).fromNow()} -
- {taskEntries} -
-
-
-
- {run.task_status.created + run.task_status.launched} - -
-
- {run.task_status.completed + - run.task_status.accepted + - run.task_status.mixed + - run.task_status.rejected} - -
-
- {run.task_status.launched + run.task_status.assigned} - -
-
-
-
- ); -} diff --git a/mephisto/client/full/webapp/src/widgets/components/ArchitectSelect.tsx b/mephisto/client/full/webapp/src/widgets/components/ArchitectSelect.tsx deleted file mode 100644 index ab56aca3f..000000000 --- a/mephisto/client/full/webapp/src/widgets/components/ArchitectSelect.tsx +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ -import React from "react"; -import { - Card, - Colors, - Icon, - FormGroup, - InputGroup, - Checkbox, -} from "@blueprintjs/core"; -import useAxios from "axios-hooks"; -import { createAsync } from "../../lib/Async"; -import OptionsForm from "./OptionsForm"; - -type ArchitectParams = any; -const ArchitectParamsAsync = createAsync(); - -export default function ArchitectSelect({ - data, - onUpdate, -}: { - data: any; - onUpdate: Function; -}) { - const [selected, setSelected] = React.useState(null); - const paramsInfo = useAxios({ - url: `architect/${selected || "none"}/options`, - }); - - return ( -
- {data.map((arch: any) => ( - { - setSelected(arch); - onUpdate({ architect: arch }); - }} - > - - {arch} - - ))} - {selected && ( - Loading...} - onError={() => Error} - onData={({ data }) => ( - - )} - /> - )} -
- ); -} diff --git a/mephisto/client/full/webapp/src/widgets/components/BlueprintSelect.tsx b/mephisto/client/full/webapp/src/widgets/components/BlueprintSelect.tsx deleted file mode 100644 index 2f7ea6de2..000000000 --- a/mephisto/client/full/webapp/src/widgets/components/BlueprintSelect.tsx +++ /dev/null @@ -1,121 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ -import React from "react"; -import { Select, ItemRenderer } from "@blueprintjs/select"; -import { Button, MenuItem } from "@blueprintjs/core"; -import { createAsync } from "../../lib/Async"; -import useAxios from "axios-hooks"; -import FormField from "./FormField"; -import OptionsForm from "./OptionsForm"; - -type IBlueprint = { - name: string; - rank: number; -}; - -type BlueprintParams = any; - -const BlueprintSelect = Select.ofType(); -const BlueprintParamsAsync = createAsync(); - -const renderBlueprintItem: ItemRenderer = ( - blueprint, - { handleClick, modifiers, query } -) => { - if (!modifiers.matchesPredicate) { - return null; - } - const text = `${blueprint.rank}. ${blueprint.name}`; - return ( - - ); -}; - -export default function BlueprintSelectComponent({ - data, - onUpdate, -}: { - data: IBlueprint[]; - onUpdate: Function; -}) { - const [selected, setSelected] = React.useState(null); - const paramsInfo = useAxios({ - url: `blueprint/${selected?.name || "none"}/options`, - }); - - return ( -
- { - onUpdate({ blueprint: blueprint.name }); - setSelected(blueprint); - }} - activeItem={selected} - > - - - {selected && ( - Loading...} - onError={() => Error} - onData={({ data }) => ( - - )} - /> - )} -
- ); -} - -function escapeRegExpChars(text: string) { - return text.replace(/([.*+?^=!:${}()|\[\]\/\\])/g, "\\$1"); -} - -function highlightText(text: string, query: string) { - let lastIndex = 0; - const words = query - .split(/\s+/) - .filter((word) => word.length > 0) - .map(escapeRegExpChars); - if (words.length === 0) { - return [text]; - } - const regexp = new RegExp(words.join("|"), "gi"); - const tokens: React.ReactNode[] = []; - while (true) { - const match = regexp.exec(text); - if (!match) { - break; - } - const length = match[0].length; - const before = text.slice(lastIndex, regexp.lastIndex - length); - if (before.length > 0) { - tokens.push(before); - } - lastIndex = regexp.lastIndex; - tokens.push({match[0]}); - } - const rest = text.slice(lastIndex); - if (rest.length > 0) { - tokens.push(rest); - } - return tokens; -} diff --git a/mephisto/client/full/webapp/src/widgets/components/FormField.tsx b/mephisto/client/full/webapp/src/widgets/components/FormField.tsx deleted file mode 100644 index 66a9b70ef..000000000 --- a/mephisto/client/full/webapp/src/widgets/components/FormField.tsx +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React from "react"; -import { FormGroup, InputGroup, Checkbox } from "@blueprintjs/core"; - -function FormField({ - prefix, - onUpdate, - field, -}: { - prefix: string; - onUpdate: any; - field: any; -}) { - const id = prefix + "|" + field.dest + "|" + field.option_string; - const dispatch = (value: any) => { - onUpdate({ - [id]: value, - }); - }; - - React.useEffect(() => { - if (field.type === "str2bool") { - dispatch(!!field.default); // for bools, type cast the default value - } else if (!!field.default) { - dispatch(field.default); // for non-bools, just use the uncasted value - } - }, [field.default]); - - return field.type === "str2bool" ? ( -
- { - dispatch(e.target.checked); - }} - /> -

{field.help}

-
- ) : ( - - dispatch(e.target.value)} - > - - ); -} - -export default FormField; diff --git a/mephisto/client/full/webapp/src/widgets/components/OptionsForm.tsx b/mephisto/client/full/webapp/src/widgets/components/OptionsForm.tsx deleted file mode 100644 index 48a4c3da6..000000000 --- a/mephisto/client/full/webapp/src/widgets/components/OptionsForm.tsx +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React from "react"; -import FormField from "./FormField"; -import { Checkbox, Card } from "@blueprintjs/core"; - -function OptionsForm({ - prefix, - onUpdate, - options, -}: { - prefix: string; - onUpdate: any; - options: any; -}) { - React.useEffect(() => { - onUpdate("CLEAR_" + prefix); - Object.values(options) - .flatMap((opt: any) => Object.values(opt.args)) - .forEach((field: any) => { - const id = prefix + "|" + field.dest + "|" + field.option_string; - onUpdate({ - [id]: field.default, - }); - }); - }, [options]); - - return ( -
-
- - {Object.values(options) - .flatMap((opt: any) => Object.values(opt.args)) - .map((field: any) => { - return ( - - ); - })} - -
-
- ); -} - -export default OptionsForm; diff --git a/mephisto/client/full/webapp/src/widgets/components/ProviderSelect.tsx b/mephisto/client/full/webapp/src/widgets/components/ProviderSelect.tsx deleted file mode 100644 index 8a570b23d..000000000 --- a/mephisto/client/full/webapp/src/widgets/components/ProviderSelect.tsx +++ /dev/null @@ -1,95 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React from "react"; -import { Select, ItemRenderer } from "@blueprintjs/select"; -import { Button, MenuItem } from "@blueprintjs/core"; -import { Provider } from "../../models"; - -type IProvider = Provider; - -const ProviderSelect = Select.ofType(); - -const renderProviderItem: ItemRenderer = ( - requesterType, - { handleClick, modifiers, query } -) => { - if (!modifiers.matchesPredicate) { - return null; - } - const text = `${requesterType}`; - return ( - - ); -}; - -export default function ProviderSelectComponent({ - data, - onUpdate, -}: { - data: IProvider[]; - onUpdate: Function; -}) { - const [selected, setSelected] = React.useState(null); - return ( -
- { - onUpdate(requesterType); - setSelected(requesterType); - }} - activeItem={selected} - > - - -
- ); -} - -function escapeRegExpChars(text: string) { - return text.replace(/([.*+?^=!:${}()|\[\]\/\\])/g, "\\$1"); -} - -function highlightText(text: string, query: string) { - let lastIndex = 0; - const words = query - .split(/\s+/) - .filter((word) => word.length > 0) - .map(escapeRegExpChars); - if (words.length === 0) { - return [text]; - } - const regexp = new RegExp(words.join("|"), "gi"); - const tokens: React.ReactNode[] = []; - while (true) { - const match = regexp.exec(text); - if (!match) { - break; - } - const length = match[0].length; - const before = text.slice(lastIndex, regexp.lastIndex - length); - if (before.length > 0) { - tokens.push(before); - } - lastIndex = regexp.lastIndex; - tokens.push({match[0]}); - } - const rest = text.slice(lastIndex); - if (rest.length > 0) { - tokens.push(rest); - } - return tokens; -} diff --git a/mephisto/client/full/webapp/src/widgets/components/RequesterForm.tsx b/mephisto/client/full/webapp/src/widgets/components/RequesterForm.tsx deleted file mode 100644 index ceb3775ca..000000000 --- a/mephisto/client/full/webapp/src/widgets/components/RequesterForm.tsx +++ /dev/null @@ -1,145 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ -import React from "react"; -import { Formik } from "formik"; -import { InputGroup, FormGroup, Button } from "@blueprintjs/core"; -import useAxios from "axios-hooks"; -import { createAsync } from "../../lib/Async"; -import ProviderSelect from "./ProviderSelect"; -import { createRequester } from "../../service"; -import { ParamDetails, LaunchOptions } from "../../models"; - -type Provider = any; -type ProviderParams = any; - -const ProviderParamsAsync = createAsync(); -const LaunchOptionsAsync = createAsync(); - -function RequesterForm({ - data, - onFinish, -}: { - data: LaunchOptions; - onFinish: Function; -}) { - const requesterTypes = data.provider_types; - - const [selectedProvider, setSelectedProvider] = React.useState( - null - ); - - const requesterTypesAsync = useAxios({ - url: `/requester/${selectedProvider}/options`, - }); - - return ( -
-

Add a New Requester:

- - { - console.log({ requesterType }); - setSelectedProvider(requesterType); - }} - /> - {selectedProvider && ( - Loading...} - onError={() => Error} - onData={({ data: [details] }) => ( -
-
-

Details

- -

{details.desc}

-
- ) => { - const results = Object.fromEntries( - Object.entries(details.args).map( - ([param, paramDetails]) => { - return [ - param, - { - option_string: paramDetails.option_string, - value: values[param], - }, - ]; - } - ) - ); - createRequester(selectedProvider, results).then(() => { - onFinish(); - }); - }} - > - {({ - values, - errors, - touched, - handleChange, - handleBlur, - handleSubmit, - isSubmitting, - }) => ( -
- {Object.entries(details.args).map( - ([param, details]: [any, any]) => { - return ( - - - - ); - } - )} - -
- )} -
-
- )} - /> - )} -
- ); -} - -function RequesterFormWithData({ onFinish }: { onFinish: Function }) { - const allRequestersAsync = useAxios({ - url: `/launch/options`, - }); - - return ( - Loading...} - onError={() => Error} - onData={({ data }) => } - /> - ); -} - -export default RequesterFormWithData; diff --git a/mephisto/client/full/webapp/src/widgets/components/RequesterSelect.tsx b/mephisto/client/full/webapp/src/widgets/components/RequesterSelect.tsx deleted file mode 100644 index 0e19b3913..000000000 --- a/mephisto/client/full/webapp/src/widgets/components/RequesterSelect.tsx +++ /dev/null @@ -1,95 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React from "react"; -import { Select, ItemRenderer } from "@blueprintjs/select"; -import { Button, MenuItem } from "@blueprintjs/core"; -import { Requester } from "../../models"; - -type IRequester = Requester; - -const RequesterSelect = Select.ofType(); - -const renderRequesterItem: ItemRenderer = ( - requester, - { handleClick, modifiers, query } -) => { - if (!modifiers.matchesPredicate) { - return null; - } - const text = `${requester.requester_id}. ${requester.requester_name}`; - return ( - - ); -}; - -export default function RequesterSelectComponent({ - data, - onUpdate, -}: { - data: IRequester[]; - onUpdate: Function; -}) { - const [selected, setSelected] = React.useState(null); - return ( -
- { - onUpdate({ requester: requester.requester_name }); - setSelected(requester); - }} - activeItem={selected} - > - - -
- ); -} - -function escapeRegExpChars(text: string) { - return text.replace(/([.*+?^=!:${}()|\[\]\/\\])/g, "\\$1"); -} - -function highlightText(text: string, query: string) { - let lastIndex = 0; - const words = query - .split(/\s+/) - .filter((word) => word.length > 0) - .map(escapeRegExpChars); - if (words.length === 0) { - return [text]; - } - const regexp = new RegExp(words.join("|"), "gi"); - const tokens: React.ReactNode[] = []; - while (true) { - const match = regexp.exec(text); - if (!match) { - break; - } - const length = match[0].length; - const before = text.slice(lastIndex, regexp.lastIndex - length); - if (before.length > 0) { - tokens.push(before); - } - lastIndex = regexp.lastIndex; - tokens.push({match[0]}); - } - const rest = text.slice(lastIndex); - if (rest.length > 0) { - tokens.push(rest); - } - return tokens; -} diff --git a/mephisto/client/review/default-ui/index.html b/mephisto/client/review/default-ui/index.html deleted file mode 100644 index 428325556..000000000 --- a/mephisto/client/review/default-ui/index.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - Mephisto Review - - - - - -
- - diff --git a/mephisto/client/review/default-ui/static/css/main.41f44bb3.css b/mephisto/client/review/default-ui/static/css/main.41f44bb3.css deleted file mode 100644 index 0d83fec48..000000000 --- a/mephisto/client/review/default-ui/static/css/main.41f44bb3.css +++ /dev/null @@ -1,10744 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -@charset "UTF-8"; -.default-item-renderer { - margin: auto 0; -} -.default-item-renderer-pre { - color: #555; - max-height: 75vh; - max-width: 75vw; - overflow: auto; - text-align: left; - white-space: pre-wrap; -} -.default-item-renderer-pre.small { - height: 16vh; -} -.default-collection-renderer-container { - grid-row-gap: 12px; - grid-column-gap: 12px; - display: grid; - grid-template-columns: 50% 50%; - grid-template-rows: auto; - justify-content: center; - max-width: 100vw; - min-width: 75vw; - padding: 12px 24px 0; -} -@media only screen and (min-width: 1400px) { - .default-collection-renderer-container { - grid-template-columns: 33.33% 33.33% 33.33%; - } -} -.word-cloud { - justify-content: center; - text-align: center; -} -.word-cloud p { - text-align: center; - vertical-align: middle; - width: 100%; -} -.word-cloud-item-renderer { - margin: auto 0; -} -.word-cloud-item-renderer-card.small { - height: 27vh; - overflow: auto; - width: 100%; -} -.word-cloud-item-renderer-card { - height: 100%; - max-height: 75vh; - max-width: 75vw; - overflow: auto; -} -.list-view-renderer-container { - justify-content: center; - margin: 12px 0 0; - width: 75vw; -} -.list-view-renderer-item { - margin: auto 0; - padding: 0 4px; - text-align: left; - width: 100%; -} -.list-view-renderer-item.divider { - margin-top: 18px; -} -.list-view-renderer-item > pre { - color: #555; - height: 16vh; - max-height: 75vh; - max-width: 75vw; - overflow: auto; - text-align: left; - white-space: pre-wrap; -} -.pagination { - padding: 12px 0; -} - -/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ -html { - -webkit-text-size-adjust: 100%; - line-height: 1.15; -} -main { - display: block; -} -h1 { - font-size: 2em; - margin: 0.67em 0; -} -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} -pre { - font-family: monospace, monospace; - font-size: 1em; -} -a { - background-color: transparent; -} -abbr[title] { - border-bottom: none; - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; -} -b, -strong { - font-weight: bolder; -} -code, -kbd, -samp { - font-family: monospace, monospace; - font-size: 1em; -} -small { - font-size: 80%; -} -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} -sub { - bottom: -0.25em; -} -sup { - top: -0.5em; -} -img { - border-style: none; -} -button, -input, -optgroup, -select, -textarea { - font-family: inherit; - font-size: 100%; - line-height: 1.15; - margin: 0; -} -button, -input { - overflow: visible; -} -button, -select { - text-transform: none; -} -[type="button"], -[type="reset"], -[type="submit"], -button { - -webkit-appearance: button; -} -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner, -button::-moz-focus-inner { - border-style: none; - padding: 0; -} -[type="button"]:-moz-focusring, -[type="reset"]:-moz-focusring, -[type="submit"]:-moz-focusring, -button:-moz-focusring { - outline: 1px dotted ButtonText; -} -fieldset { - padding: 0.35em 0.75em 0.625em; -} -legend { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; -} -progress { - vertical-align: baseline; -} -textarea { - overflow: auto; -} -[type="checkbox"], -[type="radio"] { - box-sizing: border-box; - padding: 0; -} -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} -[type="search"] { - -webkit-appearance: textfield; - outline-offset: -2px; -} -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} -::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit; -} -details { - display: block; -} -summary { - display: list-item; -} -[hidden], -template { - display: none; -} -@font-face { - font-family: Icons16; - font-style: normal; - font-weight: 400; - src: url(/static/media/icons-16.2368f88a078780d80145.eot?#iefix) - format("embedded-opentype"), - url(/static/media/icons-16.1645f50fb7f7c109f64e.woff) format("woff"), - url(/static/media/icons-16.13933033991f62d6bb64.ttf) format("truetype"); -} -@font-face { - font-family: Icons20; - font-style: normal; - font-weight: 400; - src: url(/static/media/icons-20.cde033c5d3f24283f757.eot?#iefix) - format("embedded-opentype"), - url(/static/media/icons-20.1ef633d3a28d0986f63e.woff) format("woff"), - url(/static/media/icons-20.57b3e708b232fdcb64f9.ttf) format("truetype"); -} -html { - box-sizing: border-box; -} -*, -:after, -:before { - box-sizing: inherit; -} -body { - color: #182026; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, - Ubuntu, Cantarell, Open Sans, Helvetica Neue, Icons16, sans-serif; - font-size: 14px; - font-weight: 400; - letter-spacing: 0; - line-height: 1.28581; - text-transform: none; -} -p { - margin-bottom: 10px; - margin-top: 0; -} -small { - font-size: 12px; -} -strong { - font-weight: 600; -} -::selection { - background: rgba(125, 188, 255, 0.6); -} -.bp3-heading { - color: #182026; - font-weight: 600; - margin: 0 0 10px; - padding: 0; -} -.bp3-dark .bp3-heading { - color: #f5f8fa; -} -.bp3-running-text h1, -h1.bp3-heading { - font-size: 36px; - line-height: 40px; -} -.bp3-running-text h2, -h2.bp3-heading { - font-size: 28px; - line-height: 32px; -} -.bp3-running-text h3, -h3.bp3-heading { - font-size: 22px; - line-height: 25px; -} -.bp3-running-text h4, -h4.bp3-heading { - font-size: 18px; - line-height: 21px; -} -.bp3-running-text h5, -h5.bp3-heading { - font-size: 16px; - line-height: 19px; -} -.bp3-running-text h6, -h6.bp3-heading { - font-size: 14px; - line-height: 16px; -} -.bp3-ui-text { - font-size: 14px; - font-weight: 400; - letter-spacing: 0; - line-height: 1.28581; - text-transform: none; -} -.bp3-monospace-text { - font-family: monospace; - text-transform: none; -} -.bp3-text-muted { - color: #5c7080; -} -.bp3-dark .bp3-text-muted { - color: #a7b6c2; -} -.bp3-text-disabled { - color: rgba(92, 112, 128, 0.6); -} -.bp3-dark .bp3-text-disabled { - color: rgba(167, 182, 194, 0.6); -} -.bp3-text-overflow-ellipsis { - word-wrap: normal; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.bp3-running-text { - font-size: 14px; - line-height: 1.5; -} -.bp3-running-text h1 { - color: #182026; - font-weight: 600; - margin-bottom: 20px; - margin-top: 40px; -} -.bp3-dark .bp3-running-text h1 { - color: #f5f8fa; -} -.bp3-running-text h2 { - color: #182026; - font-weight: 600; - margin-bottom: 20px; - margin-top: 40px; -} -.bp3-dark .bp3-running-text h2 { - color: #f5f8fa; -} -.bp3-running-text h3 { - color: #182026; - font-weight: 600; - margin-bottom: 20px; - margin-top: 40px; -} -.bp3-dark .bp3-running-text h3 { - color: #f5f8fa; -} -.bp3-running-text h4 { - color: #182026; - font-weight: 600; - margin-bottom: 20px; - margin-top: 40px; -} -.bp3-dark .bp3-running-text h4 { - color: #f5f8fa; -} -.bp3-running-text h5 { - color: #182026; - font-weight: 600; - margin-bottom: 20px; - margin-top: 40px; -} -.bp3-dark .bp3-running-text h5 { - color: #f5f8fa; -} -.bp3-running-text h6 { - color: #182026; - font-weight: 600; - margin-bottom: 20px; - margin-top: 40px; -} -.bp3-dark .bp3-running-text h6 { - color: #f5f8fa; -} -.bp3-running-text hr { - border: none; - border-bottom: 1px solid rgba(16, 22, 26, 0.15); - margin: 20px 0; -} -.bp3-dark .bp3-running-text hr { - border-color: hsla(0, 0%, 100%, 0.15); -} -.bp3-running-text p { - margin: 0 0 10px; - padding: 0; -} -.bp3-text-large { - font-size: 16px; -} -.bp3-text-small { - font-size: 12px; -} -a { - text-decoration: none; -} -a, -a:hover { - color: #106ba3; -} -a:hover { - cursor: pointer; - text-decoration: underline; -} -.bp3-dark a code, -a .bp3-icon, -a .bp3-icon-large, -a .bp3-icon-standard, -a code { - color: inherit; -} -.bp3-dark a, -.bp3-dark a:hover { - color: #48aff0; -} -.bp3-dark a .bp3-icon, -.bp3-dark a .bp3-icon-large, -.bp3-dark a .bp3-icon-standard, -.bp3-dark a:hover .bp3-icon, -.bp3-dark a:hover .bp3-icon-large, -.bp3-dark a:hover .bp3-icon-standard { - color: inherit; -} -.bp3-code, -.bp3-running-text code { - background: hsla(0, 0%, 100%, 0.7); - border-radius: 3px; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2); - color: #5c7080; - font-family: monospace; - font-size: smaller; - padding: 2px 5px; - text-transform: none; -} -.bp3-dark .bp3-code, -.bp3-dark .bp3-running-text code, -.bp3-running-text .bp3-dark code { - background: rgba(16, 22, 26, 0.3); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); - color: #a7b6c2; -} -.bp3-running-text a > code, -a > .bp3-code { - color: #137cbd; -} -.bp3-dark .bp3-running-text a > code, -.bp3-dark a > .bp3-code, -.bp3-running-text .bp3-dark a > code { - color: inherit; -} -.bp3-code-block, -.bp3-running-text pre { - word-wrap: break-word; - background: hsla(0, 0%, 100%, 0.7); - border-radius: 3px; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.15); - color: #182026; - display: block; - font-family: monospace; - font-size: 13px; - line-height: 1.4; - margin: 10px 0; - padding: 13px 15px 12px; - text-transform: none; - word-break: break-all; -} -.bp3-dark .bp3-code-block, -.bp3-dark .bp3-running-text pre, -.bp3-running-text .bp3-dark pre { - background: rgba(16, 22, 26, 0.3); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} -.bp3-code-block > code, -.bp3-running-text pre > code { - background: none; - box-shadow: none; - color: inherit; - font-size: inherit; - padding: 0; -} -.bp3-key, -.bp3-running-text kbd { - align-items: center; - background: #fff; - border-radius: 3px; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.2); - color: #5c7080; - display: inline-flex; - font-family: inherit; - font-size: 12px; - height: 24px; - justify-content: center; - line-height: 24px; - min-width: 24px; - padding: 3px 6px; - vertical-align: middle; -} -.bp3-key .bp3-icon, -.bp3-key .bp3-icon-large, -.bp3-key .bp3-icon-standard, -.bp3-running-text kbd .bp3-icon, -.bp3-running-text kbd .bp3-icon-large, -.bp3-running-text kbd .bp3-icon-standard { - margin-right: 5px; -} -.bp3-dark .bp3-key, -.bp3-dark .bp3-running-text kbd, -.bp3-running-text .bp3-dark kbd { - background: #394b59; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.4); - color: #a7b6c2; -} -.bp3-blockquote, -.bp3-running-text blockquote { - border-left: 4px solid rgba(167, 182, 194, 0.5); - margin: 0 0 10px; - padding: 0 20px; -} -.bp3-dark .bp3-blockquote, -.bp3-dark .bp3-running-text blockquote, -.bp3-running-text .bp3-dark blockquote { - border-color: rgba(115, 134, 148, 0.5); -} -.bp3-list, -.bp3-running-text ol, -.bp3-running-text ul { - margin: 10px 0; - padding-left: 30px; -} -.bp3-list li:not(:last-child), -.bp3-running-text ol li:not(:last-child), -.bp3-running-text ul li:not(:last-child) { - margin-bottom: 5px; -} -.bp3-list ol, -.bp3-list ul, -.bp3-running-text ol ol, -.bp3-running-text ol ul, -.bp3-running-text ul ol, -.bp3-running-text ul ul { - margin-top: 5px; -} -.bp3-list-unstyled { - list-style: none; - margin: 0; - padding: 0; -} -.bp3-list-unstyled li { - padding: 0; -} -.bp3-rtl { - text-align: right; -} -.bp3-dark { - color: #f5f8fa; -} -:focus { - -moz-outline-radius: 6px; - outline: 2px auto rgba(19, 124, 189, 0.6); - outline-offset: 2px; -} -.bp3-focus-disabled :focus, -.bp3-focus-disabled :focus ~ .bp3-control-indicator { - outline: none !important; -} -.bp3-alert { - max-width: 400px; - padding: 20px; -} -.bp3-alert-body { - display: flex; -} -.bp3-alert-body .bp3-icon { - font-size: 40px; - margin-right: 20px; - margin-top: 0; -} -.bp3-alert-contents { - word-break: break-word; -} -.bp3-alert-footer { - display: flex; - flex-direction: row-reverse; - margin-top: 10px; -} -.bp3-alert-footer .bp3-button { - margin-left: 10px; -} -.bp3-breadcrumbs { - cursor: default; - flex-wrap: wrap; - height: 30px; - list-style: none; - margin: 0; - padding: 0; -} -.bp3-breadcrumbs, -.bp3-breadcrumbs > li { - align-items: center; - display: flex; -} -.bp3-breadcrumbs > li:after { - background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='m10.71 7.29-4-4a1.003 1.003 0 0 0-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 0 0 1.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3E%3C/svg%3E"); - content: ""; - display: block; - height: 16px; - margin: 0 5px; - width: 16px; -} -.bp3-breadcrumbs > li:last-of-type:after { - display: none; -} -.bp3-breadcrumb, -.bp3-breadcrumb-current, -.bp3-breadcrumbs-collapsed { - align-items: center; - display: inline-flex; - font-size: 16px; -} -.bp3-breadcrumb, -.bp3-breadcrumbs-collapsed { - color: #5c7080; -} -.bp3-breadcrumb:hover { - text-decoration: none; -} -.bp3-breadcrumb.bp3-disabled { - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-breadcrumb .bp3-icon { - margin-right: 5px; -} -.bp3-breadcrumb-current { - color: inherit; - font-weight: 600; -} -.bp3-breadcrumb-current .bp3-input { - font-size: inherit; - font-weight: inherit; - vertical-align: baseline; -} -.bp3-breadcrumbs-collapsed { - background: #ced9e0; - border: none; - border-radius: 3px; - cursor: pointer; - margin-right: 2px; - padding: 1px 5px; - vertical-align: text-bottom; -} -.bp3-breadcrumbs-collapsed:before { - background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg fill='%235C7080'%3E%3Ccircle cx='2' cy='8.03' r='2'/%3E%3Ccircle cx='14' cy='8.03' r='2'/%3E%3Ccircle cx='8' cy='8.03' r='2'/%3E%3C/g%3E%3C/svg%3E") - 50% no-repeat; - content: ""; - display: block; - height: 16px; - width: 16px; -} -.bp3-breadcrumbs-collapsed:hover { - background: #bfccd6; - color: #182026; - text-decoration: none; -} -.bp3-dark .bp3-breadcrumb, -.bp3-dark .bp3-breadcrumbs-collapsed, -.bp3-dark .bp3-breadcrumbs > li:after { - color: #a7b6c2; -} -.bp3-dark .bp3-breadcrumb.bp3-disabled { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-breadcrumb-current { - color: #f5f8fa; -} -.bp3-dark .bp3-breadcrumbs-collapsed { - background: rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-breadcrumbs-collapsed:hover { - background: rgba(16, 22, 26, 0.6); - color: #f5f8fa; -} -.bp3-button { - align-items: center; - border: none; - border-radius: 3px; - cursor: pointer; - display: inline-flex; - flex-direction: row; - font-size: 14px; - justify-content: center; - min-height: 30px; - min-width: 30px; - padding: 5px 10px; - text-align: left; - vertical-align: middle; -} -.bp3-button > * { - flex-grow: 0; - flex-shrink: 0; -} -.bp3-button > .bp3-fill { - flex-grow: 1; - flex-shrink: 1; -} -.bp3-button:before, -.bp3-button > * { - margin-right: 7px; -} -.bp3-button:empty:before, -.bp3-button > :last-child { - margin-right: 0; -} -.bp3-button:empty { - padding: 0 !important; -} -.bp3-button.bp3-disabled, -.bp3-button:disabled { - cursor: not-allowed; -} -.bp3-button.bp3-fill { - display: flex; - width: 100%; -} -.bp3-align-right .bp3-button, -.bp3-button.bp3-align-right { - text-align: right; -} -.bp3-align-left .bp3-button, -.bp3-button.bp3-align-left { - text-align: left; -} -.bp3-button:not([class*="bp3-intent-"]) { - background-color: #f5f8fa; - background-image: linear-gradient( - 180deg, - hsla(0, 0%, 100%, 0.8), - hsla(0, 0%, 100%, 0) - ); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - color: #182026; -} -.bp3-button:not([class*="bp3-intent-"]):hover { - background-clip: padding-box; - background-color: #ebf1f5; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); -} -.bp3-button:not([class*="bp3-intent-"]).bp3-active, -.bp3-button:not([class*="bp3-intent-"]):active { - background-color: #d8e1e8; - background-image: none; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-button:not([class*="bp3-intent-"]).bp3-disabled, -.bp3-button:not([class*="bp3-intent-"]):disabled { - background-color: rgba(206, 217, 224, 0.5); - background-image: none; - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; - outline: none; -} -.bp3-button:not([class*="bp3-intent-"]).bp3-disabled.bp3-active, -.bp3-button:not([class*="bp3-intent-"]).bp3-disabled.bp3-active:hover, -.bp3-button:not([class*="bp3-intent-"]):disabled.bp3-active, -.bp3-button:not([class*="bp3-intent-"]):disabled.bp3-active:hover { - background: rgba(206, 217, 224, 0.7); -} -.bp3-button.bp3-intent-primary { - background-color: #137cbd; - background-image: linear-gradient( - 180deg, - hsla(0, 0%, 100%, 0.1), - hsla(0, 0%, 100%, 0) - ); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - color: #fff; -} -.bp3-button.bp3-intent-primary.bp3-active, -.bp3-button.bp3-intent-primary:active, -.bp3-button.bp3-intent-primary:hover { - color: #fff; -} -.bp3-button.bp3-intent-primary:hover { - background-color: #106ba3; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); -} -.bp3-button.bp3-intent-primary.bp3-active, -.bp3-button.bp3-intent-primary:active { - background-color: #0e5a8a; - background-image: none; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-button.bp3-intent-primary.bp3-disabled, -.bp3-button.bp3-intent-primary:disabled { - background-color: rgba(19, 124, 189, 0.5); - background-image: none; - border-color: transparent; - box-shadow: none; - color: hsla(0, 0%, 100%, 0.6); -} -.bp3-button.bp3-intent-success { - background-color: #0f9960; - background-image: linear-gradient( - 180deg, - hsla(0, 0%, 100%, 0.1), - hsla(0, 0%, 100%, 0) - ); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - color: #fff; -} -.bp3-button.bp3-intent-success.bp3-active, -.bp3-button.bp3-intent-success:active, -.bp3-button.bp3-intent-success:hover { - color: #fff; -} -.bp3-button.bp3-intent-success:hover { - background-color: #0d8050; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); -} -.bp3-button.bp3-intent-success.bp3-active, -.bp3-button.bp3-intent-success:active { - background-color: #0a6640; - background-image: none; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-button.bp3-intent-success.bp3-disabled, -.bp3-button.bp3-intent-success:disabled { - background-color: rgba(15, 153, 96, 0.5); - background-image: none; - border-color: transparent; - box-shadow: none; - color: hsla(0, 0%, 100%, 0.6); -} -.bp3-button.bp3-intent-warning { - background-color: #d9822b; - background-image: linear-gradient( - 180deg, - hsla(0, 0%, 100%, 0.1), - hsla(0, 0%, 100%, 0) - ); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - color: #fff; -} -.bp3-button.bp3-intent-warning.bp3-active, -.bp3-button.bp3-intent-warning:active, -.bp3-button.bp3-intent-warning:hover { - color: #fff; -} -.bp3-button.bp3-intent-warning:hover { - background-color: #bf7326; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); -} -.bp3-button.bp3-intent-warning.bp3-active, -.bp3-button.bp3-intent-warning:active { - background-color: #a66321; - background-image: none; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-button.bp3-intent-warning.bp3-disabled, -.bp3-button.bp3-intent-warning:disabled { - background-color: rgba(217, 130, 43, 0.5); - background-image: none; - border-color: transparent; - box-shadow: none; - color: hsla(0, 0%, 100%, 0.6); -} -.bp3-button.bp3-intent-danger { - background-color: #db3737; - background-image: linear-gradient( - 180deg, - hsla(0, 0%, 100%, 0.1), - hsla(0, 0%, 100%, 0) - ); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - color: #fff; -} -.bp3-button.bp3-intent-danger.bp3-active, -.bp3-button.bp3-intent-danger:active, -.bp3-button.bp3-intent-danger:hover { - color: #fff; -} -.bp3-button.bp3-intent-danger:hover { - background-color: #c23030; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); -} -.bp3-button.bp3-intent-danger.bp3-active, -.bp3-button.bp3-intent-danger:active { - background-color: #a82a2a; - background-image: none; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-button.bp3-intent-danger.bp3-disabled, -.bp3-button.bp3-intent-danger:disabled { - background-color: rgba(219, 55, 55, 0.5); - background-image: none; - border-color: transparent; - box-shadow: none; - color: hsla(0, 0%, 100%, 0.6); -} -.bp3-button[class*="bp3-intent-"] .bp3-button-spinner .bp3-spinner-head { - stroke: #fff; -} -.bp3-button.bp3-large, -.bp3-large .bp3-button { - font-size: 16px; - min-height: 40px; - min-width: 40px; - padding: 5px 15px; -} -.bp3-button.bp3-large:before, -.bp3-button.bp3-large > *, -.bp3-large .bp3-button:before, -.bp3-large .bp3-button > * { - margin-right: 10px; -} -.bp3-button.bp3-large:empty:before, -.bp3-button.bp3-large > :last-child, -.bp3-large .bp3-button:empty:before, -.bp3-large .bp3-button > :last-child { - margin-right: 0; -} -.bp3-button.bp3-small, -.bp3-small .bp3-button { - min-height: 24px; - min-width: 24px; - padding: 0 7px; -} -.bp3-button.bp3-loading { - position: relative; -} -.bp3-button.bp3-loading[class*="bp3-icon-"]:before { - visibility: hidden; -} -.bp3-button.bp3-loading .bp3-button-spinner { - margin: 0; - position: absolute; -} -.bp3-button.bp3-loading > :not(.bp3-button-spinner) { - visibility: hidden; -} -.bp3-button[class*="bp3-icon-"]:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - color: #5c7080; - font-family: Icons16, sans-serif; - font-size: 16px; - font-style: normal; - font-weight: 400; - line-height: 1; -} -.bp3-button .bp3-icon, -.bp3-button .bp3-icon-large, -.bp3-button .bp3-icon-standard { - color: #5c7080; -} -.bp3-button .bp3-icon-large.bp3-align-right, -.bp3-button .bp3-icon-standard.bp3-align-right, -.bp3-button .bp3-icon.bp3-align-right { - margin-left: 7px; -} -.bp3-button .bp3-icon:first-child:last-child, -.bp3-button .bp3-spinner + .bp3-icon:last-child { - margin: 0 -7px; -} -.bp3-dark .bp3-button:not([class*="bp3-intent-"]) { - background-color: #394b59; - background-image: linear-gradient( - 180deg, - hsla(0, 0%, 100%, 0.05), - hsla(0, 0%, 100%, 0) - ); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} -.bp3-dark .bp3-button:not([class*="bp3-intent-"]).bp3-active, -.bp3-dark .bp3-button:not([class*="bp3-intent-"]):active, -.bp3-dark .bp3-button:not([class*="bp3-intent-"]):hover { - color: #f5f8fa; -} -.bp3-dark .bp3-button:not([class*="bp3-intent-"]):hover { - background-color: #30404d; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-button:not([class*="bp3-intent-"]).bp3-active, -.bp3-dark .bp3-button:not([class*="bp3-intent-"]):active { - background-color: #202b33; - background-image: none; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-button:not([class*="bp3-intent-"]).bp3-disabled, -.bp3-dark .bp3-button:not([class*="bp3-intent-"]):disabled { - background-color: rgba(57, 75, 89, 0.5); - background-image: none; - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-button:not([class*="bp3-intent-"]).bp3-disabled.bp3-active, -.bp3-dark .bp3-button:not([class*="bp3-intent-"]):disabled.bp3-active { - background: rgba(57, 75, 89, 0.7); -} -.bp3-dark - .bp3-button:not([class*="bp3-intent-"]) - .bp3-button-spinner - .bp3-spinner-head { - stroke: #8a9ba8; - background: rgba(16, 22, 26, 0.5); -} -.bp3-dark - .bp3-button:not([class*="bp3-intent-"]) - .bp3-icon-large:not([class*="bp3-intent-"]), -.bp3-dark - .bp3-button:not([class*="bp3-intent-"]) - .bp3-icon-standard:not([class*="bp3-intent-"]), -.bp3-dark - .bp3-button:not([class*="bp3-intent-"]) - .bp3-icon:not([class*="bp3-intent-"]), -.bp3-dark .bp3-button:not([class*="bp3-intent-"])[class*="bp3-icon-"]:before { - color: #a7b6c2; -} -.bp3-dark .bp3-button[class*="bp3-intent-"], -.bp3-dark .bp3-button[class*="bp3-intent-"]:hover { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-button[class*="bp3-intent-"].bp3-active, -.bp3-dark .bp3-button[class*="bp3-intent-"]:active { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-button[class*="bp3-intent-"].bp3-disabled, -.bp3-dark .bp3-button[class*="bp3-intent-"]:disabled { - background-image: none; - box-shadow: none; - color: hsla(0, 0%, 100%, 0.3); -} -.bp3-dark - .bp3-button[class*="bp3-intent-"] - .bp3-button-spinner - .bp3-spinner-head { - stroke: #8a9ba8; -} -.bp3-button.bp3-disabled .bp3-icon, -.bp3-button.bp3-disabled .bp3-icon-large, -.bp3-button.bp3-disabled .bp3-icon-standard, -.bp3-button.bp3-disabled:before, -.bp3-button:disabled .bp3-icon, -.bp3-button:disabled .bp3-icon-large, -.bp3-button:disabled .bp3-icon-standard, -.bp3-button:disabled:before, -.bp3-button[class*="bp3-intent-"] .bp3-icon, -.bp3-button[class*="bp3-intent-"] .bp3-icon-large, -.bp3-button[class*="bp3-intent-"] .bp3-icon-standard, -.bp3-button[class*="bp3-intent-"]:before { - color: inherit !important; -} -.bp3-button.bp3-minimal { - background: none; - box-shadow: none; -} -.bp3-button.bp3-minimal:hover { - background: rgba(167, 182, 194, 0.3); - box-shadow: none; - color: #182026; - text-decoration: none; -} -.bp3-button.bp3-minimal.bp3-active, -.bp3-button.bp3-minimal:active { - background: rgba(115, 134, 148, 0.3); - box-shadow: none; - color: #182026; -} -.bp3-button.bp3-minimal.bp3-disabled, -.bp3-button.bp3-minimal.bp3-disabled:hover, -.bp3-button.bp3-minimal:disabled, -.bp3-button.bp3-minimal:disabled:hover { - background: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-button.bp3-minimal.bp3-disabled.bp3-active, -.bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active, -.bp3-button.bp3-minimal:disabled.bp3-active, -.bp3-button.bp3-minimal:disabled:hover.bp3-active { - background: rgba(115, 134, 148, 0.3); -} -.bp3-dark .bp3-button.bp3-minimal { - background: none; - box-shadow: none; - color: inherit; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-active, -.bp3-dark .bp3-button.bp3-minimal:active, -.bp3-dark .bp3-button.bp3-minimal:hover { - background: none; - box-shadow: none; -} -.bp3-dark .bp3-button.bp3-minimal:hover { - background: rgba(138, 155, 168, 0.15); -} -.bp3-dark .bp3-button.bp3-minimal.bp3-active, -.bp3-dark .bp3-button.bp3-minimal:active { - background: rgba(138, 155, 168, 0.3); - color: #f5f8fa; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-disabled, -.bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover, -.bp3-dark .bp3-button.bp3-minimal:disabled, -.bp3-dark .bp3-button.bp3-minimal:disabled:hover { - background: none; - color: rgba(167, 182, 194, 0.6); - cursor: not-allowed; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, -.bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active, -.bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, -.bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active { - background: rgba(138, 155, 168, 0.3); -} -.bp3-button.bp3-minimal.bp3-intent-primary { - color: #106ba3; -} -.bp3-button.bp3-minimal.bp3-intent-primary.bp3-active, -.bp3-button.bp3-minimal.bp3-intent-primary:active, -.bp3-button.bp3-minimal.bp3-intent-primary:hover { - background: none; - box-shadow: none; - color: #106ba3; -} -.bp3-button.bp3-minimal.bp3-intent-primary:hover { - background: rgba(19, 124, 189, 0.15); - color: #106ba3; -} -.bp3-button.bp3-minimal.bp3-intent-primary.bp3-active, -.bp3-button.bp3-minimal.bp3-intent-primary:active { - background: rgba(19, 124, 189, 0.3); - color: #106ba3; -} -.bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled, -.bp3-button.bp3-minimal.bp3-intent-primary:disabled { - background: none; - color: rgba(16, 107, 163, 0.5); -} -.bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active, -.bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active { - background: rgba(19, 124, 189, 0.3); -} -.bp3-button.bp3-minimal.bp3-intent-primary - .bp3-button-spinner - .bp3-spinner-head { - stroke: #106ba3; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary { - color: #48aff0; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover { - background: rgba(19, 124, 189, 0.2); - color: #48aff0; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active { - background: rgba(19, 124, 189, 0.3); - color: #48aff0; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled { - background: none; - color: rgba(72, 175, 240, 0.5); -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active { - background: rgba(19, 124, 189, 0.3); -} -.bp3-button.bp3-minimal.bp3-intent-success { - color: #0d8050; -} -.bp3-button.bp3-minimal.bp3-intent-success.bp3-active, -.bp3-button.bp3-minimal.bp3-intent-success:active, -.bp3-button.bp3-minimal.bp3-intent-success:hover { - background: none; - box-shadow: none; - color: #0d8050; -} -.bp3-button.bp3-minimal.bp3-intent-success:hover { - background: rgba(15, 153, 96, 0.15); - color: #0d8050; -} -.bp3-button.bp3-minimal.bp3-intent-success.bp3-active, -.bp3-button.bp3-minimal.bp3-intent-success:active { - background: rgba(15, 153, 96, 0.3); - color: #0d8050; -} -.bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled, -.bp3-button.bp3-minimal.bp3-intent-success:disabled { - background: none; - color: rgba(13, 128, 80, 0.5); -} -.bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active, -.bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active { - background: rgba(15, 153, 96, 0.3); -} -.bp3-button.bp3-minimal.bp3-intent-success - .bp3-button-spinner - .bp3-spinner-head { - stroke: #0d8050; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-success { - color: #3dcc91; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover { - background: rgba(15, 153, 96, 0.2); - color: #3dcc91; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active { - background: rgba(15, 153, 96, 0.3); - color: #3dcc91; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled { - background: none; - color: rgba(61, 204, 145, 0.5); -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active { - background: rgba(15, 153, 96, 0.3); -} -.bp3-button.bp3-minimal.bp3-intent-warning { - color: #bf7326; -} -.bp3-button.bp3-minimal.bp3-intent-warning.bp3-active, -.bp3-button.bp3-minimal.bp3-intent-warning:active, -.bp3-button.bp3-minimal.bp3-intent-warning:hover { - background: none; - box-shadow: none; - color: #bf7326; -} -.bp3-button.bp3-minimal.bp3-intent-warning:hover { - background: rgba(217, 130, 43, 0.15); - color: #bf7326; -} -.bp3-button.bp3-minimal.bp3-intent-warning.bp3-active, -.bp3-button.bp3-minimal.bp3-intent-warning:active { - background: rgba(217, 130, 43, 0.3); - color: #bf7326; -} -.bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled, -.bp3-button.bp3-minimal.bp3-intent-warning:disabled { - background: none; - color: rgba(191, 115, 38, 0.5); -} -.bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active, -.bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active { - background: rgba(217, 130, 43, 0.3); -} -.bp3-button.bp3-minimal.bp3-intent-warning - .bp3-button-spinner - .bp3-spinner-head { - stroke: #bf7326; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning { - color: #ffb366; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover { - background: rgba(217, 130, 43, 0.2); - color: #ffb366; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active { - background: rgba(217, 130, 43, 0.3); - color: #ffb366; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled { - background: none; - color: rgba(255, 179, 102, 0.5); -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active { - background: rgba(217, 130, 43, 0.3); -} -.bp3-button.bp3-minimal.bp3-intent-danger { - color: #c23030; -} -.bp3-button.bp3-minimal.bp3-intent-danger.bp3-active, -.bp3-button.bp3-minimal.bp3-intent-danger:active, -.bp3-button.bp3-minimal.bp3-intent-danger:hover { - background: none; - box-shadow: none; - color: #c23030; -} -.bp3-button.bp3-minimal.bp3-intent-danger:hover { - background: rgba(219, 55, 55, 0.15); - color: #c23030; -} -.bp3-button.bp3-minimal.bp3-intent-danger.bp3-active, -.bp3-button.bp3-minimal.bp3-intent-danger:active { - background: rgba(219, 55, 55, 0.3); - color: #c23030; -} -.bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled, -.bp3-button.bp3-minimal.bp3-intent-danger:disabled { - background: none; - color: rgba(194, 48, 48, 0.5); -} -.bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active, -.bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active { - background: rgba(219, 55, 55, 0.3); -} -.bp3-button.bp3-minimal.bp3-intent-danger - .bp3-button-spinner - .bp3-spinner-head { - stroke: #c23030; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger { - color: #ff7373; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover { - background: rgba(219, 55, 55, 0.2); - color: #ff7373; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active { - background: rgba(219, 55, 55, 0.3); - color: #ff7373; -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled { - background: none; - color: hsla(0, 100%, 73%, 0.5); -} -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active, -.bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active { - background: rgba(219, 55, 55, 0.3); -} -.bp3-button.bp3-outlined { - background: none; - border: 1px solid rgba(24, 32, 38, 0.2); - box-shadow: none; - box-sizing: border-box; -} -.bp3-button.bp3-outlined:hover { - background: rgba(167, 182, 194, 0.3); - box-shadow: none; - color: #182026; - text-decoration: none; -} -.bp3-button.bp3-outlined.bp3-active, -.bp3-button.bp3-outlined:active { - background: rgba(115, 134, 148, 0.3); - box-shadow: none; - color: #182026; -} -.bp3-button.bp3-outlined.bp3-disabled, -.bp3-button.bp3-outlined.bp3-disabled:hover, -.bp3-button.bp3-outlined:disabled, -.bp3-button.bp3-outlined:disabled:hover { - background: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-button.bp3-outlined.bp3-disabled.bp3-active, -.bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active, -.bp3-button.bp3-outlined:disabled.bp3-active, -.bp3-button.bp3-outlined:disabled:hover.bp3-active { - background: rgba(115, 134, 148, 0.3); -} -.bp3-dark .bp3-button.bp3-outlined { - background: none; - box-shadow: none; - color: inherit; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-active, -.bp3-dark .bp3-button.bp3-outlined:active, -.bp3-dark .bp3-button.bp3-outlined:hover { - background: none; - box-shadow: none; -} -.bp3-dark .bp3-button.bp3-outlined:hover { - background: rgba(138, 155, 168, 0.15); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-active, -.bp3-dark .bp3-button.bp3-outlined:active { - background: rgba(138, 155, 168, 0.3); - color: #f5f8fa; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover, -.bp3-dark .bp3-button.bp3-outlined:disabled, -.bp3-dark .bp3-button.bp3-outlined:disabled:hover { - background: none; - color: rgba(167, 182, 194, 0.6); - cursor: not-allowed; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, -.bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active, -.bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, -.bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active { - background: rgba(138, 155, 168, 0.3); -} -.bp3-button.bp3-outlined.bp3-intent-primary { - color: #106ba3; -} -.bp3-button.bp3-outlined.bp3-intent-primary.bp3-active, -.bp3-button.bp3-outlined.bp3-intent-primary:active, -.bp3-button.bp3-outlined.bp3-intent-primary:hover { - background: none; - box-shadow: none; - color: #106ba3; -} -.bp3-button.bp3-outlined.bp3-intent-primary:hover { - background: rgba(19, 124, 189, 0.15); - color: #106ba3; -} -.bp3-button.bp3-outlined.bp3-intent-primary.bp3-active, -.bp3-button.bp3-outlined.bp3-intent-primary:active { - background: rgba(19, 124, 189, 0.3); - color: #106ba3; -} -.bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled, -.bp3-button.bp3-outlined.bp3-intent-primary:disabled { - background: none; - color: rgba(16, 107, 163, 0.5); -} -.bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active, -.bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active { - background: rgba(19, 124, 189, 0.3); -} -.bp3-button.bp3-outlined.bp3-intent-primary - .bp3-button-spinner - .bp3-spinner-head { - stroke: #106ba3; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary { - color: #48aff0; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover { - background: rgba(19, 124, 189, 0.2); - color: #48aff0; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active { - background: rgba(19, 124, 189, 0.3); - color: #48aff0; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled { - background: none; - color: rgba(72, 175, 240, 0.5); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active { - background: rgba(19, 124, 189, 0.3); -} -.bp3-button.bp3-outlined.bp3-intent-success { - color: #0d8050; -} -.bp3-button.bp3-outlined.bp3-intent-success.bp3-active, -.bp3-button.bp3-outlined.bp3-intent-success:active, -.bp3-button.bp3-outlined.bp3-intent-success:hover { - background: none; - box-shadow: none; - color: #0d8050; -} -.bp3-button.bp3-outlined.bp3-intent-success:hover { - background: rgba(15, 153, 96, 0.15); - color: #0d8050; -} -.bp3-button.bp3-outlined.bp3-intent-success.bp3-active, -.bp3-button.bp3-outlined.bp3-intent-success:active { - background: rgba(15, 153, 96, 0.3); - color: #0d8050; -} -.bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled, -.bp3-button.bp3-outlined.bp3-intent-success:disabled { - background: none; - color: rgba(13, 128, 80, 0.5); -} -.bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active, -.bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active { - background: rgba(15, 153, 96, 0.3); -} -.bp3-button.bp3-outlined.bp3-intent-success - .bp3-button-spinner - .bp3-spinner-head { - stroke: #0d8050; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success { - color: #3dcc91; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover { - background: rgba(15, 153, 96, 0.2); - color: #3dcc91; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active { - background: rgba(15, 153, 96, 0.3); - color: #3dcc91; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled { - background: none; - color: rgba(61, 204, 145, 0.5); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active { - background: rgba(15, 153, 96, 0.3); -} -.bp3-button.bp3-outlined.bp3-intent-warning { - color: #bf7326; -} -.bp3-button.bp3-outlined.bp3-intent-warning.bp3-active, -.bp3-button.bp3-outlined.bp3-intent-warning:active, -.bp3-button.bp3-outlined.bp3-intent-warning:hover { - background: none; - box-shadow: none; - color: #bf7326; -} -.bp3-button.bp3-outlined.bp3-intent-warning:hover { - background: rgba(217, 130, 43, 0.15); - color: #bf7326; -} -.bp3-button.bp3-outlined.bp3-intent-warning.bp3-active, -.bp3-button.bp3-outlined.bp3-intent-warning:active { - background: rgba(217, 130, 43, 0.3); - color: #bf7326; -} -.bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled, -.bp3-button.bp3-outlined.bp3-intent-warning:disabled { - background: none; - color: rgba(191, 115, 38, 0.5); -} -.bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active, -.bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active { - background: rgba(217, 130, 43, 0.3); -} -.bp3-button.bp3-outlined.bp3-intent-warning - .bp3-button-spinner - .bp3-spinner-head { - stroke: #bf7326; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning { - color: #ffb366; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover { - background: rgba(217, 130, 43, 0.2); - color: #ffb366; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active { - background: rgba(217, 130, 43, 0.3); - color: #ffb366; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled { - background: none; - color: rgba(255, 179, 102, 0.5); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active { - background: rgba(217, 130, 43, 0.3); -} -.bp3-button.bp3-outlined.bp3-intent-danger { - color: #c23030; -} -.bp3-button.bp3-outlined.bp3-intent-danger.bp3-active, -.bp3-button.bp3-outlined.bp3-intent-danger:active, -.bp3-button.bp3-outlined.bp3-intent-danger:hover { - background: none; - box-shadow: none; - color: #c23030; -} -.bp3-button.bp3-outlined.bp3-intent-danger:hover { - background: rgba(219, 55, 55, 0.15); - color: #c23030; -} -.bp3-button.bp3-outlined.bp3-intent-danger.bp3-active, -.bp3-button.bp3-outlined.bp3-intent-danger:active { - background: rgba(219, 55, 55, 0.3); - color: #c23030; -} -.bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled, -.bp3-button.bp3-outlined.bp3-intent-danger:disabled { - background: none; - color: rgba(194, 48, 48, 0.5); -} -.bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active, -.bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active { - background: rgba(219, 55, 55, 0.3); -} -.bp3-button.bp3-outlined.bp3-intent-danger - .bp3-button-spinner - .bp3-spinner-head { - stroke: #c23030; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger { - color: #ff7373; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover { - background: rgba(219, 55, 55, 0.2); - color: #ff7373; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active { - background: rgba(219, 55, 55, 0.3); - color: #ff7373; -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled { - background: none; - color: hsla(0, 100%, 73%, 0.5); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active { - background: rgba(219, 55, 55, 0.3); -} -.bp3-button.bp3-outlined.bp3-disabled, -.bp3-button.bp3-outlined.bp3-disabled:hover, -.bp3-button.bp3-outlined:disabled, -.bp3-button.bp3-outlined:disabled:hover { - border-color: rgba(92, 112, 128, 0.1); -} -.bp3-dark .bp3-button.bp3-outlined { - border-color: hsla(0, 0%, 100%, 0.4); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover, -.bp3-dark .bp3-button.bp3-outlined:disabled, -.bp3-dark .bp3-button.bp3-outlined:disabled:hover { - border-color: hsla(0, 0%, 100%, 0.2); -} -.bp3-button.bp3-outlined.bp3-intent-primary { - border-color: rgba(16, 107, 163, 0.6); -} -.bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled, -.bp3-button.bp3-outlined.bp3-intent-primary:disabled { - border-color: rgba(16, 107, 163, 0.2); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary { - border-color: rgba(72, 175, 240, 0.6); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled { - border-color: rgba(72, 175, 240, 0.2); -} -.bp3-button.bp3-outlined.bp3-intent-success { - border-color: rgba(13, 128, 80, 0.6); -} -.bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled, -.bp3-button.bp3-outlined.bp3-intent-success:disabled { - border-color: rgba(13, 128, 80, 0.2); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success { - border-color: rgba(61, 204, 145, 0.6); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled { - border-color: rgba(61, 204, 145, 0.2); -} -.bp3-button.bp3-outlined.bp3-intent-warning { - border-color: rgba(191, 115, 38, 0.6); -} -.bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled, -.bp3-button.bp3-outlined.bp3-intent-warning:disabled { - border-color: rgba(191, 115, 38, 0.2); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning { - border-color: rgba(255, 179, 102, 0.6); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled { - border-color: rgba(255, 179, 102, 0.2); -} -.bp3-button.bp3-outlined.bp3-intent-danger { - border-color: rgba(194, 48, 48, 0.6); -} -.bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled, -.bp3-button.bp3-outlined.bp3-intent-danger:disabled { - border-color: rgba(194, 48, 48, 0.2); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger { - border-color: hsla(0, 100%, 73%, 0.6); -} -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled, -.bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled { - border-color: hsla(0, 100%, 73%, 0.2); -} -a.bp3-button { - text-align: center; - text-decoration: none; - transition: none; -} -a.bp3-button, -a.bp3-button:active, -a.bp3-button:hover { - color: #182026; -} -a.bp3-button.bp3-disabled { - color: rgba(92, 112, 128, 0.6); -} -.bp3-button-text { - flex: 0 1 auto; -} -.bp3-button-group.bp3-align-left .bp3-button-text, -.bp3-button-group.bp3-align-right .bp3-button-text, -.bp3-button.bp3-align-left .bp3-button-text, -.bp3-button.bp3-align-right .bp3-button-text { - flex: 1 1 auto; -} -.bp3-button-group { - display: inline-flex; -} -.bp3-button-group .bp3-button { - flex: 0 0 auto; - position: relative; - z-index: 4; -} -.bp3-button-group .bp3-button:focus { - z-index: 5; -} -.bp3-button-group .bp3-button:hover { - z-index: 6; -} -.bp3-button-group .bp3-button.bp3-active, -.bp3-button-group .bp3-button:active { - z-index: 7; -} -.bp3-button-group .bp3-button.bp3-disabled, -.bp3-button-group .bp3-button:disabled { - z-index: 3; -} -.bp3-button-group .bp3-button[class*="bp3-intent-"] { - z-index: 9; -} -.bp3-button-group .bp3-button[class*="bp3-intent-"]:focus { - z-index: 10; -} -.bp3-button-group .bp3-button[class*="bp3-intent-"]:hover { - z-index: 11; -} -.bp3-button-group .bp3-button[class*="bp3-intent-"].bp3-active, -.bp3-button-group .bp3-button[class*="bp3-intent-"]:active { - z-index: 12; -} -.bp3-button-group .bp3-button[class*="bp3-intent-"].bp3-disabled, -.bp3-button-group .bp3-button[class*="bp3-intent-"]:disabled { - z-index: 8; -} -.bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child), -.bp3-button-group:not(.bp3-minimal) - > .bp3-popover-wrapper:not(:first-child) - .bp3-button { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child), -.bp3-button-group:not(.bp3-minimal) - > .bp3-popover-wrapper:not(:last-child) - .bp3-button { - border-bottom-right-radius: 0; - border-top-right-radius: 0; - margin-right: -1px; -} -.bp3-button-group.bp3-minimal .bp3-button { - background: none; - box-shadow: none; -} -.bp3-button-group.bp3-minimal .bp3-button:hover { - background: rgba(167, 182, 194, 0.3); - box-shadow: none; - color: #182026; - text-decoration: none; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-active, -.bp3-button-group.bp3-minimal .bp3-button:active { - background: rgba(115, 134, 148, 0.3); - box-shadow: none; - color: #182026; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, -.bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover, -.bp3-button-group.bp3-minimal .bp3-button:disabled, -.bp3-button-group.bp3-minimal .bp3-button:disabled:hover { - background: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active, -.bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, -.bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active { - background: rgba(115, 134, 148, 0.3); -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button { - background: none; - box-shadow: none; - color: inherit; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover { - background: none; - box-shadow: none; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover { - background: rgba(138, 155, 168, 0.15); -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active { - background: rgba(138, 155, 168, 0.3); - color: #f5f8fa; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover { - background: none; - color: rgba(167, 182, 194, 0.6); - cursor: not-allowed; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-disabled:hover.bp3-active, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active { - background: rgba(138, 155, 168, 0.3); -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary { - color: #106ba3; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover { - background: none; - box-shadow: none; - color: #106ba3; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover { - background: rgba(19, 124, 189, 0.15); - color: #106ba3; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active { - background: rgba(19, 124, 189, 0.3); - color: #106ba3; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled { - background: none; - color: rgba(16, 107, 163, 0.5); -} -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active, -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-primary:disabled.bp3-active { - background: rgba(19, 124, 189, 0.3); -} -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-primary - .bp3-button-spinner - .bp3-spinner-head { - stroke: #106ba3; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary { - color: #48aff0; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover { - background: rgba(19, 124, 189, 0.2); - color: #48aff0; -} -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-primary.bp3-active, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active { - background: rgba(19, 124, 189, 0.3); - color: #48aff0; -} -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-primary.bp3-disabled, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-primary:disabled { - background: none; - color: rgba(72, 175, 240, 0.5); -} -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-primary:disabled.bp3-active { - background: rgba(19, 124, 189, 0.3); -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success { - color: #0d8050; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover { - background: none; - box-shadow: none; - color: #0d8050; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover { - background: rgba(15, 153, 96, 0.15); - color: #0d8050; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active { - background: rgba(15, 153, 96, 0.3); - color: #0d8050; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled { - background: none; - color: rgba(13, 128, 80, 0.5); -} -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-success.bp3-disabled.bp3-active, -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-success:disabled.bp3-active { - background: rgba(15, 153, 96, 0.3); -} -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-success - .bp3-button-spinner - .bp3-spinner-head { - stroke: #0d8050; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success { - color: #3dcc91; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover { - background: rgba(15, 153, 96, 0.2); - color: #3dcc91; -} -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-success.bp3-active, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active { - background: rgba(15, 153, 96, 0.3); - color: #3dcc91; -} -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-success.bp3-disabled, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-success:disabled { - background: none; - color: rgba(61, 204, 145, 0.5); -} -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-success.bp3-disabled.bp3-active, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-success:disabled.bp3-active { - background: rgba(15, 153, 96, 0.3); -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning { - color: #bf7326; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover { - background: none; - box-shadow: none; - color: #bf7326; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover { - background: rgba(217, 130, 43, 0.15); - color: #bf7326; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active { - background: rgba(217, 130, 43, 0.3); - color: #bf7326; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled { - background: none; - color: rgba(191, 115, 38, 0.5); -} -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active, -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-warning:disabled.bp3-active { - background: rgba(217, 130, 43, 0.3); -} -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-warning - .bp3-button-spinner - .bp3-spinner-head { - stroke: #bf7326; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning { - color: #ffb366; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover { - background: rgba(217, 130, 43, 0.2); - color: #ffb366; -} -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-warning.bp3-active, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active { - background: rgba(217, 130, 43, 0.3); - color: #ffb366; -} -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-warning.bp3-disabled, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-warning:disabled { - background: none; - color: rgba(255, 179, 102, 0.5); -} -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-warning:disabled.bp3-active { - background: rgba(217, 130, 43, 0.3); -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger { - color: #c23030; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover { - background: none; - box-shadow: none; - color: #c23030; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover { - background: rgba(219, 55, 55, 0.15); - color: #c23030; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active { - background: rgba(219, 55, 55, 0.3); - color: #c23030; -} -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled, -.bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled { - background: none; - color: rgba(194, 48, 48, 0.5); -} -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active, -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-danger:disabled.bp3-active { - background: rgba(219, 55, 55, 0.3); -} -.bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-danger - .bp3-button-spinner - .bp3-spinner-head { - stroke: #c23030; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger { - color: #ff7373; -} -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover { - background: rgba(219, 55, 55, 0.2); - color: #ff7373; -} -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-danger.bp3-active, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active { - background: rgba(219, 55, 55, 0.3); - color: #ff7373; -} -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-danger.bp3-disabled, -.bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled { - background: none; - color: hsla(0, 100%, 73%, 0.5); -} -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active, -.bp3-dark - .bp3-button-group.bp3-minimal - .bp3-button.bp3-intent-danger:disabled.bp3-active { - background: rgba(219, 55, 55, 0.3); -} -.bp3-button-group .bp3-popover-target, -.bp3-button-group .bp3-popover-wrapper { - display: flex; - flex: 1 1 auto; -} -.bp3-button-group.bp3-fill { - display: flex; - width: 100%; -} -.bp3-button-group .bp3-button.bp3-fill, -.bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed) { - flex: 1 1 auto; -} -.bp3-button-group.bp3-vertical { - align-items: stretch; - flex-direction: column; - vertical-align: top; -} -.bp3-button-group.bp3-vertical.bp3-fill { - height: 100%; - width: unset; -} -.bp3-button-group.bp3-vertical .bp3-button { - margin-right: 0 !important; - width: 100%; -} -.bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child, -.bp3-button-group.bp3-vertical:not(.bp3-minimal) - > .bp3-popover-wrapper:first-child - .bp3-button { - border-radius: 3px 3px 0 0; -} -.bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child, -.bp3-button-group.bp3-vertical:not(.bp3-minimal) - > .bp3-popover-wrapper:last-child - .bp3-button { - border-radius: 0 0 3px 3px; -} -.bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child), -.bp3-button-group.bp3-vertical:not(.bp3-minimal) - > .bp3-popover-wrapper:not(:last-child) - .bp3-button { - margin-bottom: -1px; -} -.bp3-button-group.bp3-align-left .bp3-button { - text-align: left; -} -.bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child), -.bp3-dark - .bp3-button-group:not(.bp3-minimal) - > .bp3-popover-wrapper:not(:last-child) - .bp3-button { - margin-right: 1px; -} -.bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child), -.bp3-dark - .bp3-button-group.bp3-vertical - > .bp3-popover-wrapper:not(:last-child) - .bp3-button { - margin-bottom: 1px; -} -.bp3-callout { - background-color: rgba(138, 155, 168, 0.15); - border-radius: 3px; - font-size: 14px; - line-height: 1.5; - padding: 10px 12px 9px; - position: relative; - width: 100%; -} -.bp3-callout[class*="bp3-icon-"] { - padding-left: 40px; -} -.bp3-callout[class*="bp3-icon-"]:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - color: #5c7080; - font-family: Icons20, sans-serif; - font-size: 20px; - font-style: normal; - font-weight: 400; - left: 10px; - line-height: 1; - position: absolute; - top: 10px; -} -.bp3-callout.bp3-callout-icon { - padding-left: 40px; -} -.bp3-callout.bp3-callout-icon > .bp3-icon:first-child { - color: #5c7080; - left: 10px; - position: absolute; - top: 10px; -} -.bp3-callout .bp3-heading { - line-height: 20px; - margin-bottom: 5px; - margin-top: 0; -} -.bp3-callout .bp3-heading:last-child { - margin-bottom: 0; -} -.bp3-dark .bp3-callout { - background-color: rgba(138, 155, 168, 0.2); -} -.bp3-dark .bp3-callout[class*="bp3-icon-"]:before { - color: #a7b6c2; -} -.bp3-callout.bp3-intent-primary { - background-color: rgba(19, 124, 189, 0.15); -} -.bp3-callout.bp3-intent-primary .bp3-heading, -.bp3-callout.bp3-intent-primary > .bp3-icon:first-child, -.bp3-callout.bp3-intent-primary[class*="bp3-icon-"]:before { - color: #106ba3; -} -.bp3-dark .bp3-callout.bp3-intent-primary { - background-color: rgba(19, 124, 189, 0.25); -} -.bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading, -.bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child, -.bp3-dark .bp3-callout.bp3-intent-primary[class*="bp3-icon-"]:before { - color: #48aff0; -} -.bp3-callout.bp3-intent-success { - background-color: rgba(15, 153, 96, 0.15); -} -.bp3-callout.bp3-intent-success .bp3-heading, -.bp3-callout.bp3-intent-success > .bp3-icon:first-child, -.bp3-callout.bp3-intent-success[class*="bp3-icon-"]:before { - color: #0d8050; -} -.bp3-dark .bp3-callout.bp3-intent-success { - background-color: rgba(15, 153, 96, 0.25); -} -.bp3-dark .bp3-callout.bp3-intent-success .bp3-heading, -.bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child, -.bp3-dark .bp3-callout.bp3-intent-success[class*="bp3-icon-"]:before { - color: #3dcc91; -} -.bp3-callout.bp3-intent-warning { - background-color: rgba(217, 130, 43, 0.15); -} -.bp3-callout.bp3-intent-warning .bp3-heading, -.bp3-callout.bp3-intent-warning > .bp3-icon:first-child, -.bp3-callout.bp3-intent-warning[class*="bp3-icon-"]:before { - color: #bf7326; -} -.bp3-dark .bp3-callout.bp3-intent-warning { - background-color: rgba(217, 130, 43, 0.25); -} -.bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading, -.bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child, -.bp3-dark .bp3-callout.bp3-intent-warning[class*="bp3-icon-"]:before { - color: #ffb366; -} -.bp3-callout.bp3-intent-danger { - background-color: rgba(219, 55, 55, 0.15); -} -.bp3-callout.bp3-intent-danger .bp3-heading, -.bp3-callout.bp3-intent-danger > .bp3-icon:first-child, -.bp3-callout.bp3-intent-danger[class*="bp3-icon-"]:before { - color: #c23030; -} -.bp3-dark .bp3-callout.bp3-intent-danger { - background-color: rgba(219, 55, 55, 0.25); -} -.bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading, -.bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child, -.bp3-dark .bp3-callout.bp3-intent-danger[class*="bp3-icon-"]:before { - color: #ff7373; -} -.bp3-running-text .bp3-callout { - margin: 20px 0; -} -.bp3-card { - background-color: #fff; - border-radius: 3px; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), - 0 0 0 rgba(16, 22, 26, 0); - padding: 20px; - transition: box-shadow 0.2s cubic-bezier(0.4, 1, 0.75, 0.9), - -webkit-transform 0.2s cubic-bezier(0.4, 1, 0.75, 0.9); - transition: transform 0.2s cubic-bezier(0.4, 1, 0.75, 0.9), - box-shadow 0.2s cubic-bezier(0.4, 1, 0.75, 0.9); - transition: transform 0.2s cubic-bezier(0.4, 1, 0.75, 0.9), - box-shadow 0.2s cubic-bezier(0.4, 1, 0.75, 0.9), - -webkit-transform 0.2s cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-card.bp3-dark, -.bp3-dark .bp3-card { - background-color: #30404d; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), - 0 0 0 rgba(16, 22, 26, 0); -} -.bp3-elevation-0 { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), - 0 0 0 rgba(16, 22, 26, 0); -} -.bp3-dark .bp3-elevation-0, -.bp3-elevation-0.bp3-dark { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), - 0 0 0 rgba(16, 22, 26, 0); -} -.bp3-elevation-1 { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-elevation-1, -.bp3-elevation-1.bp3-dark { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-elevation-2 { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), - 0 2px 6px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-elevation-2, -.bp3-elevation-2.bp3-dark { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), - 0 2px 6px rgba(16, 22, 26, 0.4); -} -.bp3-elevation-3 { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-elevation-3, -.bp3-elevation-3.bp3-dark { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); -} -.bp3-elevation-4 { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), - 0 18px 46px 6px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-elevation-4, -.bp3-elevation-4.bp3-dark { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), - 0 18px 46px 6px rgba(16, 22, 26, 0.4); -} -.bp3-card.bp3-interactive:hover { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - cursor: pointer; -} -.bp3-card.bp3-interactive:hover.bp3-dark, -.bp3-dark .bp3-card.bp3-interactive:hover { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); -} -.bp3-card.bp3-interactive:active { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.2); - opacity: 0.9; - transition-duration: 0; -} -.bp3-card.bp3-interactive:active.bp3-dark, -.bp3-dark .bp3-card.bp3-interactive:active { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-collapse { - height: 0; - overflow-y: hidden; - transition: height 0.2s cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-collapse .bp3-collapse-body { - transition: -webkit-transform 0.2s cubic-bezier(0.4, 1, 0.75, 0.9); - transition: transform 0.2s cubic-bezier(0.4, 1, 0.75, 0.9); - transition: transform 0.2s cubic-bezier(0.4, 1, 0.75, 0.9), - -webkit-transform 0.2s cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-collapse .bp3-collapse-body[aria-hidden="true"] { - display: none; -} -.bp3-context-menu .bp3-popover-target { - display: block; -} -.bp3-context-menu-popover-target { - position: fixed; -} -.bp3-dialog-container { - align-items: center; - display: flex; - justify-content: center; - min-height: 100%; - opacity: 1; - pointer-events: none; - -webkit-transform: scale(1); - transform: scale(1); - -webkit-user-select: none; - -ms-user-select: none; - user-select: none; - width: 100%; -} -.bp3-dialog-container.bp3-overlay-appear > .bp3-dialog, -.bp3-dialog-container.bp3-overlay-enter > .bp3-dialog { - opacity: 0; - -webkit-transform: scale(0.5); - transform: scale(0.5); -} -.bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog, -.bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - transition-delay: 0; - transition-duration: 0.3s; - transition-property: opacity, -webkit-transform; - transition-property: opacity, transform; - transition-property: opacity, transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); -} -.bp3-dialog-container.bp3-overlay-exit > .bp3-dialog { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); -} -.bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog { - opacity: 0; - -webkit-transform: scale(0.5); - transform: scale(0.5); - transition-delay: 0; - transition-duration: 0.3s; - transition-property: opacity, -webkit-transform; - transition-property: opacity, transform; - transition-property: opacity, transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); -} -.bp3-dialog { - background: #ebf1f5; - border-radius: 6px; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), - 0 18px 46px 6px rgba(16, 22, 26, 0.2); - display: flex; - flex-direction: column; - margin: 30px 0; - padding-bottom: 20px; - pointer-events: all; - -webkit-user-select: text; - -ms-user-select: text; - user-select: text; - width: 500px; -} -.bp3-dialog:focus { - outline: 0; -} -.bp3-dark .bp3-dialog, -.bp3-dialog.bp3-dark { - background: #293742; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), - 0 18px 46px 6px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} -.bp3-dialog-header { - align-items: center; - background: #fff; - border-radius: 6px 6px 0 0; - box-shadow: 0 1px 0 rgba(16, 22, 26, 0.15); - display: flex; - flex: 0 0 auto; - min-height: 40px; - padding-left: 20px; - padding-right: 5px; - z-index: 0; -} -.bp3-dialog-header .bp3-icon, -.bp3-dialog-header .bp3-icon-large { - color: #5c7080; - flex: 0 0 auto; - margin-right: 10px; -} -.bp3-dialog-header .bp3-heading { - word-wrap: normal; - flex: 1 1 auto; - line-height: inherit; - margin: 0; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.bp3-dialog-header .bp3-heading:last-child { - margin-right: 20px; -} -.bp3-dark .bp3-dialog-header { - background: #30404d; - box-shadow: 0 1px 0 rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-dialog-header .bp3-icon, -.bp3-dark .bp3-dialog-header .bp3-icon-large { - color: #a7b6c2; -} -.bp3-dialog-body { - flex: 1 1 auto; - line-height: 18px; - margin: 20px; -} -.bp3-dialog-footer { - flex: 0 0 auto; - margin: 0 20px; -} -.bp3-dialog-footer-actions { - display: flex; - justify-content: flex-end; -} -.bp3-dialog-footer-actions .bp3-button { - margin-left: 10px; -} -.bp3-multistep-dialog-panels { - display: flex; -} -.bp3-multistep-dialog-panels:first-child - .bp3-dialog-step-container:first-child { - border-radius: 6px 0 0 0; -} -.bp3-multistep-dialog-panels:first-child .bp3-multistep-dialog-right-panel { - border-top-right-radius: 6px; -} -.bp3-multistep-dialog-left-panel { - display: flex; - flex: 1 1; - flex-direction: column; -} -.bp3-dark .bp3-multistep-dialog-left-panel { - background: #202b33; -} -.bp3-multistep-dialog-right-panel { - background-color: #f5f8fa; - border-left: 1px solid rgba(16, 22, 26, 0.15); - border-radius: 0 0 6px 0; - flex: 3 1; - min-width: 0; -} -.bp3-dark .bp3-multistep-dialog-right-panel { - background-color: #293742; - border-left: 1px solid rgba(16, 22, 26, 0.4); -} -.bp3-multistep-dialog-footer { - background-color: #fff; - border-radius: 0 0 6px 0; - border-top: 1px solid rgba(16, 22, 26, 0.15); - display: flex; - justify-content: space-between; - padding: 10px; -} -.bp3-dark .bp3-multistep-dialog-footer { - background: #30404d; - border-top: 1px solid rgba(16, 22, 26, 0.4); -} -.bp3-multistep-dialog-footer .bp3-dialog-footer-actions { - flex-grow: 1; -} -.bp3-dialog-step-container { - background-color: #f5f8fa; - border-bottom: 1px solid rgba(16, 22, 26, 0.15); -} -.bp3-dark .bp3-dialog-step-container { - background: #293742; - border-bottom: 1px solid rgba(16, 22, 26, 0.4); -} -.bp3-dialog-step-container.bp3-dialog-step-viewed { - background-color: #fff; -} -.bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed { - background: #30404d; -} -.bp3-dialog-step { - align-items: center; - background-color: #f5f8fa; - border-radius: 6px; - cursor: not-allowed; - display: flex; - margin: 4px; - padding: 6px 14px; -} -.bp3-dark .bp3-dialog-step { - background: #293742; -} -.bp3-dialog-step-viewed .bp3-dialog-step { - background-color: #fff; - cursor: pointer; -} -.bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step { - background: #30404d; -} -.bp3-dialog-step:hover { - background-color: #f5f8fa; -} -.bp3-dark .bp3-dialog-step:hover { - background: #293742; -} -.bp3-dialog-step-icon { - align-items: center; - background-color: rgba(92, 112, 128, 0.6); - border-radius: 50%; - color: #fff; - display: flex; - height: 25px; - justify-content: center; - width: 25px; -} -.bp3-dark .bp3-dialog-step-icon { - background-color: rgba(167, 182, 194, 0.6); -} -.bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon { - background-color: #2b95d6; -} -.bp3-dialog-step-viewed .bp3-dialog-step-icon { - background-color: #8a9ba8; -} -.bp3-dialog-step-title { - color: rgba(92, 112, 128, 0.6); - flex: 1 1; - padding-left: 10px; -} -.bp3-dark .bp3-dialog-step-title { - color: rgba(167, 182, 194, 0.6); -} -.bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title { - color: #2b95d6; -} -.bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title { - color: #182026; -} -.bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title { - color: #f5f8fa; -} -.bp3-drawer { - background: #fff; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), - 0 18px 46px 6px rgba(16, 22, 26, 0.2); - display: flex; - flex-direction: column; - margin: 0; - padding: 0; -} -.bp3-drawer:focus { - outline: 0; -} -.bp3-drawer.bp3-position-top { - height: 50%; - left: 0; - right: 0; - top: 0; -} -.bp3-drawer.bp3-position-top.bp3-overlay-appear, -.bp3-drawer.bp3-position-top.bp3-overlay-enter { - -webkit-transform: translateY(-100%); - transform: translateY(-100%); -} -.bp3-drawer.bp3-position-top.bp3-overlay-appear-active, -.bp3-drawer.bp3-position-top.bp3-overlay-enter-active { - -webkit-transform: translateY(0); - transform: translateY(0); - transition-delay: 0; - transition-duration: 0.2s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer.bp3-position-top.bp3-overlay-exit { - -webkit-transform: translateY(0); - transform: translateY(0); -} -.bp3-drawer.bp3-position-top.bp3-overlay-exit-active { - -webkit-transform: translateY(-100%); - transform: translateY(-100%); - transition-delay: 0; - transition-duration: 0.1s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer.bp3-position-bottom { - bottom: 0; - height: 50%; - left: 0; - right: 0; -} -.bp3-drawer.bp3-position-bottom.bp3-overlay-appear, -.bp3-drawer.bp3-position-bottom.bp3-overlay-enter { - -webkit-transform: translateY(100%); - transform: translateY(100%); -} -.bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active, -.bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active { - -webkit-transform: translateY(0); - transform: translateY(0); - transition-delay: 0; - transition-duration: 0.2s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer.bp3-position-bottom.bp3-overlay-exit { - -webkit-transform: translateY(0); - transform: translateY(0); -} -.bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active { - -webkit-transform: translateY(100%); - transform: translateY(100%); - transition-delay: 0; - transition-duration: 0.1s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer.bp3-position-left { - bottom: 0; - left: 0; - top: 0; - width: 50%; -} -.bp3-drawer.bp3-position-left.bp3-overlay-appear, -.bp3-drawer.bp3-position-left.bp3-overlay-enter { - -webkit-transform: translateX(-100%); - transform: translateX(-100%); -} -.bp3-drawer.bp3-position-left.bp3-overlay-appear-active, -.bp3-drawer.bp3-position-left.bp3-overlay-enter-active { - -webkit-transform: translateX(0); - transform: translateX(0); - transition-delay: 0; - transition-duration: 0.2s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer.bp3-position-left.bp3-overlay-exit { - -webkit-transform: translateX(0); - transform: translateX(0); -} -.bp3-drawer.bp3-position-left.bp3-overlay-exit-active { - -webkit-transform: translateX(-100%); - transform: translateX(-100%); - transition-delay: 0; - transition-duration: 0.1s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer.bp3-position-right { - bottom: 0; - right: 0; - top: 0; - width: 50%; -} -.bp3-drawer.bp3-position-right.bp3-overlay-appear, -.bp3-drawer.bp3-position-right.bp3-overlay-enter { - -webkit-transform: translateX(100%); - transform: translateX(100%); -} -.bp3-drawer.bp3-position-right.bp3-overlay-appear-active, -.bp3-drawer.bp3-position-right.bp3-overlay-enter-active { - -webkit-transform: translateX(0); - transform: translateX(0); - transition-delay: 0; - transition-duration: 0.2s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer.bp3-position-right.bp3-overlay-exit { - -webkit-transform: translateX(0); - transform: translateX(0); -} -.bp3-drawer.bp3-position-right.bp3-overlay-exit-active { - -webkit-transform: translateX(100%); - transform: translateX(100%); - transition-delay: 0; - transition-duration: 0.1s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(.bp3-position-right):not(.bp3-vertical) { - bottom: 0; - right: 0; - top: 0; - width: 50%; -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(.bp3-position-right):not(.bp3-vertical).bp3-overlay-appear, -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(.bp3-position-right):not(.bp3-vertical).bp3-overlay-enter { - -webkit-transform: translateX(100%); - transform: translateX(100%); -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(.bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active, -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(.bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active { - -webkit-transform: translateX(0); - transform: translateX(0); - transition-delay: 0; - transition-duration: 0.2s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(.bp3-position-right):not(.bp3-vertical).bp3-overlay-exit { - -webkit-transform: translateX(0); - transform: translateX(0); -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(.bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active { - -webkit-transform: translateX(100%); - transform: translateX(100%); - transition-delay: 0; - transition-duration: 0.1s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(.bp3-position-right).bp3-vertical { - bottom: 0; - height: 50%; - left: 0; - right: 0; -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(.bp3-position-right).bp3-vertical.bp3-overlay-appear, -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(.bp3-position-right).bp3-vertical.bp3-overlay-enter { - -webkit-transform: translateY(100%); - transform: translateY(100%); -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(.bp3-position-right).bp3-vertical.bp3-overlay-appear-active, -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(.bp3-position-right).bp3-vertical.bp3-overlay-enter-active { - -webkit-transform: translateY(0); - transform: translateY(0); - transition-delay: 0; - transition-duration: 0.2s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(.bp3-position-right).bp3-vertical.bp3-overlay-exit { - -webkit-transform: translateY(0); - transform: translateY(0); -} -.bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(.bp3-position-right).bp3-vertical.bp3-overlay-exit-active { - -webkit-transform: translateY(100%); - transform: translateY(100%); - transition-delay: 0; - transition-duration: 0.1s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-dark .bp3-drawer, -.bp3-drawer.bp3-dark { - background: #30404d; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), - 0 18px 46px 6px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} -.bp3-drawer-header { - align-items: center; - border-radius: 0; - box-shadow: 0 1px 0 rgba(16, 22, 26, 0.15); - display: flex; - flex: 0 0 auto; - min-height: 40px; - padding: 5px 5px 5px 20px; - position: relative; -} -.bp3-drawer-header .bp3-icon, -.bp3-drawer-header .bp3-icon-large { - color: #5c7080; - flex: 0 0 auto; - margin-right: 10px; -} -.bp3-drawer-header .bp3-heading { - word-wrap: normal; - flex: 1 1 auto; - line-height: inherit; - margin: 0; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.bp3-drawer-header .bp3-heading:last-child { - margin-right: 20px; -} -.bp3-dark .bp3-drawer-header { - box-shadow: 0 1px 0 rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-drawer-header .bp3-icon, -.bp3-dark .bp3-drawer-header .bp3-icon-large { - color: #a7b6c2; -} -.bp3-drawer-body { - flex: 1 1 auto; - line-height: 18px; - overflow: auto; -} -.bp3-drawer-footer { - box-shadow: inset 0 1px 0 rgba(16, 22, 26, 0.15); - flex: 0 0 auto; - padding: 10px 20px; - position: relative; -} -.bp3-dark .bp3-drawer-footer { - box-shadow: inset 0 1px 0 rgba(16, 22, 26, 0.4); -} -.bp3-editable-text { - cursor: text; - display: inline-block; - max-width: 100%; - position: relative; - vertical-align: top; - white-space: nowrap; -} -.bp3-editable-text:before { - border-radius: 3px; - bottom: -3px; - content: ""; - left: -3px; - position: absolute; - right: -3px; - top: -3px; - transition: background-color 0.1s cubic-bezier(0.4, 1, 0.75, 0.9), - box-shadow 0.1s cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-editable-text:hover:before { - box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(16, 22, 26, 0.15); -} -.bp3-editable-text.bp3-editable-text-editing:before { - background-color: #fff; - box-shadow: 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-editable-text.bp3-disabled:before { - box-shadow: none; -} -.bp3-editable-text.bp3-intent-primary .bp3-editable-text-content, -.bp3-editable-text.bp3-intent-primary .bp3-editable-text-input { - color: #137cbd; -} -.bp3-editable-text.bp3-intent-primary:hover:before { - box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(19, 124, 189, 0.4); -} -.bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing:before { - box-shadow: 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-editable-text.bp3-intent-success .bp3-editable-text-content, -.bp3-editable-text.bp3-intent-success .bp3-editable-text-input { - color: #0f9960; -} -.bp3-editable-text.bp3-intent-success:hover:before { - box-shadow: 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), - inset 0 0 0 1px rgba(15, 153, 96, 0.4); -} -.bp3-editable-text.bp3-intent-success.bp3-editable-text-editing:before { - box-shadow: 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-editable-text.bp3-intent-warning .bp3-editable-text-content, -.bp3-editable-text.bp3-intent-warning .bp3-editable-text-input { - color: #d9822b; -} -.bp3-editable-text.bp3-intent-warning:hover:before { - box-shadow: 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), - inset 0 0 0 1px rgba(217, 130, 43, 0.4); -} -.bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing:before { - box-shadow: 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-editable-text.bp3-intent-danger .bp3-editable-text-content, -.bp3-editable-text.bp3-intent-danger .bp3-editable-text-input { - color: #db3737; -} -.bp3-editable-text.bp3-intent-danger:hover:before { - box-shadow: 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), - inset 0 0 0 1px rgba(219, 55, 55, 0.4); -} -.bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing:before { - box-shadow: 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-editable-text:hover:before { - box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px hsla(0, 0%, 100%, 0.15); -} -.bp3-dark .bp3-editable-text.bp3-editable-text-editing:before { - background-color: rgba(16, 22, 26, 0.3); - box-shadow: 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-editable-text.bp3-disabled:before { - box-shadow: none; -} -.bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content { - color: #48aff0; -} -.bp3-dark .bp3-editable-text.bp3-intent-primary:hover:before { - box-shadow: 0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), - inset 0 0 0 1px rgba(72, 175, 240, 0.4); -} -.bp3-dark - .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing:before { - box-shadow: 0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content { - color: #3dcc91; -} -.bp3-dark .bp3-editable-text.bp3-intent-success:hover:before { - box-shadow: 0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), - inset 0 0 0 1px rgba(61, 204, 145, 0.4); -} -.bp3-dark - .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing:before { - box-shadow: 0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content { - color: #ffb366; -} -.bp3-dark .bp3-editable-text.bp3-intent-warning:hover:before { - box-shadow: 0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), - inset 0 0 0 1px rgba(255, 179, 102, 0.4); -} -.bp3-dark - .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing:before { - box-shadow: 0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content { - color: #ff7373; -} -.bp3-dark .bp3-editable-text.bp3-intent-danger:hover:before { - box-shadow: 0 0 0 0 hsla(0, 100%, 73%, 0), 0 0 0 0 hsla(0, 100%, 73%, 0), - inset 0 0 0 1px hsla(0, 100%, 73%, 0.4); -} -.bp3-dark - .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing:before { - box-shadow: 0 0 0 1px #ff7373, 0 0 0 3px hsla(0, 100%, 73%, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-editable-text-content, -.bp3-editable-text-input { - color: inherit; - display: inherit; - font: inherit; - letter-spacing: inherit; - max-width: inherit; - min-width: inherit; - position: relative; - resize: none; - text-transform: inherit; - vertical-align: top; -} -.bp3-editable-text-input { - background: none; - border: none; - box-shadow: none; - padding: 0; - white-space: pre-wrap; - width: 100%; -} -.bp3-editable-text-input::-webkit-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-editable-text-input:-ms-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-editable-text-input::placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-editable-text-input:focus { - outline: none; -} -.bp3-editable-text-input::-ms-clear { - display: none; -} -.bp3-editable-text-content { - overflow: hidden; - padding-right: 2px; - text-overflow: ellipsis; - white-space: pre; -} -.bp3-editable-text-editing > .bp3-editable-text-content { - left: 0; - position: absolute; - visibility: hidden; -} -.bp3-editable-text-placeholder > .bp3-editable-text-content { - color: rgba(92, 112, 128, 0.6); -} -.bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content { - color: rgba(167, 182, 194, 0.6); -} -.bp3-editable-text.bp3-multiline { - display: block; -} -.bp3-editable-text.bp3-multiline .bp3-editable-text-content { - word-wrap: break-word; - overflow: auto; - white-space: pre-wrap; -} -.bp3-divider { - border-bottom: 1px solid rgba(16, 22, 26, 0.15); - border-right: 1px solid rgba(16, 22, 26, 0.15); - margin: 5px; -} -.bp3-dark .bp3-divider { - border-color: rgba(16, 22, 26, 0.4); -} -.bp3-control-group { - align-items: stretch; - display: flex; - flex-direction: row; - -webkit-transform: translateZ(0); - transform: translateZ(0); -} -.bp3-control-group > * { - flex-grow: 0; - flex-shrink: 0; -} -.bp3-control-group > .bp3-fill { - flex-grow: 1; - flex-shrink: 1; -} -.bp3-control-group .bp3-button, -.bp3-control-group .bp3-html-select, -.bp3-control-group .bp3-input, -.bp3-control-group .bp3-select { - position: relative; -} -.bp3-control-group .bp3-input { - border-radius: inherit; - z-index: 2; -} -.bp3-control-group .bp3-input:focus { - border-radius: 3px; - z-index: 14; -} -.bp3-control-group .bp3-input[class*="bp3-intent"] { - z-index: 13; -} -.bp3-control-group .bp3-input[class*="bp3-intent"]:focus { - z-index: 15; -} -.bp3-control-group .bp3-input.bp3-disabled, -.bp3-control-group .bp3-input:disabled, -.bp3-control-group .bp3-input[readonly] { - z-index: 1; -} -.bp3-control-group .bp3-input-group[class*="bp3-intent"] .bp3-input { - z-index: 13; -} -.bp3-control-group .bp3-input-group[class*="bp3-intent"] .bp3-input:focus { - z-index: 15; -} -.bp3-control-group .bp3-button, -.bp3-control-group .bp3-html-select select, -.bp3-control-group .bp3-select select { - border-radius: inherit; - -webkit-transform: translateZ(0); - transform: translateZ(0); - z-index: 4; -} -.bp3-control-group .bp3-button:focus, -.bp3-control-group .bp3-html-select select:focus, -.bp3-control-group .bp3-select select:focus { - z-index: 5; -} -.bp3-control-group .bp3-button:hover, -.bp3-control-group .bp3-html-select select:hover, -.bp3-control-group .bp3-select select:hover { - z-index: 6; -} -.bp3-control-group .bp3-button:active, -.bp3-control-group .bp3-html-select select:active, -.bp3-control-group .bp3-select select:active { - z-index: 7; -} -.bp3-control-group .bp3-button.bp3-disabled, -.bp3-control-group .bp3-button:disabled, -.bp3-control-group .bp3-button[readonly], -.bp3-control-group .bp3-html-select select.bp3-disabled, -.bp3-control-group .bp3-html-select select:disabled, -.bp3-control-group .bp3-html-select select[readonly], -.bp3-control-group .bp3-select select.bp3-disabled, -.bp3-control-group .bp3-select select:disabled, -.bp3-control-group .bp3-select select[readonly] { - z-index: 3; -} -.bp3-control-group .bp3-button[class*="bp3-intent"], -.bp3-control-group .bp3-html-select select[class*="bp3-intent"], -.bp3-control-group .bp3-select select[class*="bp3-intent"] { - z-index: 9; -} -.bp3-control-group .bp3-button[class*="bp3-intent"]:focus, -.bp3-control-group .bp3-html-select select[class*="bp3-intent"]:focus, -.bp3-control-group .bp3-select select[class*="bp3-intent"]:focus { - z-index: 10; -} -.bp3-control-group .bp3-button[class*="bp3-intent"]:hover, -.bp3-control-group .bp3-html-select select[class*="bp3-intent"]:hover, -.bp3-control-group .bp3-select select[class*="bp3-intent"]:hover { - z-index: 11; -} -.bp3-control-group .bp3-button[class*="bp3-intent"]:active, -.bp3-control-group .bp3-html-select select[class*="bp3-intent"]:active, -.bp3-control-group .bp3-select select[class*="bp3-intent"]:active { - z-index: 12; -} -.bp3-control-group .bp3-button[class*="bp3-intent"].bp3-disabled, -.bp3-control-group .bp3-button[class*="bp3-intent"]:disabled, -.bp3-control-group .bp3-button[class*="bp3-intent"][readonly], -.bp3-control-group .bp3-html-select select[class*="bp3-intent"].bp3-disabled, -.bp3-control-group .bp3-html-select select[class*="bp3-intent"]:disabled, -.bp3-control-group .bp3-html-select select[class*="bp3-intent"][readonly], -.bp3-control-group .bp3-select select[class*="bp3-intent"].bp3-disabled, -.bp3-control-group .bp3-select select[class*="bp3-intent"]:disabled, -.bp3-control-group .bp3-select select[class*="bp3-intent"][readonly] { - z-index: 8; -} -.bp3-control-group .bp3-input-group > .bp3-button, -.bp3-control-group .bp3-input-group > .bp3-icon, -.bp3-control-group .bp3-input-group > .bp3-input-action, -.bp3-control-group .bp3-input-group > .bp3-input-left-container { - z-index: 16; -} -.bp3-control-group .bp3-html-select:after, -.bp3-control-group .bp3-html-select > .bp3-icon, -.bp3-control-group .bp3-select:after, -.bp3-control-group .bp3-select > .bp3-icon { - z-index: 17; -} -.bp3-control-group .bp3-select:focus-within { - z-index: 5; -} -.bp3-control-group:not(.bp3-vertical) > :not(.bp3-divider) { - margin-right: -1px; -} -.bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child) { - margin-left: 6px; -} -.bp3-dark .bp3-control-group:not(.bp3-vertical) > :not(.bp3-divider) { - margin-right: 0; -} -.bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button { - margin-left: 1px; -} -.bp3-control-group .bp3-popover-target, -.bp3-control-group .bp3-popover-wrapper { - border-radius: inherit; -} -.bp3-control-group > :first-child { - border-radius: 3px 0 0 3px; -} -.bp3-control-group > :last-child { - border-radius: 0 3px 3px 0; - margin-right: 0; -} -.bp3-control-group > :only-child { - border-radius: 3px; - margin-right: 0; -} -.bp3-control-group .bp3-input-group .bp3-button { - border-radius: 3px; -} -.bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.bp3-control-group.bp3-fill { - width: 100%; -} -.bp3-control-group.bp3-fill > :not(.bp3-fixed), -.bp3-control-group > .bp3-fill { - flex: 1 1 auto; -} -.bp3-control-group.bp3-vertical { - flex-direction: column; -} -.bp3-control-group.bp3-vertical > * { - margin-top: -1px; -} -.bp3-control-group.bp3-vertical > :first-child { - border-radius: 3px 3px 0 0; - margin-top: 0; -} -.bp3-control-group.bp3-vertical > :last-child { - border-radius: 0 0 3px 3px; -} -.bp3-control { - cursor: pointer; - display: block; - margin-bottom: 10px; - position: relative; - text-transform: none; -} -.bp3-control input:checked ~ .bp3-control-indicator { - background-color: #137cbd; - background-image: linear-gradient( - 180deg, - hsla(0, 0%, 100%, 0.1), - hsla(0, 0%, 100%, 0) - ); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - color: #fff; -} -.bp3-control:hover input:checked ~ .bp3-control-indicator { - background-color: #106ba3; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); -} -.bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator { - background: #0e5a8a; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-control input:disabled:checked ~ .bp3-control-indicator { - background: rgba(19, 124, 189, 0.5); - box-shadow: none; -} -.bp3-dark .bp3-control input:checked ~ .bp3-control-indicator { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator { - background-color: #106ba3; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark - .bp3-control - input:not(:disabled):active:checked - ~ .bp3-control-indicator { - background-color: #0e5a8a; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator { - background: rgba(14, 90, 138, 0.5); - box-shadow: none; -} -.bp3-control:not(.bp3-align-right) { - padding-left: 26px; -} -.bp3-control:not(.bp3-align-right) .bp3-control-indicator { - margin-left: -26px; -} -.bp3-control.bp3-align-right { - padding-right: 26px; -} -.bp3-control.bp3-align-right .bp3-control-indicator { - margin-right: -26px; -} -.bp3-control.bp3-disabled { - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-control.bp3-inline { - display: inline-block; - margin-right: 20px; -} -.bp3-control input { - left: 0; - opacity: 0; - position: absolute; - top: 0; - z-index: -1; -} -.bp3-control .bp3-control-indicator { - background-clip: padding-box; - background-color: #f5f8fa; - background-image: linear-gradient( - 180deg, - hsla(0, 0%, 100%, 0.8), - hsla(0, 0%, 100%, 0) - ); - border: none; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - cursor: pointer; - display: inline-block; - font-size: 16px; - height: 1em; - margin-right: 10px; - margin-top: -3px; - position: relative; - -webkit-user-select: none; - -ms-user-select: none; - user-select: none; - vertical-align: middle; - width: 1em; -} -.bp3-control .bp3-control-indicator:before { - content: ""; - display: block; - height: 1em; - width: 1em; -} -.bp3-control:hover .bp3-control-indicator { - background-color: #ebf1f5; -} -.bp3-control input:not(:disabled):active ~ .bp3-control-indicator { - background: #d8e1e8; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-control input:disabled ~ .bp3-control-indicator { - background: rgba(206, 217, 224, 0.5); - box-shadow: none; - cursor: not-allowed; -} -.bp3-control input:focus ~ .bp3-control-indicator { - -moz-outline-radius: 6px; - outline: 2px auto rgba(19, 124, 189, 0.6); - outline-offset: 2px; -} -.bp3-control.bp3-align-right .bp3-control-indicator { - float: right; - margin-left: 10px; - margin-top: 1px; -} -.bp3-control.bp3-large { - font-size: 16px; -} -.bp3-control.bp3-large:not(.bp3-align-right) { - padding-left: 30px; -} -.bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator { - margin-left: -30px; -} -.bp3-control.bp3-large.bp3-align-right { - padding-right: 30px; -} -.bp3-control.bp3-large.bp3-align-right .bp3-control-indicator { - margin-right: -30px; -} -.bp3-control.bp3-large .bp3-control-indicator { - font-size: 20px; -} -.bp3-control.bp3-large.bp3-align-right .bp3-control-indicator { - margin-top: 0; -} -.bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator { - background-color: #137cbd; - background-image: linear-gradient( - 180deg, - hsla(0, 0%, 100%, 0.1), - hsla(0, 0%, 100%, 0) - ); - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); - color: #fff; -} -.bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator { - background-color: #106ba3; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 -1px 0 rgba(16, 22, 26, 0.2); -} -.bp3-control.bp3-checkbox - input:not(:disabled):active:indeterminate - ~ .bp3-control-indicator { - background: #0e5a8a; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-control.bp3-checkbox - input:disabled:indeterminate - ~ .bp3-control-indicator { - background: rgba(19, 124, 189, 0.5); - box-shadow: none; -} -.bp3-dark - .bp3-control.bp3-checkbox - input:indeterminate - ~ .bp3-control-indicator { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark - .bp3-control.bp3-checkbox:hover - input:indeterminate - ~ .bp3-control-indicator { - background-color: #106ba3; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark - .bp3-control.bp3-checkbox - input:not(:disabled):active:indeterminate - ~ .bp3-control-indicator { - background-color: #0e5a8a; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-dark - .bp3-control.bp3-checkbox - input:disabled:indeterminate - ~ .bp3-control-indicator { - background: rgba(14, 90, 138, 0.5); - box-shadow: none; -} -.bp3-control.bp3-checkbox .bp3-control-indicator { - border-radius: 3px; -} -.bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator:before { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 0 0-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0 0 12 5z' fill='%23fff'/%3E%3C/svg%3E"); -} -.bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator:before { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='%23fff'/%3E%3C/svg%3E"); -} -.bp3-control.bp3-radio .bp3-control-indicator { - border-radius: 50%; -} -.bp3-control.bp3-radio input:checked ~ .bp3-control-indicator:before { - background-image: radial-gradient(#fff, #fff 28%, transparent 32%); -} -.bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator:before { - opacity: 0.5; -} -.bp3-control.bp3-radio input:focus ~ .bp3-control-indicator { - -moz-outline-radius: 16px; -} -.bp3-control.bp3-switch input ~ .bp3-control-indicator { - background: rgba(167, 182, 194, 0.5); -} -.bp3-control.bp3-switch:hover input ~ .bp3-control-indicator { - background: rgba(115, 134, 148, 0.5); -} -.bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator { - background: rgba(92, 112, 128, 0.5); -} -.bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator { - background: rgba(206, 217, 224, 0.5); -} -.bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator:before { - background: hsla(0, 0%, 100%, 0.8); -} -.bp3-control.bp3-switch input:checked ~ .bp3-control-indicator { - background: #137cbd; -} -.bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator { - background: #106ba3; -} -.bp3-control.bp3-switch - input:checked:not(:disabled):active - ~ .bp3-control-indicator { - background: #0e5a8a; -} -.bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator { - background: rgba(19, 124, 189, 0.5); -} -.bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator:before { - background: hsla(0, 0%, 100%, 0.8); -} -.bp3-control.bp3-switch:not(.bp3-align-right) { - padding-left: 38px; -} -.bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator { - margin-left: -38px; -} -.bp3-control.bp3-switch.bp3-align-right { - padding-right: 38px; -} -.bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator { - margin-right: -38px; -} -.bp3-control.bp3-switch .bp3-control-indicator { - border: none; - border-radius: 1.75em; - box-shadow: none !important; - min-width: 1.75em; - transition: background-color 0.1s cubic-bezier(0.4, 1, 0.75, 0.9); - width: auto; -} -.bp3-control.bp3-switch .bp3-control-indicator:before { - background: #fff; - border-radius: 50%; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2); - height: calc(1em - 4px); - left: 0; - margin: 2px; - position: absolute; - transition: left 0.1s cubic-bezier(0.4, 1, 0.75, 0.9); - width: calc(1em - 4px); -} -.bp3-control.bp3-switch input:checked ~ .bp3-control-indicator:before { - left: calc(100% - 1em); -} -.bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) { - padding-left: 45px; -} -.bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator { - margin-left: -45px; -} -.bp3-control.bp3-switch.bp3-large.bp3-align-right { - padding-right: 45px; -} -.bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator { - margin-right: -45px; -} -.bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator { - background: rgba(16, 22, 26, 0.5); -} -.bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator { - background: rgba(16, 22, 26, 0.7); -} -.bp3-dark - .bp3-control.bp3-switch - input:not(:disabled):active - ~ .bp3-control-indicator { - background: rgba(16, 22, 26, 0.9); -} -.bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator { - background: rgba(57, 75, 89, 0.5); -} -.bp3-dark - .bp3-control.bp3-switch - input:disabled - ~ .bp3-control-indicator:before { - background: rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator { - background: #137cbd; -} -.bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator { - background: #106ba3; -} -.bp3-dark - .bp3-control.bp3-switch - input:checked:not(:disabled):active - ~ .bp3-control-indicator { - background: #0e5a8a; -} -.bp3-dark - .bp3-control.bp3-switch - input:checked:disabled - ~ .bp3-control-indicator { - background: rgba(14, 90, 138, 0.5); -} -.bp3-dark - .bp3-control.bp3-switch - input:checked:disabled - ~ .bp3-control-indicator:before { - background: rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-control.bp3-switch .bp3-control-indicator:before { - background: #394b59; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark - .bp3-control.bp3-switch - input:checked - ~ .bp3-control-indicator:before { - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-control.bp3-switch .bp3-switch-inner-text { - font-size: 0.7em; - text-align: center; -} -.bp3-control.bp3-switch .bp3-control-indicator-child:first-child { - line-height: 0; - margin-left: 0.5em; - margin-right: 1.2em; - visibility: hidden; -} -.bp3-control.bp3-switch .bp3-control-indicator-child:last-child { - line-height: 1em; - margin-left: 1.2em; - margin-right: 0.5em; - visibility: visible; -} -.bp3-control.bp3-switch - input:checked - ~ .bp3-control-indicator - .bp3-control-indicator-child:first-child { - line-height: 1em; - visibility: visible; -} -.bp3-control.bp3-switch - input:checked - ~ .bp3-control-indicator - .bp3-control-indicator-child:last-child { - line-height: 0; - visibility: hidden; -} -.bp3-dark .bp3-control { - color: #f5f8fa; -} -.bp3-dark .bp3-control.bp3-disabled { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-control .bp3-control-indicator { - background-color: #394b59; - background-image: linear-gradient( - 180deg, - hsla(0, 0%, 100%, 0.05), - hsla(0, 0%, 100%, 0) - ); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-control:hover .bp3-control-indicator { - background-color: #30404d; -} -.bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator { - background: #202b33; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator { - background: rgba(57, 75, 89, 0.5); - box-shadow: none; - cursor: not-allowed; -} -.bp3-dark - .bp3-control.bp3-checkbox - input:disabled:checked - ~ .bp3-control-indicator, -.bp3-dark - .bp3-control.bp3-checkbox - input:disabled:indeterminate - ~ .bp3-control-indicator { - color: rgba(167, 182, 194, 0.6); -} -.bp3-file-input { - cursor: pointer; - display: inline-block; - height: 30px; - position: relative; -} -.bp3-file-input input { - margin: 0; - min-width: 200px; - opacity: 0; -} -.bp3-file-input input.bp3-disabled + .bp3-file-upload-input, -.bp3-file-input input:disabled + .bp3-file-upload-input { - background: rgba(206, 217, 224, 0.5); - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; - resize: none; -} -.bp3-file-input input.bp3-disabled + .bp3-file-upload-input:after, -.bp3-file-input input:disabled + .bp3-file-upload-input:after { - background-color: rgba(206, 217, 224, 0.5); - background-image: none; - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; - outline: none; -} -.bp3-file-input input.bp3-disabled + .bp3-file-upload-input:after.bp3-active, -.bp3-file-input - input.bp3-disabled - + .bp3-file-upload-input:after.bp3-active:hover, -.bp3-file-input input:disabled + .bp3-file-upload-input:after.bp3-active, -.bp3-file-input input:disabled + .bp3-file-upload-input:after.bp3-active:hover { - background: rgba(206, 217, 224, 0.7); -} -.bp3-dark .bp3-file-input input.bp3-disabled + .bp3-file-upload-input, -.bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input { - background: rgba(57, 75, 89, 0.5); - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-file-input input.bp3-disabled + .bp3-file-upload-input:after, -.bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input:after { - background-color: rgba(57, 75, 89, 0.5); - background-image: none; - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark - .bp3-file-input - input.bp3-disabled - + .bp3-file-upload-input:after.bp3-active, -.bp3-dark - .bp3-file-input - input:disabled - + .bp3-file-upload-input:after.bp3-active { - background: rgba(57, 75, 89, 0.7); -} -.bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input { - color: #182026; -} -.bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input { - color: #f5f8fa; -} -.bp3-file-input.bp3-fill { - width: 100%; -} -.bp3-file-input.bp3-large, -.bp3-large .bp3-file-input { - height: 40px; -} -.bp3-file-input .bp3-file-upload-input-custom-text:after { - content: attr(bp3-button-text); -} -.bp3-file-upload-input { - word-wrap: normal; - -webkit-appearance: none; - appearance: none; - background: #fff; - border: none; - border-radius: 3px; - box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - color: #182026; - color: rgba(92, 112, 128, 0.6); - font-size: 14px; - font-weight: 400; - height: 30px; - left: 0; - line-height: 30px; - outline: none; - overflow: hidden; - padding: 0 80px 0 10px; - position: absolute; - right: 0; - text-overflow: ellipsis; - top: 0; - transition: box-shadow 0.1s cubic-bezier(0.4, 1, 0.75, 0.9); - -webkit-user-select: none; - -ms-user-select: none; - user-select: none; - vertical-align: middle; - white-space: nowrap; -} -.bp3-file-upload-input::-webkit-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-file-upload-input:-ms-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-file-upload-input::placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-file-upload-input.bp3-active, -.bp3-file-upload-input:focus { - box-shadow: 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-file-upload-input.bp3-round, -.bp3-file-upload-input[type="search"] { - border-radius: 30px; - box-sizing: border-box; - padding-left: 10px; -} -.bp3-file-upload-input[readonly] { - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.15); -} -.bp3-file-upload-input.bp3-disabled, -.bp3-file-upload-input:disabled { - background: rgba(206, 217, 224, 0.5); - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; - resize: none; -} -.bp3-file-upload-input:after { - word-wrap: normal; - background-color: #f5f8fa; - background-image: linear-gradient( - 180deg, - hsla(0, 0%, 100%, 0.8), - hsla(0, 0%, 100%, 0) - ); - border-radius: 3px; - color: #182026; - content: "Browse"; - line-height: 24px; - margin: 3px; - min-height: 24px; - min-width: 24px; - overflow: hidden; - position: absolute; - right: 0; - text-align: center; - text-overflow: ellipsis; - top: 0; - white-space: nowrap; - width: 70px; -} -.bp3-file-upload-input:after:hover { - background-clip: padding-box; - background-color: #ebf1f5; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); -} -.bp3-file-upload-input:after.bp3-active, -.bp3-file-upload-input:after:active { - background-color: #d8e1e8; - background-image: none; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-file-upload-input:after.bp3-disabled, -.bp3-file-upload-input:after:disabled { - background-color: rgba(206, 217, 224, 0.5); - background-image: none; - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; - outline: none; -} -.bp3-file-upload-input:after.bp3-disabled.bp3-active, -.bp3-file-upload-input:after.bp3-disabled.bp3-active:hover, -.bp3-file-upload-input:after:disabled.bp3-active, -.bp3-file-upload-input:after:disabled.bp3-active:hover { - background: rgba(206, 217, 224, 0.7); -} -.bp3-file-upload-input:hover:after { - background-clip: padding-box; - background-color: #ebf1f5; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); -} -.bp3-file-upload-input:active:after { - background-color: #d8e1e8; - background-image: none; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-large .bp3-file-upload-input { - font-size: 16px; - height: 40px; - line-height: 40px; - padding-right: 95px; -} -.bp3-large .bp3-file-upload-input.bp3-round, -.bp3-large .bp3-file-upload-input[type="search"] { - padding: 0 15px; -} -.bp3-large .bp3-file-upload-input:after { - line-height: 30px; - margin: 5px; - min-height: 30px; - min-width: 30px; - width: 85px; -} -.bp3-dark .bp3-file-upload-input { - background: rgba(16, 22, 26, 0.3); - box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - color: #f5f8fa; - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-file-upload-input::-webkit-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-file-upload-input:-ms-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-file-upload-input::placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-file-upload-input:focus { - box-shadow: 0 0 0 1px #137cbd, 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-file-upload-input[readonly] { - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-file-upload-input.bp3-disabled, -.bp3-dark .bp3-file-upload-input:disabled { - background: rgba(57, 75, 89, 0.5); - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-file-upload-input:after { - background-color: #394b59; - background-image: linear-gradient( - 180deg, - hsla(0, 0%, 100%, 0.05), - hsla(0, 0%, 100%, 0) - ); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} -.bp3-dark .bp3-file-upload-input:after.bp3-active, -.bp3-dark .bp3-file-upload-input:after:active, -.bp3-dark .bp3-file-upload-input:after:hover { - color: #f5f8fa; -} -.bp3-dark .bp3-file-upload-input:after:hover { - background-color: #30404d; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-file-upload-input:after.bp3-active, -.bp3-dark .bp3-file-upload-input:after:active { - background-color: #202b33; - background-image: none; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-file-upload-input:after.bp3-disabled, -.bp3-dark .bp3-file-upload-input:after:disabled { - background-color: rgba(57, 75, 89, 0.5); - background-image: none; - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-file-upload-input:after.bp3-disabled.bp3-active, -.bp3-dark .bp3-file-upload-input:after:disabled.bp3-active { - background: rgba(57, 75, 89, 0.7); -} -.bp3-dark .bp3-file-upload-input:after .bp3-button-spinner .bp3-spinner-head { - stroke: #8a9ba8; - background: rgba(16, 22, 26, 0.5); -} -.bp3-dark .bp3-file-upload-input:hover:after { - background-color: #30404d; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-file-upload-input:active:after { - background-color: #202b33; - background-image: none; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-file-upload-input:after { - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); -} -.bp3-form-group { - display: flex; - flex-direction: column; - margin: 0 0 15px; -} -.bp3-form-group label.bp3-label { - margin-bottom: 5px; -} -.bp3-form-group .bp3-control { - margin-top: 7px; -} -.bp3-form-group .bp3-form-group-sub-label, -.bp3-form-group .bp3-form-helper-text { - color: #5c7080; - font-size: 12px; -} -.bp3-form-group .bp3-form-group-sub-label { - margin-bottom: 5px; -} -.bp3-form-group .bp3-form-helper-text { - margin-top: 5px; -} -.bp3-form-group.bp3-intent-primary .bp3-form-group-sub-label, -.bp3-form-group.bp3-intent-primary .bp3-form-helper-text { - color: #106ba3; -} -.bp3-form-group.bp3-intent-success .bp3-form-group-sub-label, -.bp3-form-group.bp3-intent-success .bp3-form-helper-text { - color: #0d8050; -} -.bp3-form-group.bp3-intent-warning .bp3-form-group-sub-label, -.bp3-form-group.bp3-intent-warning .bp3-form-helper-text { - color: #bf7326; -} -.bp3-form-group.bp3-intent-danger .bp3-form-group-sub-label, -.bp3-form-group.bp3-intent-danger .bp3-form-helper-text { - color: #c23030; -} -.bp3-form-group.bp3-inline { - align-items: flex-start; - flex-direction: row; -} -.bp3-form-group.bp3-inline.bp3-large label.bp3-label { - line-height: 40px; - margin: 0 10px 0 0; -} -.bp3-form-group.bp3-inline label.bp3-label { - line-height: 30px; - margin: 0 10px 0 0; -} -.bp3-form-group.bp3-disabled .bp3-form-group-sub-label, -.bp3-form-group.bp3-disabled .bp3-form-helper-text, -.bp3-form-group.bp3-disabled .bp3-label, -.bp3-form-group.bp3-disabled .bp3-text-muted { - color: rgba(92, 112, 128, 0.6) !important; -} -.bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-group-sub-label, -.bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text { - color: #48aff0; -} -.bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-group-sub-label, -.bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text { - color: #3dcc91; -} -.bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-group-sub-label, -.bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text { - color: #ffb366; -} -.bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-group-sub-label, -.bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text { - color: #ff7373; -} -.bp3-dark .bp3-form-group .bp3-form-helper-text { - color: #a7b6c2; -} -.bp3-dark .bp3-form-group.bp3-disabled .bp3-form-group-sub-label, -.bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text, -.bp3-dark .bp3-form-group.bp3-disabled .bp3-label, -.bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted { - color: rgba(167, 182, 194, 0.6) !important; -} -.bp3-input-group { - display: block; - position: relative; -} -.bp3-input-group .bp3-input { - position: relative; - width: 100%; -} -.bp3-input-group .bp3-input:not(:first-child) { - padding-left: 30px; -} -.bp3-input-group .bp3-input:not(:last-child) { - padding-right: 30px; -} -.bp3-input-group .bp3-input-action, -.bp3-input-group > .bp3-button, -.bp3-input-group > .bp3-icon, -.bp3-input-group > .bp3-input-left-container { - position: absolute; - top: 0; -} -.bp3-input-group .bp3-input-action:first-child, -.bp3-input-group > .bp3-button:first-child, -.bp3-input-group > .bp3-icon:first-child, -.bp3-input-group > .bp3-input-left-container:first-child { - left: 0; -} -.bp3-input-group .bp3-input-action:last-child, -.bp3-input-group > .bp3-button:last-child, -.bp3-input-group > .bp3-icon:last-child, -.bp3-input-group > .bp3-input-left-container:last-child { - right: 0; -} -.bp3-input-group .bp3-button { - margin: 3px; - min-height: 24px; - min-width: 24px; - padding: 0 7px; -} -.bp3-input-group .bp3-button:empty { - padding: 0; -} -.bp3-input-group > .bp3-icon, -.bp3-input-group > .bp3-input-left-container { - z-index: 1; -} -.bp3-input-group > .bp3-icon, -.bp3-input-group > .bp3-input-left-container > .bp3-icon { - color: #5c7080; -} -.bp3-input-group > .bp3-icon:empty, -.bp3-input-group > .bp3-input-left-container > .bp3-icon:empty { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: Icons16, sans-serif; - font-size: 16px; - font-style: normal; - font-weight: 400; - line-height: 1; -} -.bp3-input-group .bp3-input-action > .bp3-spinner, -.bp3-input-group > .bp3-icon, -.bp3-input-group > .bp3-input-left-container > .bp3-icon { - margin: 7px; -} -.bp3-input-group .bp3-tag { - margin: 5px; -} -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-button.bp3-minimal:not(:hover):not(:focus), -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:not(:hover):not(:focus) { - color: #5c7080; -} -.bp3-dark - .bp3-input-group - .bp3-input:not(:focus) - + .bp3-button.bp3-minimal:not(:hover):not(:focus), -.bp3-dark - .bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:not(:hover):not(:focus) { - color: #a7b6c2; -} -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-button.bp3-minimal:not(:hover):not(:focus) - .bp3-icon, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-button.bp3-minimal:not(:hover):not(:focus) - .bp3-icon-large, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-button.bp3-minimal:not(:hover):not(:focus) - .bp3-icon-standard, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:not(:hover):not(:focus) - .bp3-icon, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:not(:hover):not(:focus) - .bp3-icon-large, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:not(:hover):not(:focus) - .bp3-icon-standard { - color: #5c7080; -} -.bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-button.bp3-minimal:disabled - .bp3-icon, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-button.bp3-minimal:disabled - .bp3-icon-large, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-button.bp3-minimal:disabled - .bp3-icon-standard, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:disabled, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:disabled - .bp3-icon, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:disabled - .bp3-icon-large, -.bp3-input-group - .bp3-input:not(:focus) - + .bp3-input-action - .bp3-button.bp3-minimal:disabled - .bp3-icon-standard { - color: rgba(92, 112, 128, 0.6) !important; -} -.bp3-input-group.bp3-disabled { - cursor: not-allowed; -} -.bp3-input-group.bp3-disabled .bp3-icon { - color: rgba(92, 112, 128, 0.6); -} -.bp3-input-group.bp3-large .bp3-button { - margin: 5px; - min-height: 30px; - min-width: 30px; -} -.bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner, -.bp3-input-group.bp3-large > .bp3-icon, -.bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon { - margin: 12px; -} -.bp3-input-group.bp3-large .bp3-input { - font-size: 16px; - height: 40px; - line-height: 40px; -} -.bp3-input-group.bp3-large .bp3-input.bp3-round, -.bp3-input-group.bp3-large .bp3-input[type="search"] { - padding: 0 15px; -} -.bp3-input-group.bp3-large .bp3-input:not(:first-child) { - padding-left: 40px; -} -.bp3-input-group.bp3-large .bp3-input:not(:last-child) { - padding-right: 40px; -} -.bp3-input-group.bp3-small .bp3-button, -.bp3-input-group.bp3-small .bp3-tag { - margin: 2px; - min-height: 20px; - min-width: 20px; -} -.bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner, -.bp3-input-group.bp3-small > .bp3-icon, -.bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon { - margin: 4px; -} -.bp3-input-group.bp3-small .bp3-input { - font-size: 12px; - height: 24px; - line-height: 24px; - padding-left: 8px; - padding-right: 8px; -} -.bp3-input-group.bp3-small .bp3-input.bp3-round, -.bp3-input-group.bp3-small .bp3-input[type="search"] { - padding: 0 12px; -} -.bp3-input-group.bp3-small .bp3-input:not(:first-child) { - padding-left: 24px; -} -.bp3-input-group.bp3-small .bp3-input:not(:last-child) { - padding-right: 24px; -} -.bp3-input-group.bp3-fill { - flex: 1 1 auto; - width: 100%; -} -.bp3-input-group.bp3-round .bp3-button, -.bp3-input-group.bp3-round .bp3-input, -.bp3-input-group.bp3-round .bp3-tag { - border-radius: 30px; -} -.bp3-dark .bp3-input-group .bp3-icon { - color: #a7b6c2; -} -.bp3-dark .bp3-input-group.bp3-disabled .bp3-icon { - color: rgba(167, 182, 194, 0.6); -} -.bp3-input-group.bp3-intent-primary .bp3-input { - box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input-group.bp3-intent-primary .bp3-input:focus { - box-shadow: 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input-group.bp3-intent-primary .bp3-input[readonly] { - box-shadow: inset 0 0 0 1px #137cbd; -} -.bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled, -.bp3-input-group.bp3-intent-primary .bp3-input:disabled { - box-shadow: none; -} -.bp3-input-group.bp3-intent-primary > .bp3-icon { - color: #106ba3; -} -.bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon { - color: #48aff0; -} -.bp3-input-group.bp3-intent-success .bp3-input { - box-shadow: 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), - inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input-group.bp3-intent-success .bp3-input:focus { - box-shadow: 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input-group.bp3-intent-success .bp3-input[readonly] { - box-shadow: inset 0 0 0 1px #0f9960; -} -.bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled, -.bp3-input-group.bp3-intent-success .bp3-input:disabled { - box-shadow: none; -} -.bp3-input-group.bp3-intent-success > .bp3-icon { - color: #0d8050; -} -.bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon { - color: #3dcc91; -} -.bp3-input-group.bp3-intent-warning .bp3-input { - box-shadow: 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), - inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input-group.bp3-intent-warning .bp3-input:focus { - box-shadow: 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input-group.bp3-intent-warning .bp3-input[readonly] { - box-shadow: inset 0 0 0 1px #d9822b; -} -.bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled, -.bp3-input-group.bp3-intent-warning .bp3-input:disabled { - box-shadow: none; -} -.bp3-input-group.bp3-intent-warning > .bp3-icon { - color: #bf7326; -} -.bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon { - color: #ffb366; -} -.bp3-input-group.bp3-intent-danger .bp3-input { - box-shadow: 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), - inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input-group.bp3-intent-danger .bp3-input:focus { - box-shadow: 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input-group.bp3-intent-danger .bp3-input[readonly] { - box-shadow: inset 0 0 0 1px #db3737; -} -.bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled, -.bp3-input-group.bp3-intent-danger .bp3-input:disabled { - box-shadow: none; -} -.bp3-input-group.bp3-intent-danger > .bp3-icon { - color: #c23030; -} -.bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon { - color: #ff7373; -} -.bp3-input { - -webkit-appearance: none; - appearance: none; - background: #fff; - border: none; - border-radius: 3px; - box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); - color: #182026; - font-size: 14px; - font-weight: 400; - height: 30px; - line-height: 30px; - outline: none; - padding: 0 10px; - transition: box-shadow 0.1s cubic-bezier(0.4, 1, 0.75, 0.9); - vertical-align: middle; -} -.bp3-input::-webkit-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-input:-ms-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-input::placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-input.bp3-active, -.bp3-input:focus { - box-shadow: 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-round, -.bp3-input[type="search"] { - border-radius: 30px; - box-sizing: border-box; - padding-left: 10px; -} -.bp3-input[readonly] { - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.15); -} -.bp3-input.bp3-disabled, -.bp3-input:disabled { - background: rgba(206, 217, 224, 0.5); - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; - resize: none; -} -.bp3-input.bp3-large { - font-size: 16px; - height: 40px; - line-height: 40px; -} -.bp3-input.bp3-large.bp3-round, -.bp3-input.bp3-large[type="search"] { - padding: 0 15px; -} -.bp3-input.bp3-small { - font-size: 12px; - height: 24px; - line-height: 24px; - padding-left: 8px; - padding-right: 8px; -} -.bp3-input.bp3-small.bp3-round, -.bp3-input.bp3-small[type="search"] { - padding: 0 12px; -} -.bp3-input.bp3-fill { - flex: 1 1 auto; - width: 100%; -} -.bp3-dark .bp3-input { - background: rgba(16, 22, 26, 0.3); - box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} -.bp3-dark .bp3-input::-webkit-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-input:-ms-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-input::placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-input:focus { - box-shadow: 0 0 0 1px #137cbd, 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input[readonly] { - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-disabled, -.bp3-dark .bp3-input:disabled { - background: rgba(57, 75, 89, 0.5); - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -.bp3-input.bp3-intent-primary { - box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), - inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-intent-primary:focus { - box-shadow: 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-intent-primary[readonly] { - box-shadow: inset 0 0 0 1px #137cbd; -} -.bp3-input.bp3-intent-primary.bp3-disabled, -.bp3-input.bp3-intent-primary:disabled { - box-shadow: none; -} -.bp3-dark .bp3-input.bp3-intent-primary { - box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, - inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-intent-primary:focus { - box-shadow: 0 0 0 1px #137cbd, 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-intent-primary[readonly] { - box-shadow: inset 0 0 0 1px #137cbd; -} -.bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled, -.bp3-dark .bp3-input.bp3-intent-primary:disabled { - box-shadow: none; -} -.bp3-input.bp3-intent-success { - box-shadow: 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), - inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-intent-success:focus { - box-shadow: 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-intent-success[readonly] { - box-shadow: inset 0 0 0 1px #0f9960; -} -.bp3-input.bp3-intent-success.bp3-disabled, -.bp3-input.bp3-intent-success:disabled { - box-shadow: none; -} -.bp3-dark .bp3-input.bp3-intent-success { - box-shadow: 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), - 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, - inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-intent-success:focus { - box-shadow: 0 0 0 1px #0f9960, 0 0 0 1px #0f9960, - 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-intent-success[readonly] { - box-shadow: inset 0 0 0 1px #0f9960; -} -.bp3-dark .bp3-input.bp3-intent-success.bp3-disabled, -.bp3-dark .bp3-input.bp3-intent-success:disabled { - box-shadow: none; -} -.bp3-input.bp3-intent-warning { - box-shadow: 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), - inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-intent-warning:focus { - box-shadow: 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-intent-warning[readonly] { - box-shadow: inset 0 0 0 1px #d9822b; -} -.bp3-input.bp3-intent-warning.bp3-disabled, -.bp3-input.bp3-intent-warning:disabled { - box-shadow: none; -} -.bp3-dark .bp3-input.bp3-intent-warning { - box-shadow: 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), - 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, - inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-intent-warning:focus { - box-shadow: 0 0 0 1px #d9822b, 0 0 0 1px #d9822b, - 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-intent-warning[readonly] { - box-shadow: inset 0 0 0 1px #d9822b; -} -.bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled, -.bp3-dark .bp3-input.bp3-intent-warning:disabled { - box-shadow: none; -} -.bp3-input.bp3-intent-danger { - box-shadow: 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), - inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-intent-danger:focus { - box-shadow: 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-input.bp3-intent-danger[readonly] { - box-shadow: inset 0 0 0 1px #db3737; -} -.bp3-input.bp3-intent-danger.bp3-disabled, -.bp3-input.bp3-intent-danger:disabled { - box-shadow: none; -} -.bp3-dark .bp3-input.bp3-intent-danger { - box-shadow: 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), - 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, - inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-intent-danger:focus { - box-shadow: 0 0 0 1px #db3737, 0 0 0 1px #db3737, - 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-input.bp3-intent-danger[readonly] { - box-shadow: inset 0 0 0 1px #db3737; -} -.bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled, -.bp3-dark .bp3-input.bp3-intent-danger:disabled { - box-shadow: none; -} -.bp3-input::-ms-clear { - display: none; -} -textarea.bp3-input { - max-width: 100%; - padding: 10px; -} -textarea.bp3-input, -textarea.bp3-input.bp3-large, -textarea.bp3-input.bp3-small { - height: auto; - line-height: inherit; -} -textarea.bp3-input.bp3-small { - padding: 8px; -} -.bp3-dark textarea.bp3-input { - background: rgba(16, 22, 26, 0.3); - box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), - 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} -.bp3-dark textarea.bp3-input::-webkit-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark textarea.bp3-input:-ms-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark textarea.bp3-input::placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark textarea.bp3-input:focus { - box-shadow: 0 0 0 1px #137cbd, 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark textarea.bp3-input[readonly] { - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark textarea.bp3-input.bp3-disabled, -.bp3-dark textarea.bp3-input:disabled { - background: rgba(57, 75, 89, 0.5); - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -label.bp3-label { - display: block; - margin-bottom: 15px; - margin-top: 0; -} -label.bp3-label .bp3-html-select, -label.bp3-label .bp3-input, -label.bp3-label .bp3-popover-wrapper, -label.bp3-label .bp3-select, -label.bp3-label .bp3-slider { - display: block; - margin-top: 5px; - text-transform: none; -} -label.bp3-label .bp3-button-group { - margin-top: 5px; -} -label.bp3-label .bp3-html-select select, -label.bp3-label .bp3-select select { - font-weight: 400; - vertical-align: top; - width: 100%; -} -label.bp3-label.bp3-disabled, -label.bp3-label.bp3-disabled .bp3-text-muted { - color: rgba(92, 112, 128, 0.6); -} -label.bp3-label.bp3-inline { - line-height: 30px; -} -label.bp3-label.bp3-inline .bp3-html-select, -label.bp3-label.bp3-inline .bp3-input, -label.bp3-label.bp3-inline .bp3-input-group, -label.bp3-label.bp3-inline .bp3-popover-wrapper, -label.bp3-label.bp3-inline .bp3-select { - display: inline-block; - margin: 0 0 0 5px; - vertical-align: top; -} -label.bp3-label.bp3-inline .bp3-button-group { - margin: 0 0 0 5px; -} -label.bp3-label.bp3-inline .bp3-input-group .bp3-input { - margin-left: 0; -} -label.bp3-label.bp3-inline.bp3-large { - line-height: 40px; -} -label.bp3-label:not(.bp3-inline) .bp3-popover-target { - display: block; -} -.bp3-dark label.bp3-label { - color: #f5f8fa; -} -.bp3-dark label.bp3-label.bp3-disabled, -.bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted { - color: rgba(167, 182, 194, 0.6); -} -.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button { - flex: 1 1 14px; - min-height: 0; - padding: 0; - width: 30px; -} -.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child { - border-radius: 0 3px 0 0; -} -.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child { - border-radius: 0 0 3px 0; -} -.bp3-numeric-input - .bp3-button-group.bp3-vertical:first-child - > .bp3-button:first-child { - border-radius: 3px 0 0 0; -} -.bp3-numeric-input - .bp3-button-group.bp3-vertical:first-child - > .bp3-button:last-child { - border-radius: 0 0 0 3px; -} -.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button { - width: 40px; -} -form { - display: block; -} -.bp3-html-select select, -.bp3-select select { - align-items: center; - -moz-appearance: none; - -webkit-appearance: none; - background-color: #f5f8fa; - background-image: linear-gradient( - 180deg, - hsla(0, 0%, 100%, 0.8), - hsla(0, 0%, 100%, 0) - ); - border: none; - border-radius: 3px; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - color: #182026; - cursor: pointer; - display: inline-flex; - flex-direction: row; - font-size: 14px; - height: 30px; - justify-content: center; - padding: 0 25px 0 10px; - text-align: left; - vertical-align: middle; - width: 100%; -} -.bp3-html-select select > *, -.bp3-select select > * { - flex-grow: 0; - flex-shrink: 0; -} -.bp3-html-select select > .bp3-fill, -.bp3-select select > .bp3-fill { - flex-grow: 1; - flex-shrink: 1; -} -.bp3-html-select select:before, -.bp3-html-select select > *, -.bp3-select select:before, -.bp3-select select > * { - margin-right: 7px; -} -.bp3-html-select select:empty:before, -.bp3-html-select select > :last-child, -.bp3-select select:empty:before, -.bp3-select select > :last-child { - margin-right: 0; -} -.bp3-html-select select:hover, -.bp3-select select:hover { - background-clip: padding-box; - background-color: #ebf1f5; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); -} -.bp3-html-select select.bp3-active, -.bp3-html-select select:active, -.bp3-select select.bp3-active, -.bp3-select select:active { - background-color: #d8e1e8; - background-image: none; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-html-select select.bp3-disabled, -.bp3-html-select select:disabled, -.bp3-select select.bp3-disabled, -.bp3-select select:disabled { - background-color: rgba(206, 217, 224, 0.5); - background-image: none; - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; - outline: none; -} -.bp3-html-select select.bp3-disabled.bp3-active, -.bp3-html-select select.bp3-disabled.bp3-active:hover, -.bp3-html-select select:disabled.bp3-active, -.bp3-html-select select:disabled.bp3-active:hover, -.bp3-select select.bp3-disabled.bp3-active, -.bp3-select select.bp3-disabled.bp3-active:hover, -.bp3-select select:disabled.bp3-active, -.bp3-select select:disabled.bp3-active:hover { - background: rgba(206, 217, 224, 0.7); -} -.bp3-html-select.bp3-minimal select, -.bp3-select.bp3-minimal select { - background: none; - box-shadow: none; -} -.bp3-html-select.bp3-minimal select:hover, -.bp3-select.bp3-minimal select:hover { - background: rgba(167, 182, 194, 0.3); - box-shadow: none; - color: #182026; - text-decoration: none; -} -.bp3-html-select.bp3-minimal select.bp3-active, -.bp3-html-select.bp3-minimal select:active, -.bp3-select.bp3-minimal select.bp3-active, -.bp3-select.bp3-minimal select:active { - background: rgba(115, 134, 148, 0.3); - box-shadow: none; - color: #182026; -} -.bp3-html-select.bp3-minimal select.bp3-disabled, -.bp3-html-select.bp3-minimal select.bp3-disabled:hover, -.bp3-html-select.bp3-minimal select:disabled, -.bp3-html-select.bp3-minimal select:disabled:hover, -.bp3-select.bp3-minimal select.bp3-disabled, -.bp3-select.bp3-minimal select.bp3-disabled:hover, -.bp3-select.bp3-minimal select:disabled, -.bp3-select.bp3-minimal select:disabled:hover { - background: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, -.bp3-html-select.bp3-minimal select:disabled.bp3-active, -.bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, -.bp3-select.bp3-minimal select.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, -.bp3-select.bp3-minimal select:disabled.bp3-active, -.bp3-select.bp3-minimal select:disabled:hover.bp3-active { - background: rgba(115, 134, 148, 0.3); -} -.bp3-dark .bp3-html-select.bp3-minimal select, -.bp3-dark .bp3-select.bp3-minimal select, -.bp3-html-select.bp3-minimal .bp3-dark select, -.bp3-select.bp3-minimal .bp3-dark select { - background: none; - box-shadow: none; - color: inherit; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, -.bp3-dark .bp3-html-select.bp3-minimal select:active, -.bp3-dark .bp3-html-select.bp3-minimal select:hover, -.bp3-dark .bp3-select.bp3-minimal select.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select:active, -.bp3-dark .bp3-select.bp3-minimal select:hover, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select:active, -.bp3-html-select.bp3-minimal .bp3-dark select:hover, -.bp3-select.bp3-minimal .bp3-dark select.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select:active, -.bp3-select.bp3-minimal .bp3-dark select:hover { - background: none; - box-shadow: none; -} -.bp3-dark .bp3-html-select.bp3-minimal select:hover, -.bp3-dark .bp3-select.bp3-minimal select:hover, -.bp3-html-select.bp3-minimal .bp3-dark select:hover, -.bp3-select.bp3-minimal .bp3-dark select:hover { - background: rgba(138, 155, 168, 0.15); -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, -.bp3-dark .bp3-html-select.bp3-minimal select:active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select:active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select:active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select:active { - background: rgba(138, 155, 168, 0.3); - color: #f5f8fa; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, -.bp3-dark .bp3-html-select.bp3-minimal select:disabled, -.bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, -.bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, -.bp3-dark .bp3-select.bp3-minimal select:disabled, -.bp3-dark .bp3-select.bp3-minimal select:disabled:hover, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover, -.bp3-html-select.bp3-minimal .bp3-dark select:disabled, -.bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover, -.bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover, -.bp3-select.bp3-minimal .bp3-dark select:disabled, -.bp3-select.bp3-minimal .bp3-dark select:disabled:hover { - background: none; - color: rgba(167, 182, 194, 0.6); - cursor: not-allowed; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, -.bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, -.bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active { - background: rgba(138, 155, 168, 0.3); -} -.bp3-html-select.bp3-minimal select.bp3-intent-primary, -.bp3-select.bp3-minimal select.bp3-intent-primary { - color: #106ba3; -} -.bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-intent-primary:active, -.bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, -.bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-primary:active, -.bp3-select.bp3-minimal select.bp3-intent-primary:hover { - background: none; - box-shadow: none; - color: #106ba3; -} -.bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, -.bp3-select.bp3-minimal select.bp3-intent-primary:hover { - background: rgba(19, 124, 189, 0.15); - color: #106ba3; -} -.bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-intent-primary:active, -.bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-primary:active { - background: rgba(19, 124, 189, 0.3); - color: #106ba3; -} -.bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, -.bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, -.bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, -.bp3-select.bp3-minimal select.bp3-intent-primary:disabled { - background: none; - color: rgba(16, 107, 163, 0.5); -} -.bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active { - background: rgba(19, 124, 189, 0.3); -} -.bp3-html-select.bp3-minimal - select.bp3-intent-primary - .bp3-button-spinner - .bp3-spinner-head, -.bp3-select.bp3-minimal - select.bp3-intent-primary - .bp3-button-spinner - .bp3-spinner-head { - stroke: #106ba3; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary { - color: #48aff0; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover { - background: rgba(19, 124, 189, 0.2); - color: #48aff0; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active { - background: rgba(19, 124, 189, 0.3); - color: #48aff0; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled { - background: none; - color: rgba(72, 175, 240, 0.5); -} -.bp3-dark - .bp3-html-select.bp3-minimal - select.bp3-intent-primary.bp3-disabled.bp3-active, -.bp3-dark - .bp3-html-select.bp3-minimal - select.bp3-intent-primary:disabled.bp3-active, -.bp3-dark - .bp3-select.bp3-minimal - select.bp3-intent-primary.bp3-disabled.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, -.bp3-html-select.bp3-minimal - .bp3-dark - select.bp3-intent-primary.bp3-disabled.bp3-active, -.bp3-html-select.bp3-minimal - .bp3-dark - select.bp3-intent-primary:disabled.bp3-active, -.bp3-select.bp3-minimal - .bp3-dark - select.bp3-intent-primary.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal - .bp3-dark - select.bp3-intent-primary:disabled.bp3-active { - background: rgba(19, 124, 189, 0.3); -} -.bp3-html-select.bp3-minimal select.bp3-intent-success, -.bp3-select.bp3-minimal select.bp3-intent-success { - color: #0d8050; -} -.bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-intent-success:active, -.bp3-html-select.bp3-minimal select.bp3-intent-success:hover, -.bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-success:active, -.bp3-select.bp3-minimal select.bp3-intent-success:hover { - background: none; - box-shadow: none; - color: #0d8050; -} -.bp3-html-select.bp3-minimal select.bp3-intent-success:hover, -.bp3-select.bp3-minimal select.bp3-intent-success:hover { - background: rgba(15, 153, 96, 0.15); - color: #0d8050; -} -.bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-intent-success:active, -.bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-success:active { - background: rgba(15, 153, 96, 0.3); - color: #0d8050; -} -.bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, -.bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, -.bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, -.bp3-select.bp3-minimal select.bp3-intent-success:disabled { - background: none; - color: rgba(13, 128, 80, 0.5); -} -.bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active { - background: rgba(15, 153, 96, 0.3); -} -.bp3-html-select.bp3-minimal - select.bp3-intent-success - .bp3-button-spinner - .bp3-spinner-head, -.bp3-select.bp3-minimal - select.bp3-intent-success - .bp3-button-spinner - .bp3-spinner-head { - stroke: #0d8050; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success { - color: #3dcc91; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover { - background: rgba(15, 153, 96, 0.2); - color: #3dcc91; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active { - background: rgba(15, 153, 96, 0.3); - color: #3dcc91; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled { - background: none; - color: rgba(61, 204, 145, 0.5); -} -.bp3-dark - .bp3-html-select.bp3-minimal - select.bp3-intent-success.bp3-disabled.bp3-active, -.bp3-dark - .bp3-html-select.bp3-minimal - select.bp3-intent-success:disabled.bp3-active, -.bp3-dark - .bp3-select.bp3-minimal - select.bp3-intent-success.bp3-disabled.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, -.bp3-html-select.bp3-minimal - .bp3-dark - select.bp3-intent-success.bp3-disabled.bp3-active, -.bp3-html-select.bp3-minimal - .bp3-dark - select.bp3-intent-success:disabled.bp3-active, -.bp3-select.bp3-minimal - .bp3-dark - select.bp3-intent-success.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal - .bp3-dark - select.bp3-intent-success:disabled.bp3-active { - background: rgba(15, 153, 96, 0.3); -} -.bp3-html-select.bp3-minimal select.bp3-intent-warning, -.bp3-select.bp3-minimal select.bp3-intent-warning { - color: #bf7326; -} -.bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-intent-warning:active, -.bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, -.bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-warning:active, -.bp3-select.bp3-minimal select.bp3-intent-warning:hover { - background: none; - box-shadow: none; - color: #bf7326; -} -.bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, -.bp3-select.bp3-minimal select.bp3-intent-warning:hover { - background: rgba(217, 130, 43, 0.15); - color: #bf7326; -} -.bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-intent-warning:active, -.bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-warning:active { - background: rgba(217, 130, 43, 0.3); - color: #bf7326; -} -.bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, -.bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, -.bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, -.bp3-select.bp3-minimal select.bp3-intent-warning:disabled { - background: none; - color: rgba(191, 115, 38, 0.5); -} -.bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active { - background: rgba(217, 130, 43, 0.3); -} -.bp3-html-select.bp3-minimal - select.bp3-intent-warning - .bp3-button-spinner - .bp3-spinner-head, -.bp3-select.bp3-minimal - select.bp3-intent-warning - .bp3-button-spinner - .bp3-spinner-head { - stroke: #bf7326; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning { - color: #ffb366; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover { - background: rgba(217, 130, 43, 0.2); - color: #ffb366; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active { - background: rgba(217, 130, 43, 0.3); - color: #ffb366; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled { - background: none; - color: rgba(255, 179, 102, 0.5); -} -.bp3-dark - .bp3-html-select.bp3-minimal - select.bp3-intent-warning.bp3-disabled.bp3-active, -.bp3-dark - .bp3-html-select.bp3-minimal - select.bp3-intent-warning:disabled.bp3-active, -.bp3-dark - .bp3-select.bp3-minimal - select.bp3-intent-warning.bp3-disabled.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, -.bp3-html-select.bp3-minimal - .bp3-dark - select.bp3-intent-warning.bp3-disabled.bp3-active, -.bp3-html-select.bp3-minimal - .bp3-dark - select.bp3-intent-warning:disabled.bp3-active, -.bp3-select.bp3-minimal - .bp3-dark - select.bp3-intent-warning.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal - .bp3-dark - select.bp3-intent-warning:disabled.bp3-active { - background: rgba(217, 130, 43, 0.3); -} -.bp3-html-select.bp3-minimal select.bp3-intent-danger, -.bp3-select.bp3-minimal select.bp3-intent-danger { - color: #c23030; -} -.bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-intent-danger:active, -.bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, -.bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-danger:active, -.bp3-select.bp3-minimal select.bp3-intent-danger:hover { - background: none; - box-shadow: none; - color: #c23030; -} -.bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, -.bp3-select.bp3-minimal select.bp3-intent-danger:hover { - background: rgba(219, 55, 55, 0.15); - color: #c23030; -} -.bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-intent-danger:active, -.bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-danger:active { - background: rgba(219, 55, 55, 0.3); - color: #c23030; -} -.bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, -.bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, -.bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, -.bp3-select.bp3-minimal select.bp3-intent-danger:disabled { - background: none; - color: rgba(194, 48, 48, 0.5); -} -.bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, -.bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active { - background: rgba(219, 55, 55, 0.3); -} -.bp3-html-select.bp3-minimal - select.bp3-intent-danger - .bp3-button-spinner - .bp3-spinner-head, -.bp3-select.bp3-minimal - select.bp3-intent-danger - .bp3-button-spinner - .bp3-spinner-head { - stroke: #c23030; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger { - color: #ff7373; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover { - background: rgba(219, 55, 55, 0.2); - color: #ff7373; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active { - background: rgba(219, 55, 55, 0.3); - color: #ff7373; -} -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, -.bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled, -.bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled { - background: none; - color: hsla(0, 100%, 73%, 0.5); -} -.bp3-dark - .bp3-html-select.bp3-minimal - select.bp3-intent-danger.bp3-disabled.bp3-active, -.bp3-dark - .bp3-html-select.bp3-minimal - select.bp3-intent-danger:disabled.bp3-active, -.bp3-dark - .bp3-select.bp3-minimal - select.bp3-intent-danger.bp3-disabled.bp3-active, -.bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, -.bp3-html-select.bp3-minimal - .bp3-dark - select.bp3-intent-danger.bp3-disabled.bp3-active, -.bp3-html-select.bp3-minimal - .bp3-dark - select.bp3-intent-danger:disabled.bp3-active, -.bp3-select.bp3-minimal - .bp3-dark - select.bp3-intent-danger.bp3-disabled.bp3-active, -.bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active { - background: rgba(219, 55, 55, 0.3); -} -.bp3-html-select.bp3-large select, -.bp3-select.bp3-large select { - font-size: 16px; - height: 40px; - padding-right: 35px; -} -.bp3-dark .bp3-html-select select, -.bp3-dark .bp3-select select { - background-color: #394b59; - background-image: linear-gradient( - 180deg, - hsla(0, 0%, 100%, 0.05), - hsla(0, 0%, 100%, 0) - ); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} -.bp3-dark .bp3-html-select select.bp3-active, -.bp3-dark .bp3-html-select select:active, -.bp3-dark .bp3-html-select select:hover, -.bp3-dark .bp3-select select.bp3-active, -.bp3-dark .bp3-select select:active, -.bp3-dark .bp3-select select:hover { - color: #f5f8fa; -} -.bp3-dark .bp3-html-select select:hover, -.bp3-dark .bp3-select select:hover { - background-color: #30404d; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-html-select select.bp3-active, -.bp3-dark .bp3-html-select select:active, -.bp3-dark .bp3-select select.bp3-active, -.bp3-dark .bp3-select select:active { - background-color: #202b33; - background-image: none; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-html-select select.bp3-disabled, -.bp3-dark .bp3-html-select select:disabled, -.bp3-dark .bp3-select select.bp3-disabled, -.bp3-dark .bp3-select select:disabled { - background-color: rgba(57, 75, 89, 0.5); - background-image: none; - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, -.bp3-dark .bp3-html-select select:disabled.bp3-active, -.bp3-dark .bp3-select select.bp3-disabled.bp3-active, -.bp3-dark .bp3-select select:disabled.bp3-active { - background: rgba(57, 75, 89, 0.7); -} -.bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, -.bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head { - stroke: #8a9ba8; - background: rgba(16, 22, 26, 0.5); -} -.bp3-html-select select:disabled, -.bp3-select select:disabled { - background-color: rgba(206, 217, 224, 0.5); - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-html-select .bp3-icon, -.bp3-select .bp3-icon, -.bp3-select:after { - color: #5c7080; - pointer-events: none; - position: absolute; - right: 7px; - top: 7px; -} -.bp3-disabled.bp3-select:after, -.bp3-html-select .bp3-disabled.bp3-icon, -.bp3-select .bp3-disabled.bp3-icon { - color: rgba(92, 112, 128, 0.6); -} -.bp3-html-select, -.bp3-select { - display: inline-block; - letter-spacing: normal; - position: relative; - vertical-align: middle; -} -.bp3-html-select select::-ms-expand, -.bp3-select select::-ms-expand { - display: none; -} -.bp3-html-select .bp3-icon, -.bp3-select .bp3-icon { - color: #5c7080; -} -.bp3-html-select .bp3-icon:hover, -.bp3-select .bp3-icon:hover { - color: #182026; -} -.bp3-dark .bp3-html-select .bp3-icon, -.bp3-dark .bp3-select .bp3-icon { - color: #a7b6c2; -} -.bp3-dark .bp3-html-select .bp3-icon:hover, -.bp3-dark .bp3-select .bp3-icon:hover { - color: #f5f8fa; -} -.bp3-html-select.bp3-large .bp3-icon, -.bp3-html-select.bp3-large:after, -.bp3-select.bp3-large .bp3-icon, -.bp3-select.bp3-large:after { - right: 12px; - top: 12px; -} -.bp3-html-select.bp3-fill, -.bp3-html-select.bp3-fill select, -.bp3-select.bp3-fill, -.bp3-select.bp3-fill select { - width: 100%; -} -.bp3-dark .bp3-html-select option, -.bp3-dark .bp3-select option { - background-color: #30404d; - color: #f5f8fa; -} -.bp3-dark .bp3-html-select option:disabled, -.bp3-dark .bp3-select option:disabled { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-html-select:after, -.bp3-dark .bp3-select:after { - color: #a7b6c2; -} -.bp3-select:after { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - content: ""; - font-family: Icons16, sans-serif; - font-size: 16px; - font-style: normal; - font-weight: 400; - line-height: 1; -} -.bp3-running-text table, -table.bp3-html-table { - border-spacing: 0; - font-size: 14px; -} -.bp3-running-text table td, -.bp3-running-text table th, -table.bp3-html-table td, -table.bp3-html-table th { - padding: 11px; - text-align: left; - vertical-align: top; -} -.bp3-running-text table th, -table.bp3-html-table th { - color: #182026; - font-weight: 600; -} -.bp3-running-text table td, -table.bp3-html-table td { - color: #182026; -} -.bp3-running-text table tbody tr:first-child td, -.bp3-running-text table tbody tr:first-child th, -.bp3-running-text table tfoot tr:first-child td, -.bp3-running-text table tfoot tr:first-child th, -table.bp3-html-table tbody tr:first-child td, -table.bp3-html-table tbody tr:first-child th, -table.bp3-html-table tfoot tr:first-child td, -table.bp3-html-table tfoot tr:first-child th { - box-shadow: inset 0 1px 0 0 rgba(16, 22, 26, 0.15); -} -.bp3-dark .bp3-running-text table td, -.bp3-dark .bp3-running-text table th, -.bp3-dark table.bp3-html-table td, -.bp3-dark table.bp3-html-table th, -.bp3-running-text .bp3-dark table td, -.bp3-running-text .bp3-dark table th { - color: #f5f8fa; -} -.bp3-dark .bp3-running-text table tbody tr:first-child td, -.bp3-dark .bp3-running-text table tbody tr:first-child th, -.bp3-dark .bp3-running-text table tfoot tr:first-child td, -.bp3-dark .bp3-running-text table tfoot tr:first-child th, -.bp3-dark table.bp3-html-table tbody tr:first-child td, -.bp3-dark table.bp3-html-table tbody tr:first-child th, -.bp3-dark table.bp3-html-table tfoot tr:first-child td, -.bp3-dark table.bp3-html-table tfoot tr:first-child th, -.bp3-running-text .bp3-dark table tbody tr:first-child td, -.bp3-running-text .bp3-dark table tbody tr:first-child th, -.bp3-running-text .bp3-dark table tfoot tr:first-child td, -.bp3-running-text .bp3-dark table tfoot tr:first-child th { - box-shadow: inset 0 1px 0 0 hsla(0, 0%, 100%, 0.15); -} -table.bp3-html-table.bp3-html-table-condensed td, -table.bp3-html-table.bp3-html-table-condensed th, -table.bp3-html-table.bp3-small td, -table.bp3-html-table.bp3-small th { - padding-bottom: 6px; - padding-top: 6px; -} -table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td { - background: rgba(191, 204, 214, 0.15); -} -table.bp3-html-table.bp3-html-table-bordered th:not(:first-child) { - box-shadow: inset 1px 0 0 0 rgba(16, 22, 26, 0.15); -} -table.bp3-html-table.bp3-html-table-bordered tbody tr td, -table.bp3-html-table.bp3-html-table-bordered tfoot tr td { - box-shadow: inset 0 1px 0 0 rgba(16, 22, 26, 0.15); -} -table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child), -table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child) { - box-shadow: inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); -} -table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped - tbody - tr:not(:first-child) - td { - box-shadow: none; -} -table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped - tbody - tr:not(:first-child) - td:not(:first-child) { - box-shadow: inset 1px 0 0 0 rgba(16, 22, 26, 0.15); -} -table.bp3-html-table.bp3-interactive tbody tr:hover td { - background-color: rgba(191, 204, 214, 0.3); - cursor: pointer; -} -table.bp3-html-table.bp3-interactive tbody tr:active td { - background-color: rgba(191, 204, 214, 0.4); -} -.bp3-dark - table.bp3-html-table.bp3-html-table-striped - tbody - tr:nth-child(odd) - td { - background: rgba(92, 112, 128, 0.15); -} -.bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child) { - box-shadow: inset 1px 0 0 0 hsla(0, 0%, 100%, 0.15); -} -.bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td, -.bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td { - box-shadow: inset 0 1px 0 0 hsla(0, 0%, 100%, 0.15); -} -.bp3-dark - table.bp3-html-table.bp3-html-table-bordered - tbody - tr - td:not(:first-child), -.bp3-dark - table.bp3-html-table.bp3-html-table-bordered - tfoot - tr - td:not(:first-child) { - box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.15); -} -.bp3-dark - table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped - tbody - tr:not(:first-child) - td { - box-shadow: inset 1px 0 0 0 hsla(0, 0%, 100%, 0.15); -} -.bp3-dark - table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped - tbody - tr:not(:first-child) - td:first-child { - box-shadow: none; -} -.bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td { - background-color: rgba(92, 112, 128, 0.3); - cursor: pointer; -} -.bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td { - background-color: rgba(92, 112, 128, 0.4); -} -.bp3-key-combo { - align-items: center; - display: flex; - flex-direction: row; -} -.bp3-key-combo > * { - flex-grow: 0; - flex-shrink: 0; -} -.bp3-key-combo > .bp3-fill { - flex-grow: 1; - flex-shrink: 1; -} -.bp3-key-combo:before, -.bp3-key-combo > * { - margin-right: 5px; -} -.bp3-key-combo:empty:before, -.bp3-key-combo > :last-child { - margin-right: 0; -} -.bp3-hotkey-dialog { - padding-bottom: 0; - top: 40px; -} -.bp3-hotkey-dialog .bp3-dialog-body { - margin: 0; - padding: 0; -} -.bp3-hotkey-dialog .bp3-hotkey-label { - flex-grow: 1; -} -.bp3-hotkey-column { - margin: auto; - max-height: 80vh; - overflow-y: auto; - padding: 30px; -} -.bp3-hotkey-column .bp3-heading { - margin-bottom: 20px; -} -.bp3-hotkey-column .bp3-heading:not(:first-child) { - margin-top: 40px; -} -.bp3-hotkey { - align-items: center; - display: flex; - justify-content: space-between; - margin-left: 0; - margin-right: 0; -} -.bp3-hotkey:not(:last-child) { - margin-bottom: 10px; -} -.bp3-icon { - display: inline-block; - flex: 0 0 auto; - vertical-align: text-bottom; -} -.bp3-icon:not(:empty):before { - content: "" !important; - content: unset !important; -} -.bp3-icon > svg { - display: block; -} -.bp3-icon > svg:not([fill]) { - fill: currentColor; -} -.bp3-icon-large.bp3-intent-primary, -.bp3-icon-standard.bp3-intent-primary, -.bp3-icon.bp3-intent-primary { - color: #106ba3; -} -.bp3-dark .bp3-icon-large.bp3-intent-primary, -.bp3-dark .bp3-icon-standard.bp3-intent-primary, -.bp3-dark .bp3-icon.bp3-intent-primary { - color: #48aff0; -} -.bp3-icon-large.bp3-intent-success, -.bp3-icon-standard.bp3-intent-success, -.bp3-icon.bp3-intent-success { - color: #0d8050; -} -.bp3-dark .bp3-icon-large.bp3-intent-success, -.bp3-dark .bp3-icon-standard.bp3-intent-success, -.bp3-dark .bp3-icon.bp3-intent-success { - color: #3dcc91; -} -.bp3-icon-large.bp3-intent-warning, -.bp3-icon-standard.bp3-intent-warning, -.bp3-icon.bp3-intent-warning { - color: #bf7326; -} -.bp3-dark .bp3-icon-large.bp3-intent-warning, -.bp3-dark .bp3-icon-standard.bp3-intent-warning, -.bp3-dark .bp3-icon.bp3-intent-warning { - color: #ffb366; -} -.bp3-icon-large.bp3-intent-danger, -.bp3-icon-standard.bp3-intent-danger, -.bp3-icon.bp3-intent-danger { - color: #c23030; -} -.bp3-dark .bp3-icon-large.bp3-intent-danger, -.bp3-dark .bp3-icon-standard.bp3-intent-danger, -.bp3-dark .bp3-icon.bp3-intent-danger { - color: #ff7373; -} -span.bp3-icon-standard { - font-family: Icons16, sans-serif; - font-size: 16px; -} -span.bp3-icon-large, -span.bp3-icon-standard { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: inline-block; - font-style: normal; - font-weight: 400; - line-height: 1; -} -span.bp3-icon-large { - font-family: Icons20, sans-serif; - font-size: 20px; -} -span.bp3-icon:empty { - font-family: Icons20; - font-size: inherit; - font-style: normal; - font-weight: 400; - line-height: 1; -} -span.bp3-icon:empty:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; -} -.bp3-icon-add:before { - content: ""; -} -.bp3-icon-add-column-left:before { - content: ""; -} -.bp3-icon-add-column-right:before { - content: ""; -} -.bp3-icon-add-row-bottom:before { - content: ""; -} -.bp3-icon-add-row-top:before { - content: ""; -} -.bp3-icon-add-to-artifact:before { - content: ""; -} -.bp3-icon-add-to-folder:before { - content: ""; -} -.bp3-icon-airplane:before { - content: ""; -} -.bp3-icon-align-center:before { - content: ""; -} -.bp3-icon-align-justify:before { - content: ""; -} -.bp3-icon-align-left:before { - content: ""; -} -.bp3-icon-align-right:before { - content: ""; -} -.bp3-icon-alignment-bottom:before { - content: ""; -} -.bp3-icon-alignment-horizontal-center:before { - content: ""; -} -.bp3-icon-alignment-left:before { - content: ""; -} -.bp3-icon-alignment-right:before { - content: ""; -} -.bp3-icon-alignment-top:before { - content: ""; -} -.bp3-icon-alignment-vertical-center:before { - content: ""; -} -.bp3-icon-annotation:before { - content: ""; -} -.bp3-icon-application:before { - content: ""; -} -.bp3-icon-applications:before { - content: ""; -} -.bp3-icon-archive:before { - content: ""; -} -.bp3-icon-arrow-bottom-left:before { - content: "↙"; -} -.bp3-icon-arrow-bottom-right:before { - content: "↘"; -} -.bp3-icon-arrow-down:before { - content: "↓"; -} -.bp3-icon-arrow-left:before { - content: "←"; -} -.bp3-icon-arrow-right:before { - content: "→"; -} -.bp3-icon-arrow-top-left:before { - content: "↖"; -} -.bp3-icon-arrow-top-right:before { - content: "↗"; -} -.bp3-icon-arrow-up:before { - content: "↑"; -} -.bp3-icon-arrows-horizontal:before { - content: "↔"; -} -.bp3-icon-arrows-vertical:before { - content: "↕"; -} -.bp3-icon-asterisk:before { - content: "*"; -} -.bp3-icon-automatic-updates:before { - content: ""; -} -.bp3-icon-badge:before { - content: ""; -} -.bp3-icon-ban-circle:before { - content: ""; -} -.bp3-icon-bank-account:before { - content: ""; -} -.bp3-icon-barcode:before { - content: ""; -} -.bp3-icon-blank:before { - content: ""; -} -.bp3-icon-blocked-person:before { - content: ""; -} -.bp3-icon-bold:before { - content: ""; -} -.bp3-icon-book:before { - content: ""; -} -.bp3-icon-bookmark:before { - content: ""; -} -.bp3-icon-box:before { - content: ""; -} -.bp3-icon-briefcase:before { - content: ""; -} -.bp3-icon-bring-data:before { - content: ""; -} -.bp3-icon-build:before { - content: ""; -} -.bp3-icon-calculator:before { - content: ""; -} -.bp3-icon-calendar:before { - content: ""; -} -.bp3-icon-camera:before { - content: ""; -} -.bp3-icon-caret-down:before { - content: "⌄"; -} -.bp3-icon-caret-left:before { - content: "〈"; -} -.bp3-icon-caret-right:before { - content: "〉"; -} -.bp3-icon-caret-up:before { - content: "⌃"; -} -.bp3-icon-cell-tower:before { - content: ""; -} -.bp3-icon-changes:before { - content: ""; -} -.bp3-icon-chart:before { - content: ""; -} -.bp3-icon-chat:before { - content: ""; -} -.bp3-icon-chevron-backward:before { - content: ""; -} -.bp3-icon-chevron-down:before { - content: ""; -} -.bp3-icon-chevron-forward:before { - content: ""; -} -.bp3-icon-chevron-left:before { - content: ""; -} -.bp3-icon-chevron-right:before { - content: ""; -} -.bp3-icon-chevron-up:before { - content: ""; -} -.bp3-icon-circle:before { - content: ""; -} -.bp3-icon-circle-arrow-down:before { - content: ""; -} -.bp3-icon-circle-arrow-left:before { - content: ""; -} -.bp3-icon-circle-arrow-right:before { - content: ""; -} -.bp3-icon-circle-arrow-up:before { - content: ""; -} -.bp3-icon-citation:before { - content: ""; -} -.bp3-icon-clean:before { - content: ""; -} -.bp3-icon-clipboard:before { - content: ""; -} -.bp3-icon-cloud:before { - content: "☁"; -} -.bp3-icon-cloud-download:before { - content: ""; -} -.bp3-icon-cloud-upload:before { - content: ""; -} -.bp3-icon-code:before { - content: ""; -} -.bp3-icon-code-block:before { - content: ""; -} -.bp3-icon-cog:before { - content: ""; -} -.bp3-icon-collapse-all:before { - content: ""; -} -.bp3-icon-column-layout:before { - content: ""; -} -.bp3-icon-comment:before { - content: ""; -} -.bp3-icon-comparison:before { - content: ""; -} -.bp3-icon-compass:before { - content: ""; -} -.bp3-icon-compressed:before { - content: ""; -} -.bp3-icon-confirm:before { - content: ""; -} -.bp3-icon-console:before { - content: ""; -} -.bp3-icon-contrast:before { - content: ""; -} -.bp3-icon-control:before { - content: ""; -} -.bp3-icon-credit-card:before { - content: ""; -} -.bp3-icon-cross:before { - content: "✗"; -} -.bp3-icon-crown:before { - content: ""; -} -.bp3-icon-cube:before { - content: ""; -} -.bp3-icon-cube-add:before { - content: ""; -} -.bp3-icon-cube-remove:before { - content: ""; -} -.bp3-icon-curved-range-chart:before { - content: ""; -} -.bp3-icon-cut:before { - content: ""; -} -.bp3-icon-dashboard:before { - content: ""; -} -.bp3-icon-data-lineage:before { - content: ""; -} -.bp3-icon-database:before { - content: ""; -} -.bp3-icon-delete:before { - content: ""; -} -.bp3-icon-delta:before { - content: "Δ"; -} -.bp3-icon-derive-column:before { - content: ""; -} -.bp3-icon-desktop:before { - content: ""; -} -.bp3-icon-diagnosis:before { - content: ""; -} -.bp3-icon-diagram-tree:before { - content: ""; -} -.bp3-icon-direction-left:before { - content: ""; -} -.bp3-icon-direction-right:before { - content: ""; -} -.bp3-icon-disable:before { - content: ""; -} -.bp3-icon-document:before { - content: ""; -} -.bp3-icon-document-open:before { - content: ""; -} -.bp3-icon-document-share:before { - content: ""; -} -.bp3-icon-dollar:before { - content: "$"; -} -.bp3-icon-dot:before { - content: "•"; -} -.bp3-icon-double-caret-horizontal:before { - content: ""; -} -.bp3-icon-double-caret-vertical:before { - content: ""; -} -.bp3-icon-double-chevron-down:before { - content: ""; -} -.bp3-icon-double-chevron-left:before { - content: ""; -} -.bp3-icon-double-chevron-right:before { - content: ""; -} -.bp3-icon-double-chevron-up:before { - content: ""; -} -.bp3-icon-doughnut-chart:before { - content: ""; -} -.bp3-icon-download:before { - content: ""; -} -.bp3-icon-drag-handle-horizontal:before { - content: ""; -} -.bp3-icon-drag-handle-vertical:before { - content: ""; -} -.bp3-icon-draw:before { - content: ""; -} -.bp3-icon-drive-time:before { - content: ""; -} -.bp3-icon-duplicate:before { - content: ""; -} -.bp3-icon-edit:before { - content: "✎"; -} -.bp3-icon-eject:before { - content: "⏏"; -} -.bp3-icon-endorsed:before { - content: ""; -} -.bp3-icon-envelope:before { - content: "✉"; -} -.bp3-icon-equals:before { - content: ""; -} -.bp3-icon-eraser:before { - content: ""; -} -.bp3-icon-error:before { - content: ""; -} -.bp3-icon-euro:before { - content: "€"; -} -.bp3-icon-exchange:before { - content: ""; -} -.bp3-icon-exclude-row:before { - content: ""; -} -.bp3-icon-expand-all:before { - content: ""; -} -.bp3-icon-export:before { - content: ""; -} -.bp3-icon-eye-off:before { - content: ""; -} -.bp3-icon-eye-on:before { - content: ""; -} -.bp3-icon-eye-open:before { - content: ""; -} -.bp3-icon-fast-backward:before { - content: ""; -} -.bp3-icon-fast-forward:before { - content: ""; -} -.bp3-icon-feed:before { - content: ""; -} -.bp3-icon-feed-subscribed:before { - content: ""; -} -.bp3-icon-film:before { - content: ""; -} -.bp3-icon-filter:before { - content: ""; -} -.bp3-icon-filter-keep:before { - content: ""; -} -.bp3-icon-filter-list:before { - content: ""; -} -.bp3-icon-filter-open:before { - content: ""; -} -.bp3-icon-filter-remove:before { - content: ""; -} -.bp3-icon-flag:before { - content: "⚑"; -} -.bp3-icon-flame:before { - content: ""; -} -.bp3-icon-flash:before { - content: ""; -} -.bp3-icon-floppy-disk:before { - content: ""; -} -.bp3-icon-flow-branch:before { - content: ""; -} -.bp3-icon-flow-end:before { - content: ""; -} -.bp3-icon-flow-linear:before { - content: ""; -} -.bp3-icon-flow-review:before { - content: ""; -} -.bp3-icon-flow-review-branch:before { - content: ""; -} -.bp3-icon-flows:before { - content: ""; -} -.bp3-icon-folder-close:before { - content: ""; -} -.bp3-icon-folder-new:before { - content: ""; -} -.bp3-icon-folder-open:before { - content: ""; -} -.bp3-icon-folder-shared:before { - content: ""; -} -.bp3-icon-folder-shared-open:before { - content: ""; -} -.bp3-icon-follower:before { - content: ""; -} -.bp3-icon-following:before { - content: ""; -} -.bp3-icon-font:before { - content: ""; -} -.bp3-icon-fork:before { - content: ""; -} -.bp3-icon-form:before { - content: ""; -} -.bp3-icon-full-circle:before { - content: ""; -} -.bp3-icon-full-stacked-chart:before { - content: ""; -} -.bp3-icon-fullscreen:before { - content: ""; -} -.bp3-icon-function:before { - content: ""; -} -.bp3-icon-gantt-chart:before { - content: ""; -} -.bp3-icon-geolocation:before { - content: ""; -} -.bp3-icon-geosearch:before { - content: ""; -} -.bp3-icon-git-branch:before { - content: ""; -} -.bp3-icon-git-commit:before { - content: ""; -} -.bp3-icon-git-merge:before { - content: ""; -} -.bp3-icon-git-new-branch:before { - content: ""; -} -.bp3-icon-git-pull:before { - content: ""; -} -.bp3-icon-git-push:before { - content: ""; -} -.bp3-icon-git-repo:before { - content: ""; -} -.bp3-icon-glass:before { - content: ""; -} -.bp3-icon-globe:before { - content: ""; -} -.bp3-icon-globe-network:before { - content: ""; -} -.bp3-icon-graph:before { - content: ""; -} -.bp3-icon-graph-remove:before { - content: ""; -} -.bp3-icon-greater-than:before { - content: ""; -} -.bp3-icon-greater-than-or-equal-to:before { - content: ""; -} -.bp3-icon-grid:before { - content: ""; -} -.bp3-icon-grid-view:before { - content: ""; -} -.bp3-icon-group-objects:before { - content: ""; -} -.bp3-icon-grouped-bar-chart:before { - content: ""; -} -.bp3-icon-hand:before { - content: ""; -} -.bp3-icon-hand-down:before { - content: ""; -} -.bp3-icon-hand-left:before { - content: ""; -} -.bp3-icon-hand-right:before { - content: ""; -} -.bp3-icon-hand-up:before { - content: ""; -} -.bp3-icon-header:before { - content: ""; -} -.bp3-icon-header-one:before { - content: ""; -} -.bp3-icon-header-two:before { - content: ""; -} -.bp3-icon-headset:before { - content: ""; -} -.bp3-icon-heart:before { - content: "♥"; -} -.bp3-icon-heart-broken:before { - content: ""; -} -.bp3-icon-heat-grid:before { - content: ""; -} -.bp3-icon-heatmap:before { - content: ""; -} -.bp3-icon-help:before { - content: "?"; -} -.bp3-icon-helper-management:before { - content: ""; -} -.bp3-icon-highlight:before { - content: ""; -} -.bp3-icon-history:before { - content: ""; -} -.bp3-icon-home:before { - content: "⌂"; -} -.bp3-icon-horizontal-bar-chart:before { - content: ""; -} -.bp3-icon-horizontal-bar-chart-asc:before { - content: ""; -} -.bp3-icon-horizontal-bar-chart-desc:before { - content: ""; -} -.bp3-icon-horizontal-distribution:before { - content: ""; -} -.bp3-icon-id-number:before { - content: ""; -} -.bp3-icon-image-rotate-left:before { - content: ""; -} -.bp3-icon-image-rotate-right:before { - content: ""; -} -.bp3-icon-import:before { - content: ""; -} -.bp3-icon-inbox:before { - content: ""; -} -.bp3-icon-inbox-filtered:before { - content: ""; -} -.bp3-icon-inbox-geo:before { - content: ""; -} -.bp3-icon-inbox-search:before { - content: ""; -} -.bp3-icon-inbox-update:before { - content: ""; -} -.bp3-icon-info-sign:before { - content: "ℹ"; -} -.bp3-icon-inheritance:before { - content: ""; -} -.bp3-icon-inner-join:before { - content: ""; -} -.bp3-icon-insert:before { - content: ""; -} -.bp3-icon-intersection:before { - content: ""; -} -.bp3-icon-ip-address:before { - content: ""; -} -.bp3-icon-issue:before { - content: ""; -} -.bp3-icon-issue-closed:before { - content: ""; -} -.bp3-icon-issue-new:before { - content: ""; -} -.bp3-icon-italic:before { - content: ""; -} -.bp3-icon-join-table:before { - content: ""; -} -.bp3-icon-key:before { - content: ""; -} -.bp3-icon-key-backspace:before { - content: ""; -} -.bp3-icon-key-command:before { - content: ""; -} -.bp3-icon-key-control:before { - content: ""; -} -.bp3-icon-key-delete:before { - content: ""; -} -.bp3-icon-key-enter:before { - content: ""; -} -.bp3-icon-key-escape:before { - content: ""; -} -.bp3-icon-key-option:before { - content: ""; -} -.bp3-icon-key-shift:before { - content: ""; -} -.bp3-icon-key-tab:before { - content: ""; -} -.bp3-icon-known-vehicle:before { - content: ""; -} -.bp3-icon-lab-test:before { - content: ""; -} -.bp3-icon-label:before { - content: ""; -} -.bp3-icon-layer:before { - content: ""; -} -.bp3-icon-layers:before { - content: ""; -} -.bp3-icon-layout:before { - content: ""; -} -.bp3-icon-layout-auto:before { - content: ""; -} -.bp3-icon-layout-balloon:before { - content: ""; -} -.bp3-icon-layout-circle:before { - content: ""; -} -.bp3-icon-layout-grid:before { - content: ""; -} -.bp3-icon-layout-group-by:before { - content: ""; -} -.bp3-icon-layout-hierarchy:before { - content: ""; -} -.bp3-icon-layout-linear:before { - content: ""; -} -.bp3-icon-layout-skew-grid:before { - content: ""; -} -.bp3-icon-layout-sorted-clusters:before { - content: ""; -} -.bp3-icon-learning:before { - content: ""; -} -.bp3-icon-left-join:before { - content: ""; -} -.bp3-icon-less-than:before { - content: ""; -} -.bp3-icon-less-than-or-equal-to:before { - content: ""; -} -.bp3-icon-lifesaver:before { - content: ""; -} -.bp3-icon-lightbulb:before { - content: ""; -} -.bp3-icon-link:before { - content: ""; -} -.bp3-icon-list:before { - content: "☰"; -} -.bp3-icon-list-columns:before { - content: ""; -} -.bp3-icon-list-detail-view:before { - content: ""; -} -.bp3-icon-locate:before { - content: ""; -} -.bp3-icon-lock:before { - content: ""; -} -.bp3-icon-log-in:before { - content: ""; -} -.bp3-icon-log-out:before { - content: ""; -} -.bp3-icon-manual:before { - content: ""; -} -.bp3-icon-manually-entered-data:before { - content: ""; -} -.bp3-icon-map:before { - content: ""; -} -.bp3-icon-map-create:before { - content: ""; -} -.bp3-icon-map-marker:before { - content: ""; -} -.bp3-icon-maximize:before { - content: ""; -} -.bp3-icon-media:before { - content: ""; -} -.bp3-icon-menu:before { - content: ""; -} -.bp3-icon-menu-closed:before { - content: ""; -} -.bp3-icon-menu-open:before { - content: ""; -} -.bp3-icon-merge-columns:before { - content: ""; -} -.bp3-icon-merge-links:before { - content: ""; -} -.bp3-icon-minimize:before { - content: ""; -} -.bp3-icon-minus:before { - content: "−"; -} -.bp3-icon-mobile-phone:before { - content: ""; -} -.bp3-icon-mobile-video:before { - content: ""; -} -.bp3-icon-moon:before { - content: ""; -} -.bp3-icon-more:before { - content: ""; -} -.bp3-icon-mountain:before { - content: ""; -} -.bp3-icon-move:before { - content: ""; -} -.bp3-icon-mugshot:before { - content: ""; -} -.bp3-icon-multi-select:before { - content: ""; -} -.bp3-icon-music:before { - content: ""; -} -.bp3-icon-new-drawing:before { - content: ""; -} -.bp3-icon-new-grid-item:before { - content: ""; -} -.bp3-icon-new-layer:before { - content: ""; -} -.bp3-icon-new-layers:before { - content: ""; -} -.bp3-icon-new-link:before { - content: ""; -} -.bp3-icon-new-object:before { - content: ""; -} -.bp3-icon-new-person:before { - content: ""; -} -.bp3-icon-new-prescription:before { - content: ""; -} -.bp3-icon-new-text-box:before { - content: ""; -} -.bp3-icon-ninja:before { - content: ""; -} -.bp3-icon-not-equal-to:before { - content: ""; -} -.bp3-icon-notifications:before { - content: ""; -} -.bp3-icon-notifications-updated:before { - content: ""; -} -.bp3-icon-numbered-list:before { - content: ""; -} -.bp3-icon-numerical:before { - content: ""; -} -.bp3-icon-office:before { - content: ""; -} -.bp3-icon-offline:before { - content: ""; -} -.bp3-icon-oil-field:before { - content: ""; -} -.bp3-icon-one-column:before { - content: ""; -} -.bp3-icon-outdated:before { - content: ""; -} -.bp3-icon-page-layout:before { - content: ""; -} -.bp3-icon-panel-stats:before { - content: ""; -} -.bp3-icon-panel-table:before { - content: ""; -} -.bp3-icon-paperclip:before { - content: ""; -} -.bp3-icon-paragraph:before { - content: ""; -} -.bp3-icon-path:before { - content: ""; -} -.bp3-icon-path-search:before { - content: ""; -} -.bp3-icon-pause:before { - content: ""; -} -.bp3-icon-people:before { - content: ""; -} -.bp3-icon-percentage:before { - content: ""; -} -.bp3-icon-person:before { - content: ""; -} -.bp3-icon-phone:before { - content: "☎"; -} -.bp3-icon-pie-chart:before { - content: ""; -} -.bp3-icon-pin:before { - content: ""; -} -.bp3-icon-pivot:before { - content: ""; -} -.bp3-icon-pivot-table:before { - content: ""; -} -.bp3-icon-play:before { - content: ""; -} -.bp3-icon-plus:before { - content: "+"; -} -.bp3-icon-polygon-filter:before { - content: ""; -} -.bp3-icon-power:before { - content: ""; -} -.bp3-icon-predictive-analysis:before { - content: ""; -} -.bp3-icon-prescription:before { - content: ""; -} -.bp3-icon-presentation:before { - content: ""; -} -.bp3-icon-print:before { - content: "⎙"; -} -.bp3-icon-projects:before { - content: ""; -} -.bp3-icon-properties:before { - content: ""; -} -.bp3-icon-property:before { - content: ""; -} -.bp3-icon-publish-function:before { - content: ""; -} -.bp3-icon-pulse:before { - content: ""; -} -.bp3-icon-random:before { - content: ""; -} -.bp3-icon-record:before { - content: ""; -} -.bp3-icon-redo:before { - content: ""; -} -.bp3-icon-refresh:before { - content: ""; -} -.bp3-icon-regression-chart:before { - content: ""; -} -.bp3-icon-remove:before { - content: ""; -} -.bp3-icon-remove-column:before { - content: ""; -} -.bp3-icon-remove-column-left:before { - content: ""; -} -.bp3-icon-remove-column-right:before { - content: ""; -} -.bp3-icon-remove-row-bottom:before { - content: ""; -} -.bp3-icon-remove-row-top:before { - content: ""; -} -.bp3-icon-repeat:before { - content: ""; -} -.bp3-icon-reset:before { - content: ""; -} -.bp3-icon-resolve:before { - content: ""; -} -.bp3-icon-rig:before { - content: ""; -} -.bp3-icon-right-join:before { - content: ""; -} -.bp3-icon-ring:before { - content: ""; -} -.bp3-icon-rotate-document:before { - content: ""; -} -.bp3-icon-rotate-page:before { - content: ""; -} -.bp3-icon-satellite:before { - content: ""; -} -.bp3-icon-saved:before { - content: ""; -} -.bp3-icon-scatter-plot:before { - content: ""; -} -.bp3-icon-search:before { - content: ""; -} -.bp3-icon-search-around:before { - content: ""; -} -.bp3-icon-search-template:before { - content: ""; -} -.bp3-icon-search-text:before { - content: ""; -} -.bp3-icon-segmented-control:before { - content: ""; -} -.bp3-icon-select:before { - content: ""; -} -.bp3-icon-selection:before { - content: "⦿"; -} -.bp3-icon-send-to:before { - content: ""; -} -.bp3-icon-send-to-graph:before { - content: ""; -} -.bp3-icon-send-to-map:before { - content: ""; -} -.bp3-icon-series-add:before { - content: ""; -} -.bp3-icon-series-configuration:before { - content: ""; -} -.bp3-icon-series-derived:before { - content: ""; -} -.bp3-icon-series-filtered:before { - content: ""; -} -.bp3-icon-series-search:before { - content: ""; -} -.bp3-icon-settings:before { - content: ""; -} -.bp3-icon-share:before { - content: ""; -} -.bp3-icon-shield:before { - content: ""; -} -.bp3-icon-shop:before { - content: ""; -} -.bp3-icon-shopping-cart:before { - content: ""; -} -.bp3-icon-signal-search:before { - content: ""; -} -.bp3-icon-sim-card:before { - content: ""; -} -.bp3-icon-slash:before { - content: ""; -} -.bp3-icon-small-cross:before { - content: ""; -} -.bp3-icon-small-minus:before { - content: ""; -} -.bp3-icon-small-plus:before { - content: ""; -} -.bp3-icon-small-tick:before { - content: ""; -} -.bp3-icon-snowflake:before { - content: ""; -} -.bp3-icon-social-media:before { - content: ""; -} -.bp3-icon-sort:before { - content: ""; -} -.bp3-icon-sort-alphabetical:before { - content: ""; -} -.bp3-icon-sort-alphabetical-desc:before { - content: ""; -} -.bp3-icon-sort-asc:before { - content: ""; -} -.bp3-icon-sort-desc:before { - content: ""; -} -.bp3-icon-sort-numerical:before { - content: ""; -} -.bp3-icon-sort-numerical-desc:before { - content: ""; -} -.bp3-icon-split-columns:before { - content: ""; -} -.bp3-icon-square:before { - content: ""; -} -.bp3-icon-stacked-chart:before { - content: ""; -} -.bp3-icon-star:before { - content: "★"; -} -.bp3-icon-star-empty:before { - content: "☆"; -} -.bp3-icon-step-backward:before { - content: ""; -} -.bp3-icon-step-chart:before { - content: ""; -} -.bp3-icon-step-forward:before { - content: ""; -} -.bp3-icon-stop:before { - content: ""; -} -.bp3-icon-stopwatch:before { - content: ""; -} -.bp3-icon-strikethrough:before { - content: ""; -} -.bp3-icon-style:before { - content: ""; -} -.bp3-icon-swap-horizontal:before { - content: ""; -} -.bp3-icon-swap-vertical:before { - content: ""; -} -.bp3-icon-symbol-circle:before { - content: ""; -} -.bp3-icon-symbol-cross:before { - content: ""; -} -.bp3-icon-symbol-diamond:before { - content: ""; -} -.bp3-icon-symbol-square:before { - content: ""; -} -.bp3-icon-symbol-triangle-down:before { - content: ""; -} -.bp3-icon-symbol-triangle-up:before { - content: ""; -} -.bp3-icon-tag:before { - content: ""; -} -.bp3-icon-take-action:before { - content: ""; -} -.bp3-icon-taxi:before { - content: ""; -} -.bp3-icon-text-highlight:before { - content: ""; -} -.bp3-icon-th:before { - content: ""; -} -.bp3-icon-th-derived:before { - content: ""; -} -.bp3-icon-th-disconnect:before { - content: ""; -} -.bp3-icon-th-filtered:before { - content: ""; -} -.bp3-icon-th-list:before { - content: ""; -} -.bp3-icon-thumbs-down:before { - content: ""; -} -.bp3-icon-thumbs-up:before { - content: ""; -} -.bp3-icon-tick:before { - content: "✓"; -} -.bp3-icon-tick-circle:before { - content: ""; -} -.bp3-icon-time:before { - content: "⏲"; -} -.bp3-icon-timeline-area-chart:before { - content: ""; -} -.bp3-icon-timeline-bar-chart:before { - content: ""; -} -.bp3-icon-timeline-events:before { - content: ""; -} -.bp3-icon-timeline-line-chart:before { - content: ""; -} -.bp3-icon-tint:before { - content: ""; -} -.bp3-icon-torch:before { - content: ""; -} -.bp3-icon-tractor:before { - content: ""; -} -.bp3-icon-train:before { - content: ""; -} -.bp3-icon-translate:before { - content: ""; -} -.bp3-icon-trash:before { - content: ""; -} -.bp3-icon-tree:before { - content: ""; -} -.bp3-icon-trending-down:before { - content: ""; -} -.bp3-icon-trending-up:before { - content: ""; -} -.bp3-icon-truck:before { - content: ""; -} -.bp3-icon-two-columns:before { - content: ""; -} -.bp3-icon-unarchive:before { - content: ""; -} -.bp3-icon-underline:before { - content: "⎁"; -} -.bp3-icon-undo:before { - content: "⎌"; -} -.bp3-icon-ungroup-objects:before { - content: ""; -} -.bp3-icon-unknown-vehicle:before { - content: ""; -} -.bp3-icon-unlock:before { - content: ""; -} -.bp3-icon-unpin:before { - content: ""; -} -.bp3-icon-unresolve:before { - content: ""; -} -.bp3-icon-updated:before { - content: ""; -} -.bp3-icon-upload:before { - content: ""; -} -.bp3-icon-user:before { - content: ""; -} -.bp3-icon-variable:before { - content: ""; -} -.bp3-icon-vertical-bar-chart-asc:before { - content: ""; -} -.bp3-icon-vertical-bar-chart-desc:before { - content: ""; -} -.bp3-icon-vertical-distribution:before { - content: ""; -} -.bp3-icon-video:before { - content: ""; -} -.bp3-icon-volume-down:before { - content: ""; -} -.bp3-icon-volume-off:before { - content: ""; -} -.bp3-icon-volume-up:before { - content: ""; -} -.bp3-icon-walk:before { - content: ""; -} -.bp3-icon-warning-sign:before { - content: ""; -} -.bp3-icon-waterfall-chart:before { - content: ""; -} -.bp3-icon-widget:before { - content: ""; -} -.bp3-icon-widget-button:before { - content: ""; -} -.bp3-icon-widget-footer:before { - content: ""; -} -.bp3-icon-widget-header:before { - content: ""; -} -.bp3-icon-wrench:before { - content: ""; -} -.bp3-icon-zoom-in:before { - content: ""; -} -.bp3-icon-zoom-out:before { - content: ""; -} -.bp3-icon-zoom-to-fit:before { - content: ""; -} -.bp3-submenu .bp3-popover-target, -.bp3-submenu > .bp3-popover-wrapper { - display: block; -} -.bp3-submenu.bp3-popover { - box-shadow: none; - padding: 0 5px; -} -.bp3-submenu.bp3-popover > .bp3-popover-content { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-submenu.bp3-popover, -.bp3-submenu.bp3-popover.bp3-dark { - box-shadow: none; -} -.bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, -.bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); -} -.bp3-menu { - background: #fff; - border-radius: 3px; - color: #182026; - list-style: none; - margin: 0; - min-width: 180px; - padding: 5px; - text-align: left; -} -.bp3-menu-divider { - border-top: 1px solid rgba(16, 22, 26, 0.15); - display: block; - margin: 5px; -} -.bp3-dark .bp3-menu-divider { - border-top-color: hsla(0, 0%, 100%, 0.15); -} -.bp3-menu-item { - align-items: flex-start; - border-radius: 2px; - color: inherit; - display: flex; - flex-direction: row; - line-height: 20px; - padding: 5px 7px; - text-decoration: none; - -webkit-user-select: none; - -ms-user-select: none; - user-select: none; -} -.bp3-menu-item > * { - flex-grow: 0; - flex-shrink: 0; -} -.bp3-menu-item > .bp3-fill { - flex-grow: 1; - flex-shrink: 1; -} -.bp3-menu-item:before, -.bp3-menu-item > * { - margin-right: 7px; -} -.bp3-menu-item:empty:before, -.bp3-menu-item > :last-child { - margin-right: 0; -} -.bp3-menu-item > .bp3-fill { - word-break: break-word; -} -.bp3-menu-item:hover, -.bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item { - background-color: rgba(167, 182, 194, 0.3); - cursor: pointer; - text-decoration: none; -} -.bp3-menu-item.bp3-disabled { - background-color: inherit; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-dark .bp3-menu-item { - color: inherit; -} -.bp3-dark .bp3-menu-item:hover, -.bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, -.bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item { - background-color: rgba(138, 155, 168, 0.15); - color: inherit; -} -.bp3-dark .bp3-menu-item.bp3-disabled { - background-color: inherit; - color: rgba(167, 182, 194, 0.6); -} -.bp3-menu-item.bp3-intent-primary { - color: #106ba3; -} -.bp3-menu-item.bp3-intent-primary .bp3-icon { - color: inherit; -} -.bp3-menu-item.bp3-intent-primary .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-primary:after, -.bp3-menu-item.bp3-intent-primary:before { - color: #106ba3; -} -.bp3-menu-item.bp3-intent-primary.bp3-active, -.bp3-menu-item.bp3-intent-primary:hover, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item { - background-color: #137cbd; -} -.bp3-menu-item.bp3-intent-primary:active { - background-color: #106ba3; -} -.bp3-menu-item.bp3-intent-primary.bp3-active, -.bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-primary.bp3-active:after, -.bp3-menu-item.bp3-intent-primary.bp3-active:before, -.bp3-menu-item.bp3-intent-primary:active, -.bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-primary:active:after, -.bp3-menu-item.bp3-intent-primary:active:before, -.bp3-menu-item.bp3-intent-primary:hover, -.bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-primary:hover:after, -.bp3-menu-item.bp3-intent-primary:hover:before, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item - .bp3-menu-item-label, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item:after, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item:before { - color: #fff; -} -.bp3-menu-item.bp3-intent-success { - color: #0d8050; -} -.bp3-menu-item.bp3-intent-success .bp3-icon { - color: inherit; -} -.bp3-menu-item.bp3-intent-success .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-success:after, -.bp3-menu-item.bp3-intent-success:before { - color: #0d8050; -} -.bp3-menu-item.bp3-intent-success.bp3-active, -.bp3-menu-item.bp3-intent-success:hover, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item { - background-color: #0f9960; -} -.bp3-menu-item.bp3-intent-success:active { - background-color: #0d8050; -} -.bp3-menu-item.bp3-intent-success.bp3-active, -.bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-success.bp3-active:after, -.bp3-menu-item.bp3-intent-success.bp3-active:before, -.bp3-menu-item.bp3-intent-success:active, -.bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-success:active:after, -.bp3-menu-item.bp3-intent-success:active:before, -.bp3-menu-item.bp3-intent-success:hover, -.bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-success:hover:after, -.bp3-menu-item.bp3-intent-success:hover:before, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item - .bp3-menu-item-label, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item:after, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item:before { - color: #fff; -} -.bp3-menu-item.bp3-intent-warning { - color: #bf7326; -} -.bp3-menu-item.bp3-intent-warning .bp3-icon { - color: inherit; -} -.bp3-menu-item.bp3-intent-warning .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-warning:after, -.bp3-menu-item.bp3-intent-warning:before { - color: #bf7326; -} -.bp3-menu-item.bp3-intent-warning.bp3-active, -.bp3-menu-item.bp3-intent-warning:hover, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item { - background-color: #d9822b; -} -.bp3-menu-item.bp3-intent-warning:active { - background-color: #bf7326; -} -.bp3-menu-item.bp3-intent-warning.bp3-active, -.bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-warning.bp3-active:after, -.bp3-menu-item.bp3-intent-warning.bp3-active:before, -.bp3-menu-item.bp3-intent-warning:active, -.bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-warning:active:after, -.bp3-menu-item.bp3-intent-warning:active:before, -.bp3-menu-item.bp3-intent-warning:hover, -.bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-warning:hover:after, -.bp3-menu-item.bp3-intent-warning:hover:before, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item - .bp3-menu-item-label, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item:after, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item:before { - color: #fff; -} -.bp3-menu-item.bp3-intent-danger { - color: #c23030; -} -.bp3-menu-item.bp3-intent-danger .bp3-icon { - color: inherit; -} -.bp3-menu-item.bp3-intent-danger .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-danger:after, -.bp3-menu-item.bp3-intent-danger:before { - color: #c23030; -} -.bp3-menu-item.bp3-intent-danger.bp3-active, -.bp3-menu-item.bp3-intent-danger:hover, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item { - background-color: #db3737; -} -.bp3-menu-item.bp3-intent-danger:active { - background-color: #c23030; -} -.bp3-menu-item.bp3-intent-danger.bp3-active, -.bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-danger.bp3-active:after, -.bp3-menu-item.bp3-intent-danger.bp3-active:before, -.bp3-menu-item.bp3-intent-danger:active, -.bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-danger:active:after, -.bp3-menu-item.bp3-intent-danger:active:before, -.bp3-menu-item.bp3-intent-danger:hover, -.bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label, -.bp3-menu-item.bp3-intent-danger:hover:after, -.bp3-menu-item.bp3-intent-danger:hover:before, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item - .bp3-menu-item-label, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item:after, -.bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item:before { - color: #fff; -} -.bp3-menu-item:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: Icons16, sans-serif; - font-size: 16px; - font-style: normal; - font-weight: 400; - line-height: 1; - margin-right: 7px; -} -.bp3-menu-item:before, -.bp3-menu-item > .bp3-icon { - color: #5c7080; - margin-top: 2px; -} -.bp3-menu-item .bp3-menu-item-label { - color: #5c7080; -} -.bp3-menu-item:hover, -.bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item { - color: inherit; -} -.bp3-menu-item.bp3-active, -.bp3-menu-item:active { - background-color: rgba(115, 134, 148, 0.3); -} -.bp3-menu-item.bp3-disabled { - background-color: inherit !important; - cursor: not-allowed !important; - outline: none !important; -} -.bp3-menu-item.bp3-disabled, -.bp3-menu-item.bp3-disabled .bp3-menu-item-label, -.bp3-menu-item.bp3-disabled:before, -.bp3-menu-item.bp3-disabled > .bp3-icon { - color: rgba(92, 112, 128, 0.6) !important; -} -.bp3-large .bp3-menu-item { - font-size: 16px; - line-height: 22px; - padding: 9px 7px; -} -.bp3-large .bp3-menu-item .bp3-icon { - margin-top: 3px; -} -.bp3-large .bp3-menu-item:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: Icons20, sans-serif; - font-size: 20px; - font-style: normal; - font-weight: 400; - line-height: 1; - margin-right: 10px; - margin-top: 1px; -} -button.bp3-menu-item { - background: none; - border: none; - text-align: left; - width: 100%; -} -.bp3-menu-header { - border-top: 1px solid rgba(16, 22, 26, 0.15); - cursor: default; - display: block; - margin: 5px; - padding-left: 2px; -} -.bp3-dark .bp3-menu-header { - border-top-color: hsla(0, 0%, 100%, 0.15); -} -.bp3-menu-header:first-of-type { - border-top: none; -} -.bp3-menu-header > h6 { - word-wrap: normal; - color: #182026; - font-weight: 600; - line-height: 17px; - margin: 0; - overflow: hidden; - padding: 10px 7px 0 1px; - text-overflow: ellipsis; - white-space: nowrap; -} -.bp3-menu-header:first-of-type > h6 { - padding-top: 0; -} -.bp3-large .bp3-menu-header > h6 { - font-size: 18px; - padding-bottom: 5px; - padding-top: 15px; -} -.bp3-large .bp3-menu-header:first-of-type > h6 { - padding-top: 0; -} -.bp3-dark .bp3-menu { - background: #30404d; - color: #f5f8fa; -} -.bp3-dark .bp3-menu-item.bp3-intent-primary { - color: #48aff0; -} -.bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon { - color: inherit; -} -.bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-primary:after, -.bp3-dark .bp3-menu-item.bp3-intent-primary:before { - color: #48aff0; -} -.bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, -.bp3-dark .bp3-menu-item.bp3-intent-primary:hover, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item { - background-color: #137cbd; -} -.bp3-dark .bp3-menu-item.bp3-intent-primary:active { - background-color: #106ba3; -} -.bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, -.bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active:after, -.bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active:before, -.bp3-dark .bp3-menu-item.bp3-intent-primary:active, -.bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-primary:active:after, -.bp3-dark .bp3-menu-item.bp3-intent-primary:active:before, -.bp3-dark .bp3-menu-item.bp3-intent-primary:hover, -.bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-primary:hover:after, -.bp3-dark .bp3-menu-item.bp3-intent-primary:hover:before, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item - .bp3-menu-item-label, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item:after, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item:before, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item - .bp3-menu-item-label, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item:after, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-primary.bp3-menu-item:before { - color: #fff; -} -.bp3-dark .bp3-menu-item.bp3-intent-success { - color: #3dcc91; -} -.bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon { - color: inherit; -} -.bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-success:after, -.bp3-dark .bp3-menu-item.bp3-intent-success:before { - color: #3dcc91; -} -.bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, -.bp3-dark .bp3-menu-item.bp3-intent-success:hover, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item { - background-color: #0f9960; -} -.bp3-dark .bp3-menu-item.bp3-intent-success:active { - background-color: #0d8050; -} -.bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, -.bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active:after, -.bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active:before, -.bp3-dark .bp3-menu-item.bp3-intent-success:active, -.bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-success:active:after, -.bp3-dark .bp3-menu-item.bp3-intent-success:active:before, -.bp3-dark .bp3-menu-item.bp3-intent-success:hover, -.bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-success:hover:after, -.bp3-dark .bp3-menu-item.bp3-intent-success:hover:before, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item - .bp3-menu-item-label, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item:after, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item:before, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item - .bp3-menu-item-label, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item:after, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-success.bp3-menu-item:before { - color: #fff; -} -.bp3-dark .bp3-menu-item.bp3-intent-warning { - color: #ffb366; -} -.bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon { - color: inherit; -} -.bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-warning:after, -.bp3-dark .bp3-menu-item.bp3-intent-warning:before { - color: #ffb366; -} -.bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, -.bp3-dark .bp3-menu-item.bp3-intent-warning:hover, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item { - background-color: #d9822b; -} -.bp3-dark .bp3-menu-item.bp3-intent-warning:active { - background-color: #bf7326; -} -.bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, -.bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active:after, -.bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active:before, -.bp3-dark .bp3-menu-item.bp3-intent-warning:active, -.bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-warning:active:after, -.bp3-dark .bp3-menu-item.bp3-intent-warning:active:before, -.bp3-dark .bp3-menu-item.bp3-intent-warning:hover, -.bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-warning:hover:after, -.bp3-dark .bp3-menu-item.bp3-intent-warning:hover:before, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item - .bp3-menu-item-label, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item:after, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item:before, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item - .bp3-menu-item-label, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item:after, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-warning.bp3-menu-item:before { - color: #fff; -} -.bp3-dark .bp3-menu-item.bp3-intent-danger { - color: #ff7373; -} -.bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon { - color: inherit; -} -.bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-danger:after, -.bp3-dark .bp3-menu-item.bp3-intent-danger:before { - color: #ff7373; -} -.bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, -.bp3-dark .bp3-menu-item.bp3-intent-danger:hover, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item { - background-color: #db3737; -} -.bp3-dark .bp3-menu-item.bp3-intent-danger:active { - background-color: #c23030; -} -.bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, -.bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active:after, -.bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active:before, -.bp3-dark .bp3-menu-item.bp3-intent-danger:active, -.bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-danger:active:after, -.bp3-dark .bp3-menu-item.bp3-intent-danger:active:before, -.bp3-dark .bp3-menu-item.bp3-intent-danger:hover, -.bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-intent-danger:hover:after, -.bp3-dark .bp3-menu-item.bp3-intent-danger:hover:before, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item - .bp3-menu-item-label, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item:after, -.bp3-dark - .bp3-submenu - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item:before, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item - .bp3-menu-item-label, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item:after, -.bp3-submenu - .bp3-dark - .bp3-popover-target.bp3-popover-open - > .bp3-intent-danger.bp3-menu-item:before { - color: #fff; -} -.bp3-dark .bp3-menu-item .bp3-menu-item-label, -.bp3-dark .bp3-menu-item:before, -.bp3-dark .bp3-menu-item > .bp3-icon { - color: #a7b6c2; -} -.bp3-dark .bp3-menu-item.bp3-active, -.bp3-dark .bp3-menu-item:active { - background-color: rgba(138, 155, 168, 0.3); -} -.bp3-dark .bp3-menu-item.bp3-disabled, -.bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label, -.bp3-dark .bp3-menu-item.bp3-disabled:before, -.bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon { - color: rgba(167, 182, 194, 0.6) !important; -} -.bp3-dark .bp3-menu-divider, -.bp3-dark .bp3-menu-header { - border-color: hsla(0, 0%, 100%, 0.15); -} -.bp3-dark .bp3-menu-header > h6 { - color: #f5f8fa; -} -.bp3-label .bp3-menu { - margin-top: 5px; -} -.bp3-navbar { - background-color: #fff; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.2); - height: 50px; - padding: 0 15px; - position: relative; - width: 100%; - z-index: 10; -} -.bp3-dark .bp3-navbar, -.bp3-navbar.bp3-dark { - background-color: #394b59; -} -.bp3-navbar.bp3-dark { - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-navbar { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), - 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-navbar.bp3-fixed-top { - left: 0; - position: fixed; - right: 0; - top: 0; -} -.bp3-navbar-heading { - font-size: 16px; - margin-right: 15px; -} -.bp3-navbar-group { - align-items: center; - display: flex; - height: 50px; -} -.bp3-navbar-group.bp3-align-left { - float: left; -} -.bp3-navbar-group.bp3-align-right { - float: right; -} -.bp3-navbar-divider { - border-left: 1px solid rgba(16, 22, 26, 0.15); - height: 20px; - margin: 0 10px; -} -.bp3-dark .bp3-navbar-divider { - border-left-color: hsla(0, 0%, 100%, 0.15); -} -.bp3-non-ideal-state { - align-items: center; - display: flex; - flex-direction: column; - height: 100%; - justify-content: center; - text-align: center; - width: 100%; -} -.bp3-non-ideal-state > * { - flex-grow: 0; - flex-shrink: 0; -} -.bp3-non-ideal-state > .bp3-fill { - flex-grow: 1; - flex-shrink: 1; -} -.bp3-non-ideal-state:before, -.bp3-non-ideal-state > * { - margin-bottom: 20px; -} -.bp3-non-ideal-state:empty:before, -.bp3-non-ideal-state > :last-child { - margin-bottom: 0; -} -.bp3-non-ideal-state > * { - max-width: 400px; -} -.bp3-non-ideal-state-visual { - color: rgba(92, 112, 128, 0.6); - font-size: 60px; -} -.bp3-dark .bp3-non-ideal-state-visual { - color: rgba(167, 182, 194, 0.6); -} -.bp3-overflow-list { - display: flex; - flex-wrap: nowrap; - min-width: 0; -} -.bp3-overflow-list-spacer { - flex-shrink: 1; - width: 1px; -} -body.bp3-overlay-open { - overflow: hidden; -} -.bp3-overlay { - bottom: 0; - left: 0; - position: static; - right: 0; - top: 0; - z-index: 20; -} -.bp3-overlay:not(.bp3-overlay-open) { - pointer-events: none; -} -.bp3-overlay.bp3-overlay-container { - overflow: hidden; - position: fixed; -} -.bp3-overlay.bp3-overlay-container.bp3-overlay-inline { - position: absolute; -} -.bp3-overlay.bp3-overlay-scroll-container { - overflow: auto; - position: fixed; -} -.bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline { - position: absolute; -} -.bp3-overlay.bp3-overlay-inline { - display: inline; - overflow: visible; -} -.bp3-overlay-content { - position: fixed; - z-index: 20; -} -.bp3-overlay-inline .bp3-overlay-content, -.bp3-overlay-scroll-container .bp3-overlay-content { - position: absolute; -} -.bp3-overlay-backdrop { - background-color: rgba(16, 22, 26, 0.7); - bottom: 0; - left: 0; - opacity: 1; - overflow: auto; - position: fixed; - right: 0; - top: 0; - -webkit-user-select: none; - -ms-user-select: none; - user-select: none; - z-index: 20; -} -.bp3-overlay-backdrop.bp3-overlay-appear, -.bp3-overlay-backdrop.bp3-overlay-enter { - opacity: 0; -} -.bp3-overlay-backdrop.bp3-overlay-appear-active, -.bp3-overlay-backdrop.bp3-overlay-enter-active { - opacity: 1; - transition-delay: 0; - transition-duration: 0.2s; - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-overlay-backdrop.bp3-overlay-exit { - opacity: 1; -} -.bp3-overlay-backdrop.bp3-overlay-exit-active { - opacity: 0; - transition-delay: 0; - transition-duration: 0.2s; - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-overlay-backdrop:focus { - outline: none; -} -.bp3-overlay-inline .bp3-overlay-backdrop { - position: absolute; -} -.bp3-panel-stack { - overflow: hidden; - position: relative; -} -.bp3-panel-stack-header { - align-items: center; - box-shadow: 0 1px rgba(16, 22, 26, 0.15); - display: flex; - flex-shrink: 0; - height: 30px; - z-index: 1; -} -.bp3-dark .bp3-panel-stack-header { - box-shadow: 0 1px hsla(0, 0%, 100%, 0.15); -} -.bp3-panel-stack-header > span { - align-items: stretch; - display: flex; - flex: 1 1; -} -.bp3-panel-stack-header .bp3-heading { - margin: 0 5px; -} -.bp3-button.bp3-panel-stack-header-back { - margin-left: 5px; - padding-left: 0; - white-space: nowrap; -} -.bp3-button.bp3-panel-stack-header-back .bp3-icon { - margin: 0 2px; -} -.bp3-panel-stack-view { - background-color: #fff; - border-right: 1px solid rgba(16, 22, 26, 0.15); - bottom: 0; - display: flex; - flex-direction: column; - left: 0; - margin-right: -1px; - overflow-y: auto; - position: absolute; - right: 0; - top: 0; - z-index: 1; -} -.bp3-dark .bp3-panel-stack-view { - background-color: #30404d; -} -.bp3-panel-stack-view:nth-last-child(n + 4) { - display: none; -} -.bp3-panel-stack-push .bp3-panel-stack-appear, -.bp3-panel-stack-push .bp3-panel-stack-enter { - opacity: 0; - -webkit-transform: translateX(100%); - transform: translateX(100%); -} -.bp3-panel-stack-push .bp3-panel-stack-appear-active, -.bp3-panel-stack-push .bp3-panel-stack-enter-active { - opacity: 1; - -webkit-transform: translate(0); - transform: translate(0); - transition-delay: 0; - transition-duration: 0.4s; - transition-property: opacity, -webkit-transform; - transition-property: transform, opacity; - transition-property: transform, opacity, -webkit-transform; - transition-timing-function: ease; -} -.bp3-panel-stack-push .bp3-panel-stack-exit { - opacity: 1; - -webkit-transform: translate(0); - transform: translate(0); -} -.bp3-panel-stack-push .bp3-panel-stack-exit-active { - transition-delay: 0; - transition-duration: 0.4s; - transition-property: opacity, -webkit-transform; - transition-property: transform, opacity; - transition-property: transform, opacity, -webkit-transform; - transition-timing-function: ease; -} -.bp3-panel-stack-pop .bp3-panel-stack-appear, -.bp3-panel-stack-pop .bp3-panel-stack-enter, -.bp3-panel-stack-push .bp3-panel-stack-exit-active { - opacity: 0; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); -} -.bp3-panel-stack-pop .bp3-panel-stack-appear-active, -.bp3-panel-stack-pop .bp3-panel-stack-enter-active { - opacity: 1; - -webkit-transform: translate(0); - transform: translate(0); - transition-delay: 0; - transition-duration: 0.4s; - transition-property: opacity, -webkit-transform; - transition-property: transform, opacity; - transition-property: transform, opacity, -webkit-transform; - transition-timing-function: ease; -} -.bp3-panel-stack-pop .bp3-panel-stack-exit { - opacity: 1; - -webkit-transform: translate(0); - transform: translate(0); -} -.bp3-panel-stack-pop .bp3-panel-stack-exit-active { - opacity: 0; - -webkit-transform: translateX(100%); - transform: translateX(100%); - transition-delay: 0; - transition-duration: 0.4s; - transition-property: opacity, -webkit-transform; - transition-property: transform, opacity; - transition-property: transform, opacity, -webkit-transform; - transition-timing-function: ease; -} -.bp3-panel-stack2 { - overflow: hidden; - position: relative; -} -.bp3-panel-stack2-header { - align-items: center; - box-shadow: 0 1px rgba(16, 22, 26, 0.15); - display: flex; - flex-shrink: 0; - height: 30px; - z-index: 1; -} -.bp3-dark .bp3-panel-stack2-header { - box-shadow: 0 1px hsla(0, 0%, 100%, 0.15); -} -.bp3-panel-stack2-header > span { - align-items: stretch; - display: flex; - flex: 1 1; -} -.bp3-panel-stack2-header .bp3-heading { - margin: 0 5px; -} -.bp3-button.bp3-panel-stack2-header-back { - margin-left: 5px; - padding-left: 0; - white-space: nowrap; -} -.bp3-button.bp3-panel-stack2-header-back .bp3-icon { - margin: 0 2px; -} -.bp3-panel-stack2-view { - background-color: #fff; - border-right: 1px solid rgba(16, 22, 26, 0.15); - bottom: 0; - display: flex; - flex-direction: column; - left: 0; - margin-right: -1px; - overflow-y: auto; - position: absolute; - right: 0; - top: 0; - z-index: 1; -} -.bp3-dark .bp3-panel-stack2-view { - background-color: #30404d; -} -.bp3-panel-stack2-view:nth-last-child(n + 4) { - display: none; -} -.bp3-panel-stack2-push .bp3-panel-stack2-appear, -.bp3-panel-stack2-push .bp3-panel-stack2-enter { - opacity: 0; - -webkit-transform: translateX(100%); - transform: translateX(100%); -} -.bp3-panel-stack2-push .bp3-panel-stack2-appear-active, -.bp3-panel-stack2-push .bp3-panel-stack2-enter-active { - opacity: 1; - -webkit-transform: translate(0); - transform: translate(0); - transition-delay: 0; - transition-duration: 0.4s; - transition-property: opacity, -webkit-transform; - transition-property: transform, opacity; - transition-property: transform, opacity, -webkit-transform; - transition-timing-function: ease; -} -.bp3-panel-stack2-push .bp3-panel-stack2-exit { - opacity: 1; - -webkit-transform: translate(0); - transform: translate(0); -} -.bp3-panel-stack2-push .bp3-panel-stack2-exit-active { - transition-delay: 0; - transition-duration: 0.4s; - transition-property: opacity, -webkit-transform; - transition-property: transform, opacity; - transition-property: transform, opacity, -webkit-transform; - transition-timing-function: ease; -} -.bp3-panel-stack2-pop .bp3-panel-stack2-appear, -.bp3-panel-stack2-pop .bp3-panel-stack2-enter, -.bp3-panel-stack2-push .bp3-panel-stack2-exit-active { - opacity: 0; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); -} -.bp3-panel-stack2-pop .bp3-panel-stack2-appear-active, -.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active { - opacity: 1; - -webkit-transform: translate(0); - transform: translate(0); - transition-delay: 0; - transition-duration: 0.4s; - transition-property: opacity, -webkit-transform; - transition-property: transform, opacity; - transition-property: transform, opacity, -webkit-transform; - transition-timing-function: ease; -} -.bp3-panel-stack2-pop .bp3-panel-stack2-exit { - opacity: 1; - -webkit-transform: translate(0); - transform: translate(0); -} -.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active { - opacity: 0; - -webkit-transform: translateX(100%); - transform: translateX(100%); - transition-delay: 0; - transition-duration: 0.4s; - transition-property: opacity, -webkit-transform; - transition-property: transform, opacity; - transition-property: transform, opacity, -webkit-transform; - transition-timing-function: ease; -} -.bp3-popover { - border-radius: 3px; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - display: inline-block; - -webkit-transform: scale(1); - transform: scale(1); - z-index: 20; -} -.bp3-popover .bp3-popover-arrow { - height: 30px; - position: absolute; - width: 30px; -} -.bp3-popover .bp3-popover-arrow:before { - height: 20px; - margin: 5px; - width: 20px; -} -.bp3-tether-element-attached-bottom.bp3-tether-target-attached-top - > .bp3-popover { - margin-bottom: 17px; - margin-top: -17px; -} -.bp3-tether-element-attached-bottom.bp3-tether-target-attached-top - > .bp3-popover - > .bp3-popover-arrow { - bottom: -11px; -} -.bp3-tether-element-attached-bottom.bp3-tether-target-attached-top - > .bp3-popover - > .bp3-popover-arrow - svg { - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); -} -.bp3-tether-element-attached-left.bp3-tether-target-attached-right - > .bp3-popover { - margin-left: 17px; -} -.bp3-tether-element-attached-left.bp3-tether-target-attached-right - > .bp3-popover - > .bp3-popover-arrow { - left: -11px; -} -.bp3-tether-element-attached-left.bp3-tether-target-attached-right - > .bp3-popover - > .bp3-popover-arrow - svg { - -webkit-transform: rotate(0); - transform: rotate(0); -} -.bp3-tether-element-attached-top.bp3-tether-target-attached-bottom - > .bp3-popover { - margin-top: 17px; -} -.bp3-tether-element-attached-top.bp3-tether-target-attached-bottom - > .bp3-popover - > .bp3-popover-arrow { - top: -11px; -} -.bp3-tether-element-attached-top.bp3-tether-target-attached-bottom - > .bp3-popover - > .bp3-popover-arrow - svg { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); -} -.bp3-tether-element-attached-right.bp3-tether-target-attached-left - > .bp3-popover { - margin-left: -17px; - margin-right: 17px; -} -.bp3-tether-element-attached-right.bp3-tether-target-attached-left - > .bp3-popover - > .bp3-popover-arrow { - right: -11px; -} -.bp3-tether-element-attached-right.bp3-tether-target-attached-left - > .bp3-popover - > .bp3-popover-arrow - svg { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); -} -.bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow { - top: 50%; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); -} -.bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow { - right: 50%; - -webkit-transform: translateX(50%); - transform: translateX(50%); -} -.bp3-tether-element-attached-top.bp3-tether-target-attached-top - > .bp3-popover - > .bp3-popover-arrow { - top: -0.3934px; -} -.bp3-tether-element-attached-right.bp3-tether-target-attached-right - > .bp3-popover - > .bp3-popover-arrow { - right: -0.3934px; -} -.bp3-tether-element-attached-left.bp3-tether-target-attached-left - > .bp3-popover - > .bp3-popover-arrow { - left: -0.3934px; -} -.bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom - > .bp3-popover - > .bp3-popover-arrow { - bottom: -0.3934px; -} -.bp3-tether-element-attached-top.bp3-tether-element-attached-left - > .bp3-popover { - -webkit-transform-origin: top left; - transform-origin: top left; -} -.bp3-tether-element-attached-top.bp3-tether-element-attached-center - > .bp3-popover { - -webkit-transform-origin: top center; - transform-origin: top center; -} -.bp3-tether-element-attached-top.bp3-tether-element-attached-right - > .bp3-popover { - -webkit-transform-origin: top right; - transform-origin: top right; -} -.bp3-tether-element-attached-middle.bp3-tether-element-attached-left - > .bp3-popover { - -webkit-transform-origin: center left; - transform-origin: center left; -} -.bp3-tether-element-attached-middle.bp3-tether-element-attached-center - > .bp3-popover { - -webkit-transform-origin: center center; - transform-origin: center center; -} -.bp3-tether-element-attached-middle.bp3-tether-element-attached-right - > .bp3-popover { - -webkit-transform-origin: center right; - transform-origin: center right; -} -.bp3-tether-element-attached-bottom.bp3-tether-element-attached-left - > .bp3-popover { - -webkit-transform-origin: bottom left; - transform-origin: bottom left; -} -.bp3-tether-element-attached-bottom.bp3-tether-element-attached-center - > .bp3-popover { - -webkit-transform-origin: bottom center; - transform-origin: bottom center; -} -.bp3-tether-element-attached-bottom.bp3-tether-element-attached-right - > .bp3-popover { - -webkit-transform-origin: bottom right; - transform-origin: bottom right; -} -.bp3-popover .bp3-popover-content { - background: #fff; -} -.bp3-popover .bp3-heading, -.bp3-popover .bp3-popover-content { - color: inherit; -} -.bp3-popover .bp3-popover-arrow:before { - box-shadow: 1px 1px 6px rgba(16, 22, 26, 0.2); -} -.bp3-popover .bp3-popover-arrow-border { - fill: #10161a; - fill-opacity: 0.1; -} -.bp3-popover .bp3-popover-arrow-fill { - fill: #fff; -} -.bp3-popover-appear > .bp3-popover, -.bp3-popover-enter > .bp3-popover { - -webkit-transform: scale(0.3); - transform: scale(0.3); -} -.bp3-popover-appear-active > .bp3-popover, -.bp3-popover-enter-active > .bp3-popover { - -webkit-transform: scale(1); - transform: scale(1); - transition-delay: 0; - transition-duration: 0.3s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); -} -.bp3-popover-exit > .bp3-popover { - -webkit-transform: scale(1); - transform: scale(1); -} -.bp3-popover-exit-active > .bp3-popover { - -webkit-transform: scale(0.3); - transform: scale(0.3); - transition-delay: 0; - transition-duration: 0.3s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); -} -.bp3-popover .bp3-popover-content { - border-radius: 3px; - position: relative; -} -.bp3-popover.bp3-popover-content-sizing .bp3-popover-content { - max-width: 350px; - padding: 20px; -} -.bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing { - width: 350px; -} -.bp3-popover.bp3-minimal { - margin: 0 !important; -} -.bp3-popover.bp3-minimal .bp3-popover-arrow { - display: none; -} -.bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover, -.bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, -.bp3-popover.bp3-minimal.bp3-popover { - -webkit-transform: scale(1); - transform: scale(1); -} -.bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover, -.bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover { - -webkit-transform: scale(1); - transform: scale(1); - transition-delay: 0; - transition-duration: 0.1s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover { - -webkit-transform: scale(1); - transform: scale(1); -} -.bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover { - -webkit-transform: scale(1); - transform: scale(1); - transition-delay: 0; - transition-duration: 0.1s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-dark .bp3-popover, -.bp3-popover.bp3-dark { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-popover .bp3-popover-content, -.bp3-popover.bp3-dark .bp3-popover-content { - background: #30404d; -} -.bp3-dark .bp3-popover .bp3-heading, -.bp3-dark .bp3-popover .bp3-popover-content, -.bp3-popover.bp3-dark .bp3-heading, -.bp3-popover.bp3-dark .bp3-popover-content { - color: inherit; -} -.bp3-dark .bp3-popover .bp3-popover-arrow:before, -.bp3-popover.bp3-dark .bp3-popover-arrow:before { - box-shadow: 1px 1px 6px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-popover .bp3-popover-arrow-border, -.bp3-popover.bp3-dark .bp3-popover-arrow-border { - fill: #10161a; - fill-opacity: 0.2; -} -.bp3-dark .bp3-popover .bp3-popover-arrow-fill, -.bp3-popover.bp3-dark .bp3-popover-arrow-fill { - fill: #30404d; -} -.bp3-popover-arrow:before { - border-radius: 2px; - content: ""; - display: block; - position: absolute; - -webkit-transform: rotate(45deg); - transform: rotate(45deg); -} -.bp3-tether-pinned .bp3-popover-arrow { - display: none; -} -.bp3-popover-backdrop { - background: hsla(0, 0%, 100%, 0); -} -.bp3-transition-container { - display: flex; - opacity: 1; - z-index: 20; -} -.bp3-transition-container.bp3-popover-appear, -.bp3-transition-container.bp3-popover-enter { - opacity: 0; -} -.bp3-transition-container.bp3-popover-appear-active, -.bp3-transition-container.bp3-popover-enter-active { - opacity: 1; - transition-delay: 0; - transition-duration: 0.1s; - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-transition-container.bp3-popover-exit { - opacity: 1; -} -.bp3-transition-container.bp3-popover-exit-active { - opacity: 0; - transition-delay: 0; - transition-duration: 0.1s; - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-transition-container:focus { - outline: none; -} -.bp3-transition-container.bp3-popover-leave .bp3-popover-content { - pointer-events: none; -} -.bp3-transition-container[data-x-out-of-boundaries] { - display: none; -} -span.bp3-popover-target { - display: inline-block; -} -.bp3-popover-wrapper.bp3-fill { - width: 100%; -} -.bp3-portal { - left: 0; - position: absolute; - right: 0; - top: 0; -} -@-webkit-keyframes linear-progress-bar-stripes { - 0% { - background-position: 0 0; - } - to { - background-position: 30px 0; - } -} -@keyframes linear-progress-bar-stripes { - 0% { - background-position: 0 0; - } - to { - background-position: 30px 0; - } -} -.bp3-progress-bar { - background: rgba(92, 112, 128, 0.2); - border-radius: 40px; - display: block; - height: 8px; - overflow: hidden; - position: relative; - width: 100%; -} -.bp3-progress-bar .bp3-progress-meter { - background: linear-gradient( - -45deg, - hsla(0, 0%, 100%, 0.2) 25%, - transparent 0, - transparent 50%, - hsla(0, 0%, 100%, 0.2) 0, - hsla(0, 0%, 100%, 0.2) 75%, - transparent 0 - ); - background-color: rgba(92, 112, 128, 0.8); - background-size: 30px 30px; - border-radius: 40px; - height: 100%; - position: absolute; - transition: width 0.2s cubic-bezier(0.4, 1, 0.75, 0.9); - width: 100%; -} -.bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) - .bp3-progress-meter { - animation: linear-progress-bar-stripes 0.3s linear infinite reverse; -} -.bp3-progress-bar.bp3-no-stripes .bp3-progress-meter { - background-image: none; -} -.bp3-dark .bp3-progress-bar { - background: rgba(16, 22, 26, 0.5); -} -.bp3-dark .bp3-progress-bar .bp3-progress-meter { - background-color: #8a9ba8; -} -.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter { - background-color: #137cbd; -} -.bp3-progress-bar.bp3-intent-success .bp3-progress-meter { - background-color: #0f9960; -} -.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter { - background-color: #d9822b; -} -.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter { - background-color: #db3737; -} -@-webkit-keyframes skeleton-glow { - 0% { - background: rgba(206, 217, 224, 0.2); - border-color: rgba(206, 217, 224, 0.2); - } - to { - background: rgba(92, 112, 128, 0.2); - border-color: rgba(92, 112, 128, 0.2); - } -} -@keyframes skeleton-glow { - 0% { - background: rgba(206, 217, 224, 0.2); - border-color: rgba(206, 217, 224, 0.2); - } - to { - background: rgba(92, 112, 128, 0.2); - border-color: rgba(92, 112, 128, 0.2); - } -} -.bp3-skeleton { - -webkit-animation: skeleton-glow 1s linear infinite alternate; - animation: skeleton-glow 1s linear infinite alternate; - background: rgba(206, 217, 224, 0.2); - background-clip: padding-box !important; - border-color: rgba(206, 217, 224, 0.2) !important; - border-radius: 2px; - box-shadow: none !important; - color: transparent !important; - cursor: default; - pointer-events: none; - -webkit-user-select: none; - -ms-user-select: none; - user-select: none; -} -.bp3-skeleton *, -.bp3-skeleton:after, -.bp3-skeleton:before { - visibility: hidden !important; -} -.bp3-slider { - cursor: default; - height: 40px; - min-width: 150px; - outline: none; - position: relative; - -webkit-user-select: none; - -ms-user-select: none; - user-select: none; - width: 100%; -} -.bp3-slider:hover { - cursor: pointer; -} -.bp3-slider:active { - cursor: grabbing; -} -.bp3-slider.bp3-disabled { - cursor: not-allowed; - opacity: 0.5; -} -.bp3-slider.bp3-slider-unlabeled { - height: 16px; -} -.bp3-slider-progress, -.bp3-slider-track { - height: 6px; - left: 0; - position: absolute; - right: 0; - top: 5px; -} -.bp3-slider-track { - border-radius: 3px; - overflow: hidden; -} -.bp3-slider-progress { - background: rgba(92, 112, 128, 0.2); -} -.bp3-dark .bp3-slider-progress { - background: rgba(16, 22, 26, 0.5); -} -.bp3-slider-progress.bp3-intent-primary { - background-color: #137cbd; -} -.bp3-slider-progress.bp3-intent-success { - background-color: #0f9960; -} -.bp3-slider-progress.bp3-intent-warning { - background-color: #d9822b; -} -.bp3-slider-progress.bp3-intent-danger { - background-color: #db3737; -} -.bp3-slider-handle { - background-color: #f5f8fa; - background-image: linear-gradient( - 180deg, - hsla(0, 0%, 100%, 0.8), - hsla(0, 0%, 100%, 0) - ); - border-radius: 3px; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2); - color: #182026; - cursor: pointer; - height: 16px; - left: 0; - position: absolute; - top: 0; - width: 16px; -} -.bp3-slider-handle.bp3-active, -.bp3-slider-handle:active { - background-color: #d8e1e8; - background-image: none; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-slider-handle.bp3-disabled, -.bp3-slider-handle:disabled { - background-color: rgba(206, 217, 224, 0.5); - background-image: none; - box-shadow: none; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; - outline: none; -} -.bp3-slider-handle.bp3-disabled.bp3-active, -.bp3-slider-handle.bp3-disabled.bp3-active:hover, -.bp3-slider-handle:disabled.bp3-active, -.bp3-slider-handle:disabled.bp3-active:hover { - background: rgba(206, 217, 224, 0.7); -} -.bp3-slider-handle:focus { - z-index: 1; -} -.bp3-slider-handle:hover { - background-clip: padding-box; - background-color: #ebf1f5; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 -1px 0 rgba(16, 22, 26, 0.1); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2); - cursor: grab; - z-index: 2; -} -.bp3-slider-handle.bp3-active { - background-color: #d8e1e8; - background-image: none; - box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 2px rgba(16, 22, 26, 0.2); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), - inset 0 1px 1px rgba(16, 22, 26, 0.1); - cursor: grabbing; -} -.bp3-disabled .bp3-slider-handle { - background: #bfccd6; - box-shadow: none; - pointer-events: none; -} -.bp3-dark .bp3-slider-handle { - background-color: #394b59; - background-image: linear-gradient( - 180deg, - hsla(0, 0%, 100%, 0.05), - hsla(0, 0%, 100%, 0) - ); - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); - color: #f5f8fa; -} -.bp3-dark .bp3-slider-handle.bp3-active, -.bp3-dark .bp3-slider-handle:active, -.bp3-dark .bp3-slider-handle:hover { - color: #f5f8fa; -} -.bp3-dark .bp3-slider-handle:hover { - background-color: #30404d; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-slider-handle.bp3-active, -.bp3-dark .bp3-slider-handle:active { - background-color: #202b33; - background-image: none; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.6), - inset 0 1px 2px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-slider-handle.bp3-disabled, -.bp3-dark .bp3-slider-handle:disabled { - background-color: rgba(57, 75, 89, 0.5); - background-image: none; - box-shadow: none; - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active, -.bp3-dark .bp3-slider-handle:disabled.bp3-active { - background: rgba(57, 75, 89, 0.7); -} -.bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head { - stroke: #8a9ba8; - background: rgba(16, 22, 26, 0.5); -} -.bp3-dark .bp3-slider-handle, -.bp3-dark .bp3-slider-handle:hover { - background-color: #394b59; -} -.bp3-dark .bp3-slider-handle.bp3-active { - background-color: #293742; -} -.bp3-dark .bp3-disabled .bp3-slider-handle { - background: #5c7080; - border-color: #5c7080; - box-shadow: none; -} -.bp3-slider-handle .bp3-slider-label { - background: #394b59; - border-radius: 3px; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - color: #f5f8fa; - margin-left: 8px; -} -.bp3-dark .bp3-slider-handle .bp3-slider-label { - background: #e1e8ed; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); - color: #394b59; -} -.bp3-disabled .bp3-slider-handle .bp3-slider-label { - box-shadow: none; -} -.bp3-slider-handle.bp3-end, -.bp3-slider-handle.bp3-start { - width: 8px; -} -.bp3-slider-handle.bp3-start { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.bp3-slider-handle.bp3-end { - border-bottom-left-radius: 0; - border-top-left-radius: 0; - margin-left: 8px; -} -.bp3-slider-handle.bp3-end .bp3-slider-label { - margin-left: 0; -} -.bp3-slider-label { - display: inline-block; - font-size: 12px; - line-height: 1; - padding: 2px 5px; - position: absolute; - -webkit-transform: translate(-50%, 20px); - transform: translate(-50%, 20px); - vertical-align: top; -} -.bp3-slider.bp3-vertical { - height: 150px; - min-width: 40px; - width: 40px; -} -.bp3-slider.bp3-vertical .bp3-slider-progress, -.bp3-slider.bp3-vertical .bp3-slider-track { - bottom: 0; - height: auto; - left: 5px; - top: 0; - width: 6px; -} -.bp3-slider.bp3-vertical .bp3-slider-progress { - top: auto; -} -.bp3-slider.bp3-vertical .bp3-slider-label { - -webkit-transform: translate(20px, 50%); - transform: translate(20px, 50%); -} -.bp3-slider.bp3-vertical .bp3-slider-handle { - top: auto; -} -.bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label { - margin-left: 0; - margin-top: -8px; -} -.bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, -.bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start { - height: 8px; - margin-left: 0; - width: 16px; -} -.bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start { - border-bottom-right-radius: 3px; - border-top-left-radius: 0; -} -.bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label { - -webkit-transform: translate(20px); - transform: translate(20px); -} -.bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - border-top-left-radius: 3px; - margin-bottom: 8px; -} -@-webkit-keyframes pt-spinner-animation { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - to { - -webkit-transform: rotate(1turn); - transform: rotate(1turn); - } -} -@keyframes pt-spinner-animation { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - to { - -webkit-transform: rotate(1turn); - transform: rotate(1turn); - } -} -.bp3-spinner { - align-items: center; - display: flex; - justify-content: center; - overflow: visible; - vertical-align: middle; -} -.bp3-spinner svg { - display: block; -} -.bp3-spinner path { - fill-opacity: 0; -} -.bp3-spinner .bp3-spinner-head { - stroke: rgba(92, 112, 128, 0.8); - stroke-linecap: round; - -webkit-transform-origin: center; - transform-origin: center; - transition: stroke-dashoffset 0.2s cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-spinner .bp3-spinner-track { - stroke: rgba(92, 112, 128, 0.2); -} -.bp3-spinner-animation { - -webkit-animation: pt-spinner-animation 0.5s linear infinite; - animation: pt-spinner-animation 0.5s linear infinite; -} -.bp3-no-spin > .bp3-spinner-animation { - -webkit-animation: none; - animation: none; -} -.bp3-dark .bp3-spinner .bp3-spinner-head { - stroke: #8a9ba8; -} -.bp3-dark .bp3-spinner .bp3-spinner-track { - stroke: rgba(16, 22, 26, 0.5); -} -.bp3-spinner.bp3-intent-primary .bp3-spinner-head { - stroke: #137cbd; -} -.bp3-spinner.bp3-intent-success .bp3-spinner-head { - stroke: #0f9960; -} -.bp3-spinner.bp3-intent-warning .bp3-spinner-head { - stroke: #d9822b; -} -.bp3-spinner.bp3-intent-danger .bp3-spinner-head { - stroke: #db3737; -} -.bp3-tabs.bp3-vertical { - display: flex; -} -.bp3-tabs.bp3-vertical > .bp3-tab-list { - align-items: flex-start; - flex-direction: column; -} -.bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab { - border-radius: 3px; - padding: 0 10px; - width: 100%; -} -.bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected="true"] { - background-color: rgba(19, 124, 189, 0.2); - box-shadow: none; -} -.bp3-tabs.bp3-vertical - > .bp3-tab-list - .bp3-tab-indicator-wrapper - .bp3-tab-indicator { - background-color: rgba(19, 124, 189, 0.2); - border-radius: 3px; - bottom: 0; - height: auto; - left: 0; - right: 0; - top: 0; -} -.bp3-tabs.bp3-vertical > .bp3-tab-panel { - margin-top: 0; - padding-left: 20px; -} -.bp3-tab-list { - align-items: flex-end; - border: none; - display: flex; - flex: 0 0 auto; - list-style: none; - margin: 0; - padding: 0; - position: relative; -} -.bp3-tab-list > :not(:last-child) { - margin-right: 20px; -} -.bp3-tab { - word-wrap: normal; - color: #182026; - cursor: pointer; - flex: 0 0 auto; - font-size: 14px; - line-height: 30px; - max-width: 100%; - overflow: hidden; - position: relative; - text-overflow: ellipsis; - vertical-align: top; - white-space: nowrap; -} -.bp3-tab a { - color: inherit; - display: block; - text-decoration: none; -} -.bp3-tab-indicator-wrapper ~ .bp3-tab { - background-color: transparent !important; - box-shadow: none !important; -} -.bp3-tab[aria-disabled="true"] { - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-tab[aria-selected="true"] { - border-radius: 0; - box-shadow: inset 0 -3px 0 #106ba3; -} -.bp3-tab:not([aria-disabled="true"]):hover, -.bp3-tab[aria-selected="true"] { - color: #106ba3; -} -.bp3-tab:focus { - -moz-outline-radius: 0; -} -.bp3-large > .bp3-tab { - font-size: 16px; - line-height: 40px; -} -.bp3-tab-panel { - margin-top: 20px; -} -.bp3-tab-panel[aria-hidden="true"] { - display: none; -} -.bp3-tab-indicator-wrapper { - left: 0; - pointer-events: none; - position: absolute; - top: 0; - -webkit-transform: translateX(0), translateY(0); - transform: translateX(0), translateY(0); - transition: height, width, -webkit-transform; - transition: height, transform, width; - transition: height, transform, width, -webkit-transform; - transition-duration: 0.2s; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-tab-indicator-wrapper .bp3-tab-indicator { - background-color: #106ba3; - bottom: 0; - height: 3px; - left: 0; - position: absolute; - right: 0; -} -.bp3-tab-indicator-wrapper.bp3-no-animation { - transition: none; -} -.bp3-dark .bp3-tab { - color: #f5f8fa; -} -.bp3-dark .bp3-tab[aria-disabled="true"] { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-tab[aria-selected="true"] { - box-shadow: inset 0 -3px 0 #48aff0; -} -.bp3-dark .bp3-tab:not([aria-disabled="true"]):hover, -.bp3-dark .bp3-tab[aria-selected="true"] { - color: #48aff0; -} -.bp3-dark .bp3-tab-indicator { - background-color: #48aff0; -} -.bp3-flex-expander { - flex: 1 1; -} -.bp3-tag { - align-items: center; - background-color: #5c7080; - border: none; - border-radius: 3px; - box-shadow: none; - color: #f5f8fa; - display: inline-flex; - flex-direction: row; - font-size: 12px; - line-height: 16px; - max-width: 100%; - min-height: 20px; - min-width: 20px; - padding: 2px 6px; - position: relative; -} -.bp3-tag.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-interactive:hover { - background-color: rgba(92, 112, 128, 0.85); -} -.bp3-tag.bp3-interactive.bp3-active, -.bp3-tag.bp3-interactive:active { - background-color: rgba(92, 112, 128, 0.7); -} -.bp3-tag > * { - flex-grow: 0; - flex-shrink: 0; -} -.bp3-tag > .bp3-fill { - flex-grow: 1; - flex-shrink: 1; -} -.bp3-tag:before, -.bp3-tag > * { - margin-right: 4px; -} -.bp3-tag:empty:before, -.bp3-tag > :last-child { - margin-right: 0; -} -.bp3-tag:focus { - -moz-outline-radius: 6px; - outline: 2px auto rgba(19, 124, 189, 0.6); - outline-offset: 0; -} -.bp3-tag.bp3-round { - border-radius: 30px; - padding-left: 8px; - padding-right: 8px; -} -.bp3-dark .bp3-tag { - background-color: #bfccd6; - color: #182026; -} -.bp3-dark .bp3-tag.bp3-interactive { - cursor: pointer; -} -.bp3-dark .bp3-tag.bp3-interactive:hover { - background-color: rgba(191, 204, 214, 0.85); -} -.bp3-dark .bp3-tag.bp3-interactive.bp3-active, -.bp3-dark .bp3-tag.bp3-interactive:active { - background-color: rgba(191, 204, 214, 0.7); -} -.bp3-dark .bp3-tag .bp3-icon-large, -.bp3-dark .bp3-tag .bp3-icon-standard, -.bp3-dark .bp3-tag > .bp3-icon { - fill: currentColor; -} -.bp3-tag .bp3-icon-large, -.bp3-tag .bp3-icon-standard, -.bp3-tag > .bp3-icon { - fill: #fff; -} -.bp3-large .bp3-tag, -.bp3-tag.bp3-large { - font-size: 14px; - line-height: 20px; - min-height: 30px; - min-width: 30px; - padding: 5px 10px; -} -.bp3-large .bp3-tag:before, -.bp3-large .bp3-tag > *, -.bp3-tag.bp3-large:before, -.bp3-tag.bp3-large > * { - margin-right: 7px; -} -.bp3-large .bp3-tag:empty:before, -.bp3-large .bp3-tag > :last-child, -.bp3-tag.bp3-large:empty:before, -.bp3-tag.bp3-large > :last-child { - margin-right: 0; -} -.bp3-large .bp3-tag.bp3-round, -.bp3-tag.bp3-large.bp3-round { - padding-left: 12px; - padding-right: 12px; -} -.bp3-tag.bp3-intent-primary { - background: #137cbd; - color: #fff; -} -.bp3-tag.bp3-intent-primary.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-intent-primary.bp3-interactive:hover { - background-color: rgba(19, 124, 189, 0.85); -} -.bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, -.bp3-tag.bp3-intent-primary.bp3-interactive:active { - background-color: rgba(19, 124, 189, 0.7); -} -.bp3-tag.bp3-intent-success { - background: #0f9960; - color: #fff; -} -.bp3-tag.bp3-intent-success.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-intent-success.bp3-interactive:hover { - background-color: rgba(15, 153, 96, 0.85); -} -.bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, -.bp3-tag.bp3-intent-success.bp3-interactive:active { - background-color: rgba(15, 153, 96, 0.7); -} -.bp3-tag.bp3-intent-warning { - background: #d9822b; - color: #fff; -} -.bp3-tag.bp3-intent-warning.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-intent-warning.bp3-interactive:hover { - background-color: rgba(217, 130, 43, 0.85); -} -.bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, -.bp3-tag.bp3-intent-warning.bp3-interactive:active { - background-color: rgba(217, 130, 43, 0.7); -} -.bp3-tag.bp3-intent-danger { - background: #db3737; - color: #fff; -} -.bp3-tag.bp3-intent-danger.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-intent-danger.bp3-interactive:hover { - background-color: rgba(219, 55, 55, 0.85); -} -.bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, -.bp3-tag.bp3-intent-danger.bp3-interactive:active { - background-color: rgba(219, 55, 55, 0.7); -} -.bp3-tag.bp3-fill { - display: flex; - width: 100%; -} -.bp3-tag.bp3-minimal .bp3-icon-large, -.bp3-tag.bp3-minimal .bp3-icon-standard, -.bp3-tag.bp3-minimal > .bp3-icon { - fill: #5c7080; -} -.bp3-tag.bp3-minimal:not([class*="bp3-intent-"]) { - background-color: rgba(138, 155, 168, 0.2); - color: #182026; -} -.bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive:hover { - background-color: rgba(92, 112, 128, 0.3); -} -.bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive.bp3-active, -.bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive:active { - background-color: rgba(92, 112, 128, 0.4); -} -.bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]) { - color: #f5f8fa; -} -.bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive { - cursor: pointer; -} -.bp3-dark - .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive:hover { - background-color: rgba(191, 204, 214, 0.3); -} -.bp3-dark - .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive.bp3-active, -.bp3-dark - .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive:active { - background-color: rgba(191, 204, 214, 0.4); -} -.bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]) .bp3-icon-large, -.bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]) .bp3-icon-standard, -.bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]) > .bp3-icon { - fill: #a7b6c2; -} -.bp3-tag.bp3-minimal.bp3-intent-primary { - background-color: rgba(19, 124, 189, 0.15); - color: #106ba3; -} -.bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover { - background-color: rgba(19, 124, 189, 0.25); -} -.bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, -.bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active { - background-color: rgba(19, 124, 189, 0.35); -} -.bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large, -.bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, -.bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon { - fill: #137cbd; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary { - background-color: rgba(19, 124, 189, 0.25); - color: #48aff0; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive { - cursor: pointer; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover { - background-color: rgba(19, 124, 189, 0.35); -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active { - background-color: rgba(19, 124, 189, 0.45); -} -.bp3-tag.bp3-minimal.bp3-intent-success { - background-color: rgba(15, 153, 96, 0.15); - color: #0d8050; -} -.bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover { - background-color: rgba(15, 153, 96, 0.25); -} -.bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, -.bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active { - background-color: rgba(15, 153, 96, 0.35); -} -.bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large, -.bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, -.bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon { - fill: #0f9960; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success { - background-color: rgba(15, 153, 96, 0.25); - color: #3dcc91; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive { - cursor: pointer; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover { - background-color: rgba(15, 153, 96, 0.35); -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active { - background-color: rgba(15, 153, 96, 0.45); -} -.bp3-tag.bp3-minimal.bp3-intent-warning { - background-color: rgba(217, 130, 43, 0.15); - color: #bf7326; -} -.bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover { - background-color: rgba(217, 130, 43, 0.25); -} -.bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, -.bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active { - background-color: rgba(217, 130, 43, 0.35); -} -.bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large, -.bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, -.bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon { - fill: #d9822b; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning { - background-color: rgba(217, 130, 43, 0.25); - color: #ffb366; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive { - cursor: pointer; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover { - background-color: rgba(217, 130, 43, 0.35); -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active { - background-color: rgba(217, 130, 43, 0.45); -} -.bp3-tag.bp3-minimal.bp3-intent-danger { - background-color: rgba(219, 55, 55, 0.15); - color: #c23030; -} -.bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive { - cursor: pointer; -} -.bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover { - background-color: rgba(219, 55, 55, 0.25); -} -.bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, -.bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active { - background-color: rgba(219, 55, 55, 0.35); -} -.bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large, -.bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, -.bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon { - fill: #db3737; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger { - background-color: rgba(219, 55, 55, 0.25); - color: #ff7373; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive { - cursor: pointer; -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover { - background-color: rgba(219, 55, 55, 0.35); -} -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, -.bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active { - background-color: rgba(219, 55, 55, 0.45); -} -.bp3-tag-remove { - background: none; - border: none; - color: inherit; - cursor: pointer; - display: flex; - margin-bottom: -2px; - margin-right: -6px !important; - margin-top: -2px; - opacity: 0.5; - padding: 2px 2px 2px 0; -} -.bp3-tag-remove:hover { - background: none; - opacity: 0.8; - text-decoration: none; -} -.bp3-tag-remove:active { - opacity: 1; -} -.bp3-tag-remove:empty:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - content: ""; - font-family: Icons16, sans-serif; - font-size: 16px; - font-style: normal; - font-weight: 400; - line-height: 1; -} -.bp3-large .bp3-tag-remove { - margin-right: -10px !important; - padding: 0 5px 0 0; -} -.bp3-large .bp3-tag-remove:empty:before { - font-family: Icons20, sans-serif; - font-size: 20px; - font-style: normal; - font-weight: 400; - line-height: 1; -} -.bp3-tag-input { - align-items: flex-start; - cursor: text; - display: flex; - flex-direction: row; - height: auto; - line-height: inherit; - min-height: 30px; - padding-left: 5px; - padding-right: 0; -} -.bp3-tag-input > * { - flex-grow: 0; - flex-shrink: 0; -} -.bp3-tag-input > .bp3-tag-input-values { - flex-grow: 1; - flex-shrink: 1; -} -.bp3-tag-input .bp3-tag-input-icon { - color: #5c7080; - margin-left: 2px; - margin-right: 7px; - margin-top: 7px; -} -.bp3-tag-input .bp3-tag-input-values { - align-items: center; - align-self: stretch; - display: flex; - flex-direction: row; - flex-wrap: wrap; - margin-right: 7px; - margin-top: 5px; - min-width: 0; -} -.bp3-tag-input .bp3-tag-input-values > * { - flex-grow: 0; - flex-shrink: 0; -} -.bp3-tag-input .bp3-tag-input-values > .bp3-fill { - flex-grow: 1; - flex-shrink: 1; -} -.bp3-tag-input .bp3-tag-input-values:before, -.bp3-tag-input .bp3-tag-input-values > * { - margin-right: 5px; -} -.bp3-tag-input .bp3-tag-input-values:empty:before, -.bp3-tag-input .bp3-tag-input-values > :last-child { - margin-right: 0; -} -.bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child { - padding-left: 5px; -} -.bp3-tag-input .bp3-tag-input-values > * { - margin-bottom: 5px; -} -.bp3-tag-input .bp3-tag { - overflow-wrap: break-word; -} -.bp3-tag-input .bp3-tag.bp3-active { - -moz-outline-radius: 6px; - outline: 2px auto rgba(19, 124, 189, 0.6); - outline-offset: 0; -} -.bp3-tag-input .bp3-input-ghost { - flex: 1 1 auto; - line-height: 20px; - width: 80px; -} -.bp3-tag-input .bp3-input-ghost.bp3-disabled, -.bp3-tag-input .bp3-input-ghost:disabled { - cursor: not-allowed; -} -.bp3-tag-input .bp3-button, -.bp3-tag-input .bp3-spinner { - margin: 3px 3px 3px 0; -} -.bp3-tag-input .bp3-button { - min-height: 24px; - min-width: 24px; - padding: 0 7px; -} -.bp3-tag-input.bp3-large { - height: auto; - min-height: 40px; -} -.bp3-tag-input.bp3-large:before, -.bp3-tag-input.bp3-large > * { - margin-right: 10px; -} -.bp3-tag-input.bp3-large:empty:before, -.bp3-tag-input.bp3-large > :last-child { - margin-right: 0; -} -.bp3-tag-input.bp3-large .bp3-tag-input-icon { - margin-left: 5px; - margin-top: 10px; -} -.bp3-tag-input.bp3-large .bp3-input-ghost { - line-height: 30px; -} -.bp3-tag-input.bp3-large .bp3-button { - margin: 5px 5px 5px 0; - min-height: 30px; - min-width: 30px; - padding: 5px 10px; -} -.bp3-tag-input.bp3-large .bp3-spinner { - margin: 8px 8px 8px 0; -} -.bp3-tag-input.bp3-active { - background-color: #fff; - box-shadow: 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-tag-input.bp3-active.bp3-intent-primary { - box-shadow: 0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-tag-input.bp3-active.bp3-intent-success { - box-shadow: 0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-tag-input.bp3-active.bp3-intent-warning { - box-shadow: 0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-tag-input.bp3-active.bp3-intent-danger { - box-shadow: 0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.2); -} -.bp3-dark .bp3-tag-input .bp3-tag-input-icon, -.bp3-tag-input.bp3-dark .bp3-tag-input-icon { - color: #a7b6c2; -} -.bp3-dark .bp3-tag-input .bp3-input-ghost, -.bp3-tag-input.bp3-dark .bp3-input-ghost { - color: #f5f8fa; -} -.bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, -.bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, -.bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, -.bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder { - color: rgba(167, 182, 194, 0.6); -} -.bp3-dark .bp3-tag-input.bp3-active, -.bp3-tag-input.bp3-dark.bp3-active { - background-color: rgba(16, 22, 26, 0.3); - box-shadow: 0 0 0 1px #137cbd, 0 0 0 1px #137cbd, - 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), - inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, -.bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary { - box-shadow: 0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, -.bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success { - box-shadow: 0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, -.bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning { - box-shadow: 0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, -.bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger { - box-shadow: 0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), - inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); -} -.bp3-input-ghost { - background: none; - border: none; - box-shadow: none; - padding: 0; -} -.bp3-input-ghost::-webkit-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-input-ghost:-ms-input-placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-input-ghost::placeholder { - color: rgba(92, 112, 128, 0.6); - opacity: 1; -} -.bp3-input-ghost:focus { - outline: none !important; -} -.bp3-toast { - align-items: flex-start; - background-color: #fff; - border-radius: 3px; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - display: flex; - margin: 20px 0 0; - max-width: 500px; - min-width: 300px; - pointer-events: all; - position: relative !important; -} -.bp3-toast.bp3-toast-appear, -.bp3-toast.bp3-toast-enter { - -webkit-transform: translateY(-40px); - transform: translateY(-40px); -} -.bp3-toast.bp3-toast-appear-active, -.bp3-toast.bp3-toast-enter-active { - -webkit-transform: translateY(0); - transform: translateY(0); - transition-delay: 0; - transition-duration: 0.3s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); -} -.bp3-toast.bp3-toast-appear ~ .bp3-toast, -.bp3-toast.bp3-toast-enter ~ .bp3-toast { - -webkit-transform: translateY(-40px); - transform: translateY(-40px); -} -.bp3-toast.bp3-toast-appear-active ~ .bp3-toast, -.bp3-toast.bp3-toast-enter-active ~ .bp3-toast { - -webkit-transform: translateY(0); - transform: translateY(0); - transition-delay: 0; - transition-duration: 0.3s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11); -} -.bp3-toast.bp3-toast-exit { - -webkit-filter: blur(0); - filter: blur(0); - opacity: 1; -} -.bp3-toast.bp3-toast-exit-active { - -webkit-filter: blur(10px); - filter: blur(10px); - opacity: 0; - transition-delay: 0; - transition-duration: 0.3s; - transition-property: opacity, -webkit-filter; - transition-property: opacity, filter; - transition-property: opacity, filter, -webkit-filter; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-toast.bp3-toast-exit ~ .bp3-toast { - -webkit-transform: translateY(0); - transform: translateY(0); -} -.bp3-toast.bp3-toast-exit-active ~ .bp3-toast { - -webkit-transform: translateY(-40px); - transform: translateY(-40px); - transition-delay: 50ms; - transition-duration: 0.1s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-toast .bp3-button-group { - flex: 0 0 auto; - padding: 5px 5px 5px 0; -} -.bp3-toast > .bp3-icon { - color: #5c7080; - margin: 12px 0 12px 12px; -} -.bp3-dark .bp3-toast, -.bp3-toast.bp3-dark { - background-color: #394b59; - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-toast > .bp3-icon, -.bp3-toast.bp3-dark > .bp3-icon { - color: #a7b6c2; -} -.bp3-toast[class*="bp3-intent-"] a { - color: hsla(0, 0%, 100%, 0.7); -} -.bp3-toast[class*="bp3-intent-"] a:hover, -.bp3-toast[class*="bp3-intent-"] > .bp3-icon { - color: #fff; -} -.bp3-toast[class*="bp3-intent-"] .bp3-button, -.bp3-toast[class*="bp3-intent-"] .bp3-button .bp3-icon, -.bp3-toast[class*="bp3-intent-"] .bp3-button:active, -.bp3-toast[class*="bp3-intent-"] .bp3-button:before { - color: hsla(0, 0%, 100%, 0.7) !important; -} -.bp3-toast[class*="bp3-intent-"] .bp3-button:focus { - outline-color: hsla(0, 0%, 100%, 0.5); -} -.bp3-toast[class*="bp3-intent-"] .bp3-button:hover { - background-color: hsla(0, 0%, 100%, 0.15) !important; - color: #fff !important; -} -.bp3-toast[class*="bp3-intent-"] .bp3-button:active { - background-color: hsla(0, 0%, 100%, 0.3) !important; - color: #fff !important; -} -.bp3-toast[class*="bp3-intent-"] .bp3-button:after { - background: hsla(0, 0%, 100%, 0.3) !important; -} -.bp3-toast.bp3-intent-primary { - background-color: #137cbd; - color: #fff; -} -.bp3-toast.bp3-intent-success { - background-color: #0f9960; - color: #fff; -} -.bp3-toast.bp3-intent-warning { - background-color: #d9822b; - color: #fff; -} -.bp3-toast.bp3-intent-danger { - background-color: #db3737; - color: #fff; -} -.bp3-toast-message { - flex: 1 1 auto; - padding: 11px; - word-break: break-word; -} -.bp3-toast-container { - align-items: center; - display: flex !important; - flex-direction: column; - left: 0; - overflow: hidden; - padding: 0 20px 20px; - pointer-events: none; - right: 0; - z-index: 40; -} -.bp3-toast-container.bp3-toast-container-in-portal { - position: fixed; -} -.bp3-toast-container.bp3-toast-container-inline { - position: absolute; -} -.bp3-toast-container.bp3-toast-container-top { - top: 0; -} -.bp3-toast-container.bp3-toast-container-bottom { - bottom: 0; - flex-direction: column-reverse; - top: auto; -} -.bp3-toast-container.bp3-toast-container-left { - align-items: flex-start; -} -.bp3-toast-container.bp3-toast-container-right { - align-items: flex-end; -} -.bp3-toast-container-bottom - .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active), -.bp3-toast-container-bottom - .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) - ~ .bp3-toast, -.bp3-toast-container-bottom - .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active), -.bp3-toast-container-bottom - .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) - ~ .bp3-toast, -.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast, -.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast { - -webkit-transform: translateY(60px); - transform: translateY(60px); -} -.bp3-tooltip { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), - 0 8px 24px rgba(16, 22, 26, 0.2); - -webkit-transform: scale(1); - transform: scale(1); -} -.bp3-tooltip .bp3-popover-arrow { - height: 22px; - position: absolute; - width: 22px; -} -.bp3-tooltip .bp3-popover-arrow:before { - height: 14px; - margin: 4px; - width: 14px; -} -.bp3-tether-element-attached-bottom.bp3-tether-target-attached-top - > .bp3-tooltip { - margin-bottom: 11px; - margin-top: -11px; -} -.bp3-tether-element-attached-bottom.bp3-tether-target-attached-top - > .bp3-tooltip - > .bp3-popover-arrow { - bottom: -8px; -} -.bp3-tether-element-attached-bottom.bp3-tether-target-attached-top - > .bp3-tooltip - > .bp3-popover-arrow - svg { - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); -} -.bp3-tether-element-attached-left.bp3-tether-target-attached-right - > .bp3-tooltip { - margin-left: 11px; -} -.bp3-tether-element-attached-left.bp3-tether-target-attached-right - > .bp3-tooltip - > .bp3-popover-arrow { - left: -8px; -} -.bp3-tether-element-attached-left.bp3-tether-target-attached-right - > .bp3-tooltip - > .bp3-popover-arrow - svg { - -webkit-transform: rotate(0); - transform: rotate(0); -} -.bp3-tether-element-attached-top.bp3-tether-target-attached-bottom - > .bp3-tooltip { - margin-top: 11px; -} -.bp3-tether-element-attached-top.bp3-tether-target-attached-bottom - > .bp3-tooltip - > .bp3-popover-arrow { - top: -8px; -} -.bp3-tether-element-attached-top.bp3-tether-target-attached-bottom - > .bp3-tooltip - > .bp3-popover-arrow - svg { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); -} -.bp3-tether-element-attached-right.bp3-tether-target-attached-left - > .bp3-tooltip { - margin-left: -11px; - margin-right: 11px; -} -.bp3-tether-element-attached-right.bp3-tether-target-attached-left - > .bp3-tooltip - > .bp3-popover-arrow { - right: -8px; -} -.bp3-tether-element-attached-right.bp3-tether-target-attached-left - > .bp3-tooltip - > .bp3-popover-arrow - svg { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); -} -.bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow { - top: 50%; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); -} -.bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow { - right: 50%; - -webkit-transform: translateX(50%); - transform: translateX(50%); -} -.bp3-tether-element-attached-top.bp3-tether-target-attached-top - > .bp3-tooltip - > .bp3-popover-arrow { - top: -0.22183px; -} -.bp3-tether-element-attached-right.bp3-tether-target-attached-right - > .bp3-tooltip - > .bp3-popover-arrow { - right: -0.22183px; -} -.bp3-tether-element-attached-left.bp3-tether-target-attached-left - > .bp3-tooltip - > .bp3-popover-arrow { - left: -0.22183px; -} -.bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom - > .bp3-tooltip - > .bp3-popover-arrow { - bottom: -0.22183px; -} -.bp3-tether-element-attached-top.bp3-tether-element-attached-left - > .bp3-tooltip { - -webkit-transform-origin: top left; - transform-origin: top left; -} -.bp3-tether-element-attached-top.bp3-tether-element-attached-center - > .bp3-tooltip { - -webkit-transform-origin: top center; - transform-origin: top center; -} -.bp3-tether-element-attached-top.bp3-tether-element-attached-right - > .bp3-tooltip { - -webkit-transform-origin: top right; - transform-origin: top right; -} -.bp3-tether-element-attached-middle.bp3-tether-element-attached-left - > .bp3-tooltip { - -webkit-transform-origin: center left; - transform-origin: center left; -} -.bp3-tether-element-attached-middle.bp3-tether-element-attached-center - > .bp3-tooltip { - -webkit-transform-origin: center center; - transform-origin: center center; -} -.bp3-tether-element-attached-middle.bp3-tether-element-attached-right - > .bp3-tooltip { - -webkit-transform-origin: center right; - transform-origin: center right; -} -.bp3-tether-element-attached-bottom.bp3-tether-element-attached-left - > .bp3-tooltip { - -webkit-transform-origin: bottom left; - transform-origin: bottom left; -} -.bp3-tether-element-attached-bottom.bp3-tether-element-attached-center - > .bp3-tooltip { - -webkit-transform-origin: bottom center; - transform-origin: bottom center; -} -.bp3-tether-element-attached-bottom.bp3-tether-element-attached-right - > .bp3-tooltip { - -webkit-transform-origin: bottom right; - transform-origin: bottom right; -} -.bp3-tooltip .bp3-popover-content { - background: #394b59; -} -.bp3-tooltip .bp3-heading, -.bp3-tooltip .bp3-popover-content { - color: #f5f8fa; -} -.bp3-tooltip .bp3-popover-arrow:before { - box-shadow: 1px 1px 6px rgba(16, 22, 26, 0.2); -} -.bp3-tooltip .bp3-popover-arrow-border { - fill: #10161a; - fill-opacity: 0.1; -} -.bp3-tooltip .bp3-popover-arrow-fill { - fill: #394b59; -} -.bp3-popover-appear > .bp3-tooltip, -.bp3-popover-enter > .bp3-tooltip { - -webkit-transform: scale(0.8); - transform: scale(0.8); -} -.bp3-popover-appear-active > .bp3-tooltip, -.bp3-popover-enter-active > .bp3-tooltip { - -webkit-transform: scale(1); - transform: scale(1); - transition-delay: 0; - transition-duration: 0.1s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-popover-exit > .bp3-tooltip { - -webkit-transform: scale(1); - transform: scale(1); -} -.bp3-popover-exit-active > .bp3-tooltip { - -webkit-transform: scale(0.8); - transform: scale(0.8); - transition-delay: 0; - transition-duration: 0.1s; - transition-property: -webkit-transform; - transition-property: transform; - transition-property: transform, -webkit-transform; - transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-tooltip .bp3-popover-content { - padding: 10px 12px; -} -.bp3-dark .bp3-tooltip, -.bp3-tooltip.bp3-dark { - box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), - 0 8px 24px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-tooltip .bp3-popover-content, -.bp3-tooltip.bp3-dark .bp3-popover-content { - background: #e1e8ed; -} -.bp3-dark .bp3-tooltip .bp3-heading, -.bp3-dark .bp3-tooltip .bp3-popover-content, -.bp3-tooltip.bp3-dark .bp3-heading, -.bp3-tooltip.bp3-dark .bp3-popover-content { - color: #394b59; -} -.bp3-dark .bp3-tooltip .bp3-popover-arrow:before, -.bp3-tooltip.bp3-dark .bp3-popover-arrow:before { - box-shadow: 1px 1px 6px rgba(16, 22, 26, 0.4); -} -.bp3-dark .bp3-tooltip .bp3-popover-arrow-border, -.bp3-tooltip.bp3-dark .bp3-popover-arrow-border { - fill: #10161a; - fill-opacity: 0.2; -} -.bp3-dark .bp3-tooltip .bp3-popover-arrow-fill, -.bp3-tooltip.bp3-dark .bp3-popover-arrow-fill { - fill: #e1e8ed; -} -.bp3-tooltip.bp3-intent-primary .bp3-popover-content { - background: #137cbd; - color: #fff; -} -.bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill { - fill: #137cbd; -} -.bp3-tooltip.bp3-intent-success .bp3-popover-content { - background: #0f9960; - color: #fff; -} -.bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill { - fill: #0f9960; -} -.bp3-tooltip.bp3-intent-warning .bp3-popover-content { - background: #d9822b; - color: #fff; -} -.bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill { - fill: #d9822b; -} -.bp3-tooltip.bp3-intent-danger .bp3-popover-content { - background: #db3737; - color: #fff; -} -.bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill { - fill: #db3737; -} -.bp3-tooltip-indicator { - border-bottom: 1px dotted; - cursor: help; -} -.bp3-tree .bp3-icon, -.bp3-tree .bp3-icon-large, -.bp3-tree .bp3-icon-standard { - color: #5c7080; -} -.bp3-tree .bp3-icon-large.bp3-intent-primary, -.bp3-tree .bp3-icon-standard.bp3-intent-primary, -.bp3-tree .bp3-icon.bp3-intent-primary { - color: #137cbd; -} -.bp3-tree .bp3-icon-large.bp3-intent-success, -.bp3-tree .bp3-icon-standard.bp3-intent-success, -.bp3-tree .bp3-icon.bp3-intent-success { - color: #0f9960; -} -.bp3-tree .bp3-icon-large.bp3-intent-warning, -.bp3-tree .bp3-icon-standard.bp3-intent-warning, -.bp3-tree .bp3-icon.bp3-intent-warning { - color: #d9822b; -} -.bp3-tree .bp3-icon-large.bp3-intent-danger, -.bp3-tree .bp3-icon-standard.bp3-intent-danger, -.bp3-tree .bp3-icon.bp3-intent-danger { - color: #db3737; -} -.bp3-tree-node-list { - list-style: none; - margin: 0; - padding-left: 0; -} -.bp3-tree-root { - background-color: transparent; - cursor: default; - padding-left: 0; - position: relative; -} -.bp3-tree-node-content-0 { - padding-left: 0; -} -.bp3-tree-node-content-1 { - padding-left: 23px; -} -.bp3-tree-node-content-2 { - padding-left: 46px; -} -.bp3-tree-node-content-3 { - padding-left: 69px; -} -.bp3-tree-node-content-4 { - padding-left: 92px; -} -.bp3-tree-node-content-5 { - padding-left: 115px; -} -.bp3-tree-node-content-6 { - padding-left: 138px; -} -.bp3-tree-node-content-7 { - padding-left: 161px; -} -.bp3-tree-node-content-8 { - padding-left: 184px; -} -.bp3-tree-node-content-9 { - padding-left: 207px; -} -.bp3-tree-node-content-10 { - padding-left: 230px; -} -.bp3-tree-node-content-11 { - padding-left: 253px; -} -.bp3-tree-node-content-12 { - padding-left: 276px; -} -.bp3-tree-node-content-13 { - padding-left: 299px; -} -.bp3-tree-node-content-14 { - padding-left: 322px; -} -.bp3-tree-node-content-15 { - padding-left: 345px; -} -.bp3-tree-node-content-16 { - padding-left: 368px; -} -.bp3-tree-node-content-17 { - padding-left: 391px; -} -.bp3-tree-node-content-18 { - padding-left: 414px; -} -.bp3-tree-node-content-19 { - padding-left: 437px; -} -.bp3-tree-node-content-20 { - padding-left: 460px; -} -.bp3-tree-node-content { - align-items: center; - display: flex; - height: 30px; - padding-right: 5px; - width: 100%; -} -.bp3-tree-node-content:hover { - background-color: rgba(191, 204, 214, 0.4); -} -.bp3-tree-node-caret, -.bp3-tree-node-caret-none { - min-width: 30px; -} -.bp3-tree-node-caret { - color: #5c7080; - cursor: pointer; - padding: 7px; - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - transition: -webkit-transform 0.2s cubic-bezier(0.4, 1, 0.75, 0.9); - transition: transform 0.2s cubic-bezier(0.4, 1, 0.75, 0.9); - transition: transform 0.2s cubic-bezier(0.4, 1, 0.75, 0.9), - -webkit-transform 0.2s cubic-bezier(0.4, 1, 0.75, 0.9); -} -.bp3-tree-node-caret:hover { - color: #182026; -} -.bp3-dark .bp3-tree-node-caret { - color: #a7b6c2; -} -.bp3-dark .bp3-tree-node-caret:hover { - color: #f5f8fa; -} -.bp3-tree-node-caret.bp3-tree-node-caret-open { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); -} -.bp3-tree-node-caret.bp3-icon-standard:before { - content: ""; -} -.bp3-tree-node-icon { - margin-right: 7px; - position: relative; -} -.bp3-tree-node-label { - word-wrap: normal; - flex: 1 1 auto; - overflow: hidden; - position: relative; - text-overflow: ellipsis; - -webkit-user-select: none; - -ms-user-select: none; - user-select: none; - white-space: nowrap; -} -.bp3-tree-node-label span { - display: inline; -} -.bp3-tree-node-secondary-label { - padding: 0 5px; - -webkit-user-select: none; - -ms-user-select: none; - user-select: none; -} -.bp3-tree-node-secondary-label .bp3-popover-target, -.bp3-tree-node-secondary-label .bp3-popover-wrapper { - align-items: center; - display: flex; -} -.bp3-tree-node.bp3-disabled .bp3-tree-node-content { - background-color: inherit; - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-tree-node.bp3-disabled .bp3-tree-node-caret, -.bp3-tree-node.bp3-disabled .bp3-tree-node-icon { - color: rgba(92, 112, 128, 0.6); - cursor: not-allowed; -} -.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content { - background-color: #137cbd; -} -.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content, -.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, -.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large, -.bp3-tree-node.bp3-tree-node-selected - > .bp3-tree-node-content - .bp3-icon-standard { - color: #fff; -} -.bp3-tree-node.bp3-tree-node-selected - > .bp3-tree-node-content - .bp3-tree-node-caret:before { - color: hsla(0, 0%, 100%, 0.7); -} -.bp3-tree-node.bp3-tree-node-selected - > .bp3-tree-node-content - .bp3-tree-node-caret:hover:before { - color: #fff; -} -.bp3-dark .bp3-tree-node-content:hover { - background-color: rgba(92, 112, 128, 0.3); -} -.bp3-dark .bp3-tree .bp3-icon, -.bp3-dark .bp3-tree .bp3-icon-large, -.bp3-dark .bp3-tree .bp3-icon-standard { - color: #a7b6c2; -} -.bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary, -.bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, -.bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary { - color: #137cbd; -} -.bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success, -.bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, -.bp3-dark .bp3-tree .bp3-icon.bp3-intent-success { - color: #0f9960; -} -.bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning, -.bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, -.bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning { - color: #d9822b; -} -.bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger, -.bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, -.bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger { - color: #db3737; -} -.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content { - background-color: #137cbd; -} -body { - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - background-color: #ededed; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, - Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; - margin: 0; -} -code { - font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace; -} -.error { - color: #e3242b; -} -.navbar-wrapper { - margin: 0 auto; - width: 75vw; -} -.all-item-view-search-bar { - width: 60vw; -} -@media only screen and (max-width: 1200px) { - .navbar-header { - display: none !important; - } - .all-item-view-search-bar { - width: 75vw; - } -} -.all-item-view-message { - margin: auto 0; -} -.all-item-view-error { - margin-top: 36px; - max-width: 50%; -} -.all-item-view-no-data { - max-width: 50%; -} -.all-item-view, -.item-view { - overflow: auto; - padding-top: 50px; - width: 100vw; -} -.item-dynamic { - align-items: center; - display: flex; - flex-direction: column; - font-size: calc(10px + 1vmin); - height: calc(100vh - 50px); -} -.item-view-message { - margin: auto 0; -} -.item-view-error { - background: red; - bottom: 0; - color: #fff; - font-size: 14px; - left: 0; - padding: 10px; - position: absolute; - right: 0; -} -.item-view-no-data { - max-width: 50%; -} -.btn { - margin: 0 6px; -} -code { - background-color: #ddd; - padding: 3px 5px; -} -.highlight { - background-color: hsla(60, 83%, 68%, 0.3); -} -/*# sourceMappingURL=main.41f44bb3.css.map*/ diff --git a/mephisto/client/review/default-ui/static/js/main.7cc18a59.js b/mephisto/client/review/default-ui/static/js/main.7cc18a59.js deleted file mode 100644 index a838e9faa..000000000 --- a/mephisto/client/review/default-ui/static/js/main.7cc18a59.js +++ /dev/null @@ -1,22463 +0,0 @@ -/* - * Copyright (c) Meta Platforms and its affiliates. - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -/*! For license information please see main.7cc18a59.js.LICENSE.txt */ -!(function () { - var e = { - 5318: function (e) { - (e.exports = function (e) { - return e && e.__esModule ? e : { default: e }; - }), - (e.exports.__esModule = !0), - (e.exports.default = e.exports); - }, - 7757: function (e, t, n) { - e.exports = n(9727); - }, - 8540: function (e, t, n) { - "use strict"; - t.__esModule = !0; - var c = n(2791), - r = (o(c), o(n(2007))), - a = o(n(4566)); - o(n(2391)); - function o(e) { - return e && e.__esModule ? e : { default: e }; - } - function l(e, t) { - if (!(e instanceof t)) - throw new TypeError("Cannot call a class as a function"); - } - function i(e, t) { - if (!e) - throw new ReferenceError( - "this hasn't been initialised - super() hasn't been called" - ); - return !t || ("object" !== typeof t && "function" !== typeof t) - ? e - : t; - } - function s(e, t) { - if ("function" !== typeof t && null !== t) - throw new TypeError( - "Super expression must either be null or a function, not " + - typeof t - ); - (e.prototype = Object.create(t && t.prototype, { - constructor: { - value: e, - enumerable: !1, - writable: !0, - configurable: !0, - }, - })), - t && - (Object.setPrototypeOf - ? Object.setPrototypeOf(e, t) - : (e.__proto__ = t)); - } - var u = 1073741823; - function h(e) { - var t = []; - return { - on: function (e) { - t.push(e); - }, - off: function (e) { - t = t.filter(function (t) { - return t !== e; - }); - }, - get: function () { - return e; - }, - set: function (n, c) { - (e = n), - t.forEach(function (t) { - return t(e, c); - }); - }, - }; - } - (t.default = function (e, t) { - var n, - o, - f = "__create-react-context-" + (0, a.default)() + "__", - p = (function (e) { - function n() { - var t, c; - l(this, n); - for (var r = arguments.length, a = Array(r), o = 0; o < r; o++) - a[o] = arguments[o]; - return ( - (t = c = i(this, e.call.apply(e, [this].concat(a)))), - (c.emitter = h(c.props.value)), - i(c, t) - ); - } - return ( - s(n, e), - (n.prototype.getChildContext = function () { - var e; - return ((e = {})[f] = this.emitter), e; - }), - (n.prototype.componentWillReceiveProps = function (e) { - if (this.props.value !== e.value) { - var n = this.props.value, - c = e.value, - r = void 0; - ( - (a = n) === (o = c) - ? 0 !== a || 1 / a === 1 / o - : a !== a && o !== o - ) - ? (r = 0) - : ((r = "function" === typeof t ? t(n, c) : u), - 0 !== (r |= 0) && this.emitter.set(e.value, r)); - } - var a, o; - }), - (n.prototype.render = function () { - return this.props.children; - }), - n - ); - })(c.Component); - p.childContextTypes = - (((n = {})[f] = r.default.object.isRequired), n); - var v = (function (t) { - function n() { - var e, c; - l(this, n); - for (var r = arguments.length, a = Array(r), o = 0; o < r; o++) - a[o] = arguments[o]; - return ( - (e = c = i(this, t.call.apply(t, [this].concat(a)))), - (c.state = { value: c.getValue() }), - (c.onUpdate = function (e, t) { - 0 !== ((0 | c.observedBits) & t) && - c.setState({ value: c.getValue() }); - }), - i(c, e) - ); - } - return ( - s(n, t), - (n.prototype.componentWillReceiveProps = function (e) { - var t = e.observedBits; - this.observedBits = void 0 === t || null === t ? u : t; - }), - (n.prototype.componentDidMount = function () { - this.context[f] && this.context[f].on(this.onUpdate); - var e = this.props.observedBits; - this.observedBits = void 0 === e || null === e ? u : e; - }), - (n.prototype.componentWillUnmount = function () { - this.context[f] && this.context[f].off(this.onUpdate); - }), - (n.prototype.getValue = function () { - return this.context[f] ? this.context[f].get() : e; - }), - (n.prototype.render = function () { - return ((e = this.props.children), Array.isArray(e) ? e[0] : e)( - this.state.value - ); - var e; - }), - n - ); - })(c.Component); - return ( - (v.contextTypes = (((o = {})[f] = r.default.object), o)), - { Provider: p, Consumer: v } - ); - }), - (e.exports = t.default); - }, - 4535: function (e, t, n) { - "use strict"; - t.__esModule = !0; - var c = a(n(2791)), - r = a(n(8540)); - function a(e) { - return e && e.__esModule ? e : { default: e }; - } - (t.default = c.default.createContext || r.default), - (e.exports = t.default); - }, - 4037: function (e, t, n) { - "use strict"; - var c = n(2506), - r = n(9722), - a = r(c("String.prototype.indexOf")); - e.exports = function (e, t) { - var n = c(e, !!t); - return "function" === typeof n && a(e, ".prototype.") > -1 ? r(n) : n; - }; - }, - 9722: function (e, t, n) { - "use strict"; - var c = n(3350), - r = n(2506), - a = r("%Function.prototype.apply%"), - o = r("%Function.prototype.call%"), - l = r("%Reflect.apply%", !0) || c.call(o, a), - i = r("%Object.getOwnPropertyDescriptor%", !0), - s = r("%Object.defineProperty%", !0), - u = r("%Math.max%"); - if (s) - try { - s({}, "a", { value: 1 }); - } catch (f) { - s = null; - } - e.exports = function (e) { - var t = l(c, o, arguments); - if (i && s) { - var n = i(t, "length"); - n.configurable && - s(t, "length", { - value: 1 + u(0, e.length - (arguments.length - 1)), - }); - } - return t; - }; - var h = function () { - return l(c, a, arguments); - }; - s ? s(e.exports, "apply", { value: h }) : (e.exports.apply = h); - }, - 1694: function (e, t) { - var n; - !(function () { - "use strict"; - var c = {}.hasOwnProperty; - function r() { - for (var e = [], t = 0; t < arguments.length; t++) { - var n = arguments[t]; - if (n) { - var a = typeof n; - if ("string" === a || "number" === a) e.push(n); - else if (Array.isArray(n)) { - if (n.length) { - var o = r.apply(null, n); - o && e.push(o); - } - } else if ("object" === a) - if (n.toString === Object.prototype.toString) - for (var l in n) c.call(n, l) && n[l] && e.push(l); - else e.push(n.toString()); - } - } - return e.join(" "); - } - e.exports - ? ((r.default = r), (e.exports = r)) - : void 0 === - (n = function () { - return r; - }.apply(t, [])) || (e.exports = n); - })(); - }, - 4058: function (e, t, n) { - var c = n(4892), - r = n(5450), - a = n(3454), - o = n(1146), - l = n(3535), - i = n(2833), - s = Date.prototype.getTime; - function u(e, t, n) { - var p = n || {}; - return ( - !!(p.strict ? a(e, t) : e === t) || - (!e || !t || ("object" !== typeof e && "object" !== typeof t) - ? p.strict - ? a(e, t) - : e == t - : (function (e, t, n) { - var a, p; - if (typeof e !== typeof t) return !1; - if (h(e) || h(t)) return !1; - if (e.prototype !== t.prototype) return !1; - if (r(e) !== r(t)) return !1; - var v = o(e), - d = o(t); - if (v !== d) return !1; - if (v || d) return e.source === t.source && l(e) === l(t); - if (i(e) && i(t)) return s.call(e) === s.call(t); - var m = f(e), - z = f(t); - if (m !== z) return !1; - if (m || z) { - if (e.length !== t.length) return !1; - for (a = 0; a < e.length; a++) if (e[a] !== t[a]) return !1; - return !0; - } - if (typeof e !== typeof t) return !1; - try { - var y = c(e), - g = c(t); - } catch (M) { - return !1; - } - if (y.length !== g.length) return !1; - for (y.sort(), g.sort(), a = y.length - 1; a >= 0; a--) - if (y[a] != g[a]) return !1; - for (a = y.length - 1; a >= 0; a--) - if (!u(e[(p = y[a])], t[p], n)) return !1; - return !0; - })(e, t, p)) - ); - } - function h(e) { - return null === e || void 0 === e; - } - function f(e) { - return ( - !(!e || "object" !== typeof e || "number" !== typeof e.length) && - "function" === typeof e.copy && - "function" === typeof e.slice && - !(e.length > 0 && "number" !== typeof e[0]) - ); - } - e.exports = u; - }, - 9396: function (e, t, n) { - "use strict"; - var c = n(4892), - r = "function" === typeof Symbol && "symbol" === typeof Symbol("foo"), - a = Object.prototype.toString, - o = Array.prototype.concat, - l = Object.defineProperty, - i = - l && - (function () { - var e = {}; - try { - for (var t in (l(e, "x", { enumerable: !1, value: e }), e)) - return !1; - return e.x === e; - } catch (n) { - return !1; - } - })(), - s = function (e, t, n, c) { - var r; - (!(t in e) || - ("function" === typeof (r = c) && - "[object Function]" === a.call(r) && - c())) && - (i - ? l(e, t, { - configurable: !0, - enumerable: !1, - value: n, - writable: !0, - }) - : (e[t] = n)); - }, - u = function (e, t) { - var n = arguments.length > 2 ? arguments[2] : {}, - a = c(t); - r && (a = o.call(a, Object.getOwnPropertySymbols(t))); - for (var l = 0; l < a.length; l += 1) s(e, a[l], t[a[l]], n[a[l]]); - }; - (u.supportsDescriptors = !!i), (e.exports = u); - }, - 8354: function (e, t, n) { - "use strict"; - var c = n(5318); - (t.__esModule = !0), - (t.default = function (e, t) { - e.classList - ? e.classList.add(t) - : (0, r.default)(e, t) || - ("string" === typeof e.className - ? (e.className = e.className + " " + t) - : e.setAttribute( - "class", - ((e.className && e.className.baseVal) || "") + " " + t - )); - }); - var r = c(n(3812)); - e.exports = t.default; - }, - 3812: function (e, t) { - "use strict"; - (t.__esModule = !0), - (t.default = function (e, t) { - return e.classList - ? !!t && e.classList.contains(t) - : -1 !== - (" " + (e.className.baseVal || e.className) + " ").indexOf( - " " + t + " " - ); - }), - (e.exports = t.default); - }, - 2910: function (e) { - "use strict"; - function t(e, t) { - return e - .replace(new RegExp("(^|\\s)" + t + "(?:\\s|$)", "g"), "$1") - .replace(/\s+/g, " ") - .replace(/^\s*|\s*$/g, ""); - } - e.exports = function (e, n) { - e.classList - ? e.classList.remove(n) - : "string" === typeof e.className - ? (e.className = t(e.className, n)) - : e.setAttribute( - "class", - t((e.className && e.className.baseVal) || "", n) - ); - }; - }, - 2137: function () { - !(function (e) { - "use strict"; - function t() { - return h.createDocumentFragment(); - } - function n(e) { - return h.createElement(e); - } - function c(e, t) { - if (!e) - throw new Error( - "Failed to construct " + - t + - ": 1 argument required, but only 0 present." - ); - } - function r(e) { - if (1 === e.length) return a(e[0]); - for (var n = t(), c = O.call(e), r = 0; r < e.length; r++) - n.appendChild(a(c[r])); - return n; - } - function a(e) { - return "object" === typeof e ? e : h.createTextNode(e); - } - for ( - var o, - l, - i, - s, - u, - h = e.document, - f = Object.prototype.hasOwnProperty, - p = - Object.defineProperty || - function (e, t, n) { - return ( - f.call(n, "value") - ? (e[t] = n.value) - : (f.call(n, "get") && e.__defineGetter__(t, n.get), - f.call(n, "set") && e.__defineSetter__(t, n.set)), - e - ); - }, - v = - [].indexOf || - function (e) { - for (var t = this.length; t-- && this[t] !== e; ); - return t; - }, - d = function (e) { - var t = "undefined" === typeof e.className, - n = t ? e.getAttribute("class") || "" : e.className, - c = t || "object" === typeof n, - r = (c ? (t ? n : n.baseVal) : n).replace(z, ""); - r.length && _.push.apply(this, r.split(y)), - (this._isSVG = c), - (this._ = e); - }, - m = { - get: function () { - return new d(this); - }, - set: function () {}, - }, - z = /^\s+|\s+$/g, - y = /\s+/, - g = "classList", - M = function (e, t) { - return ( - this.contains(e) - ? t || this.remove(e) - : (void 0 === t || t) && ((t = !0), this.add(e)), - !!t - ); - }, - H = e.DocumentFragment && DocumentFragment.prototype, - b = e.Node, - V = (b || Element).prototype, - L = e.CharacterData || b, - w = L && L.prototype, - C = e.DocumentType, - E = C && C.prototype, - S = (e.Element || b || e.HTMLElement).prototype, - A = e.HTMLSelectElement || n("select").constructor, - x = A.prototype.remove, - k = e.SVGElement, - _ = [ - "matches", - S.matchesSelector || - S.webkitMatchesSelector || - S.khtmlMatchesSelector || - S.mozMatchesSelector || - S.msMatchesSelector || - S.oMatchesSelector || - function (e) { - var t = this.parentNode; - return !!t && -1 < v.call(t.querySelectorAll(e), this); - }, - "closest", - function (e) { - for (var t, n = this; (t = n && n.matches) && !n.matches(e); ) - n = n.parentNode; - return t ? n : null; - }, - "prepend", - function () { - var e = this.firstChild, - t = r(arguments); - e ? this.insertBefore(t, e) : this.appendChild(t); - }, - "append", - function () { - this.appendChild(r(arguments)); - }, - "before", - function () { - var e = this.parentNode; - e && e.insertBefore(r(arguments), this); - }, - "after", - function () { - var e = this.parentNode, - t = this.nextSibling, - n = r(arguments); - e && (t ? e.insertBefore(n, t) : e.appendChild(n)); - }, - "toggleAttribute", - function (e, t) { - var n = this.hasAttribute(e); - return ( - 1 < arguments.length - ? n && !t - ? this.removeAttribute(e) - : t && !n && this.setAttribute(e, "") - : n - ? this.removeAttribute(e) - : this.setAttribute(e, ""), - this.hasAttribute(e) - ); - }, - "replace", - function () { - this.replaceWith.apply(this, arguments); - }, - "replaceWith", - function () { - var e = this.parentNode; - e && e.replaceChild(r(arguments), this); - }, - "remove", - function () { - var e = this.parentNode; - e && e.removeChild(this); - }, - ], - O = _.slice, - P = _.length; - P; - P -= 2 - ) - if ( - ((l = _[P - 2]) in S || (S[l] = _[P - 1]), - "remove" !== l || - x._dom4 || - ((A.prototype[l] = function () { - return 0 < arguments.length - ? x.apply(this, arguments) - : S.remove.call(this); - })._dom4 = !0), - /^(?:before|after|replace|replaceWith|remove)$/.test(l) && - (L && !(l in w) && (w[l] = _[P - 1]), - C && !(l in E) && (E[l] = _[P - 1])), - /^(?:append|prepend)$/.test(l)) - ) - if (H) l in H || (H[l] = _[P - 1]); - else - try { - t().constructor.prototype[l] = _[P - 1]; - } catch (T) {} - var N; - n("a").matches("a") || - (S[l] = - ((N = S[l]), - function (e) { - return N.call( - this.parentNode ? this : t().appendChild(this), - e - ); - })), - (d.prototype = { - length: 0, - add: function () { - for (var e, t = 0; t < arguments.length; t++) - (e = arguments[t]), this.contains(e) || _.push.call(this, l); - this._isSVG - ? this._.setAttribute("class", "" + this) - : (this._.className = "" + this); - }, - contains: (function (e) { - return function (t) { - return ( - (P = e.call( - this, - (l = (function (e) { - if (!e) throw "SyntaxError"; - if (y.test(e)) throw "InvalidCharacterError"; - return e; - })(t)) - )), - -1 < P - ); - }; - })( - [].indexOf || - function (e) { - for (P = this.length; P-- && this[P] !== e; ); - return P; - } - ), - item: function (e) { - return this[e] || null; - }, - remove: function () { - for (var e, t = 0; t < arguments.length; t++) - (e = arguments[t]), - this.contains(e) && _.splice.call(this, P, 1); - this._isSVG - ? this._.setAttribute("class", "" + this) - : (this._.className = "" + this); - }, - toggle: M, - toString: function () { - return _.join.call(this, " "); - }, - }), - k && !(g in k.prototype) && p(k.prototype, g, m), - g in h.documentElement - ? ((s = n("div").classList).add("a", "b", "a"), - "a b" != s && - ("add" in (i = s.constructor.prototype) || - (i = e.TemporaryTokenList.prototype), - (u = function (e) { - return function () { - for (var t = 0; t < arguments.length; ) - e.call(this, arguments[t++]); - }; - }), - (i.add = u(i.add)), - (i.remove = u(i.remove)), - (i.toggle = M))) - : p(S, g, m), - "contains" in V || - p(V, "contains", { - value: function (e) { - for (; e && e !== this; ) e = e.parentNode; - return this === e; - }, - }), - "head" in h || - p(h, "head", { - get: function () { - return o || (o = h.getElementsByTagName("head")[0]); - }, - }), - (function () { - for ( - var t, - n = e.requestAnimationFrame, - c = e.cancelAnimationFrame, - r = ["o", "ms", "moz", "webkit"], - a = r.length; - !c && a--; - - ) - (n = n || e[r[a] + "RequestAnimationFrame"]), - (c = - e[r[a] + "CancelAnimationFrame"] || - e[r[a] + "CancelRequestAnimationFrame"]); - c || - (n - ? ((t = n), - (n = function (e) { - var n = !0; - return ( - t(function () { - n && e.apply(this, arguments); - }), - function () { - n = !1; - } - ); - }), - (c = function (e) { - e(); - })) - : ((n = function (e) { - return setTimeout(e, 15, 15); - }), - (c = function (e) { - clearTimeout(e); - }))), - (e.requestAnimationFrame = n), - (e.cancelAnimationFrame = c); - })(); - try { - new e.CustomEvent("?"); - } catch (T) { - e.CustomEvent = (function (e, t) { - function n(e, t, n, c) { - this.initEvent(e, t, n), (this.detail = c); - } - return function (c, r) { - var a = h.createEvent(e); - if ("string" != typeof c) - throw new Error("An event name must be provided"); - return ( - "Event" == e && (a.initCustomEvent = n), - null == r && (r = t), - a.initCustomEvent(c, r.bubbles, r.cancelable, r.detail), - a - ); - }; - })(e.CustomEvent ? "CustomEvent" : "Event", { - bubbles: !1, - cancelable: !1, - detail: null, - }); - } - try { - new Event("_"); - } catch (T) { - (T = (function (e) { - function t(e, t) { - c(arguments.length, "Event"); - var n = h.createEvent("Event"); - return ( - t || (t = {}), n.initEvent(e, !!t.bubbles, !!t.cancelable), n - ); - } - return (t.prototype = e.prototype), t; - })(e.Event || function () {})), - p(e, "Event", { value: T }), - Event !== T && (Event = T); - } - try { - new KeyboardEvent("_", {}); - } catch (T) { - (T = (function (t) { - var n, - r = 0, - a = { - char: "", - key: "", - location: 0, - ctrlKey: !1, - shiftKey: !1, - altKey: !1, - metaKey: !1, - altGraphKey: !1, - repeat: !1, - locale: navigator.language, - detail: 0, - bubbles: !1, - cancelable: !1, - keyCode: 0, - charCode: 0, - which: 0, - }; - try { - var o = h.createEvent("KeyboardEvent"); - o.initKeyboardEvent( - "keyup", - !1, - !1, - e, - "+", - 3, - !0, - !1, - !0, - !1, - !1 - ), - (r = - ("+" == (o.keyIdentifier || o.key) && - 3 == (o.keyLocation || o.location) && - (o.ctrlKey ? (o.altKey ? 1 : 3) : o.shiftKey ? 2 : 4)) || - 9); - } catch (T) {} - function l(e) { - for ( - var t = [], - n = [ - "ctrlKey", - "Control", - "shiftKey", - "Shift", - "altKey", - "Alt", - "metaKey", - "Meta", - "altGraphKey", - "AltGraph", - ], - c = 0; - c < n.length; - c += 2 - ) - e[n[c]] && t.push(n[c + 1]); - return t.join(" "); - } - function i(e, t) { - for (var n in t) - t.hasOwnProperty(n) && - !t.hasOwnProperty.call(e, n) && - (e[n] = t[n]); - return e; - } - function s(e, t, n) { - try { - t[e] = n[e]; - } catch (T) {} - } - function u(t, o) { - c(arguments.length, "KeyboardEvent"), (o = i(o || {}, a)); - var u, - f = h.createEvent(n), - p = o.ctrlKey, - v = o.shiftKey, - d = o.altKey, - m = o.metaKey, - z = o.altGraphKey, - y = r > 3 ? l(o) : null, - g = String(o.key), - M = String(o.char), - H = o.location, - b = o.keyCode || ((o.keyCode = g) && g.charCodeAt(0)) || 0, - V = o.charCode || ((o.charCode = M) && M.charCodeAt(0)) || 0, - L = o.bubbles, - w = o.cancelable, - C = o.repeat, - E = o.locale, - S = o.view || e; - if ((o.which || (o.which = o.keyCode), "initKeyEvent" in f)) - f.initKeyEvent(t, L, w, S, p, d, v, m, b, V); - else if (0 < r && "initKeyboardEvent" in f) { - switch (((u = [t, L, w, S]), r)) { - case 1: - u.push(g, H, p, v, d, m, z); - break; - case 2: - u.push(p, d, v, m, b, V); - break; - case 3: - u.push(g, H, p, d, v, m, z); - break; - case 4: - u.push(g, H, y, C, E); - break; - default: - u.push(char, g, H, y, C, E); - } - f.initKeyboardEvent.apply(f, u); - } else f.initEvent(t, L, w); - for (g in f) a.hasOwnProperty(g) && f[g] !== o[g] && s(g, f, o); - return f; - } - return ( - (n = 0 < r ? "KeyboardEvent" : "Event"), - (u.prototype = t.prototype), - u - ); - })(e.KeyboardEvent || function () {})), - p(e, "KeyboardEvent", { value: T }), - KeyboardEvent !== T && (KeyboardEvent = T); - } - try { - new MouseEvent("_", {}); - } catch (T) { - (T = (function (t) { - function n(t, n) { - c(arguments.length, "MouseEvent"); - var r = h.createEvent("MouseEvent"); - return ( - n || (n = {}), - r.initMouseEvent( - t, - !!n.bubbles, - !!n.cancelable, - n.view || e, - n.detail || 1, - n.screenX || 0, - n.screenY || 0, - n.clientX || 0, - n.clientY || 0, - !!n.ctrlKey, - !!n.altKey, - !!n.shiftKey, - !!n.metaKey, - n.button || 0, - n.relatedTarget || null - ), - r - ); - } - return (n.prototype = t.prototype), n; - })(e.MouseEvent || function () {})), - p(e, "MouseEvent", { value: T }), - MouseEvent !== T && (MouseEvent = T); - } - h.querySelectorAll("*").forEach || - (function () { - function e(e) { - var t = e.querySelectorAll; - e.querySelectorAll = function (e) { - var n = t.call(this, e); - return (n.forEach = Array.prototype.forEach), n; - }; - } - e(h), e(Element.prototype); - })(); - try { - h.querySelector(":scope *"); - } catch (T) { - !(function () { - var e = "data-scope-" + ((1e9 * Math.random()) >>> 0), - t = Element.prototype, - n = t.querySelector, - c = t.querySelectorAll; - function r(t, n, c) { - if (t.type != h.ELEMENT_NODE) return n.call(t, c); - t.setAttribute(e, null); - var r = n.call( - t, - String(c).replace(/(^|,\s*)(:scope([ >]|$))/g, function ( - t, - n, - c, - r - ) { - return n + "[" + e + "]" + (r || " "); - }) - ); - return t.removeAttribute(e), r; - } - (t.querySelector = function (e) { - return r(this, n, e); - }), - (t.querySelectorAll = function (e) { - return r(this, c, e); - }); - })(); - } - })(window), - (function (e) { - "use strict"; - var t = - e.WeakMap || - (function () { - var e, - t = 0, - n = !1, - c = !1; - function r(t, r, a) { - (c = a), (n = !1), (e = void 0), t.dispatchEvent(r); - } - function o(e) { - this.value = e; - } - function l() { - t++, (this.__ce__ = new a("@DOMMap:" + t + Math.random())); - } - return ( - (o.prototype.handleEvent = function (t) { - (n = !0), - c - ? t.currentTarget.removeEventListener(t.type, this, !1) - : (e = this.value); - }), - (l.prototype = { - constructor: l, - delete: function (e) { - return r(e, this.__ce__, !0), n; - }, - get: function (t) { - r(t, this.__ce__, !1); - var n = e; - return (e = void 0), n; - }, - has: function (e) { - return r(e, this.__ce__, !1), n; - }, - set: function (e, t) { - return ( - r(e, this.__ce__, !0), - e.addEventListener(this.__ce__.type, new o(t), !1), - this - ); - }, - }), - l - ); - })(); - function n() {} - function c(e, t, n) { - function r(e) { - r.once && - (e.currentTarget.removeEventListener(e.type, t, r), - (r.removed = !0)), - r.passive && (e.preventDefault = c.preventDefault), - "function" === typeof r.callback - ? r.callback.call(this, e) - : r.callback && r.callback.handleEvent(e), - r.passive && delete e.preventDefault; - } - return ( - (r.type = e), - (r.callback = t), - (r.capture = !!n.capture), - (r.passive = !!n.passive), - (r.once = !!n.once), - (r.removed = !1), - r - ); - } - (n.prototype = (Object.create || Object)(null)), - (c.preventDefault = function () {}); - var r, - a = e.CustomEvent, - o = e.dispatchEvent, - l = e.addEventListener, - i = e.removeEventListener, - s = 0, - u = function () { - s++; - }, - h = - [].indexOf || - function (e) { - for (var t = this.length; t-- && this[t] !== e; ); - return t; - }, - f = function (e) { - return "".concat( - e.capture ? "1" : "0", - e.passive ? "1" : "0", - e.once ? "1" : "0" - ); - }; - try { - l("_", u, { once: !0 }), - o(new a("_")), - o(new a("_")), - i("_", u, { once: !0 }); - } catch (p) {} - 1 !== s && - (function () { - var a = new t(); - (r = function (e) { - if (e) { - var t = e.prototype; - (t.addEventListener = (function (e) { - return function (t, r, o) { - if (o && "boolean" !== typeof o) { - var l, - i, - s, - u = a.get(this), - p = f(o); - u || a.set(this, (u = new n())), - t in u || (u[t] = { handler: [], wrap: [] }), - (i = u[t]), - (l = h.call(i.handler, r)) < 0 - ? ((l = i.handler.push(r) - 1), - (i.wrap[l] = s = new n())) - : (s = i.wrap[l]), - p in s || - ((s[p] = c(t, r, o)), - e.call(this, t, s[p], s[p].capture)); - } else e.call(this, t, r, o); - }; - })(t.addEventListener)), - (t.removeEventListener = (function (e) { - return function (t, n, c) { - if (c && "boolean" !== typeof c) { - var r, - o, - l, - i, - s = a.get(this); - if ( - s && - t in s && - ((l = s[t]), - -1 < (o = h.call(l.handler, n)) && - (r = f(c)) in (i = l.wrap[o])) - ) { - for (r in (e.call(this, t, i[r], i[r].capture), - delete i[r], - i)) - return; - l.handler.splice(o, 1), - l.wrap.splice(o, 1), - 0 === l.handler.length && delete s[t]; - } - } else e.call(this, t, n, c); - }; - })(t.removeEventListener)); - } - }), - e.EventTarget - ? r(EventTarget) - : (r(e.Text), - r(e.Element || e.HTMLElement), - r(e.HTMLDocument), - r(e.Window || { prototype: e }), - r(e.XMLHttpRequest)); - })(); - })(self); - }, - 222: function (e) { - "use strict"; - var t = "Function.prototype.bind called on incompatible ", - n = Array.prototype.slice, - c = Object.prototype.toString, - r = "[object Function]"; - e.exports = function (e) { - var a = this; - if ("function" !== typeof a || c.call(a) !== r) - throw new TypeError(t + a); - for ( - var o, - l = n.call(arguments, 1), - i = function () { - if (this instanceof o) { - var t = a.apply(this, l.concat(n.call(arguments))); - return Object(t) === t ? t : this; - } - return a.apply(e, l.concat(n.call(arguments))); - }, - s = Math.max(0, a.length - l.length), - u = [], - h = 0; - h < s; - h++ - ) - u.push("$" + h); - if ( - ((o = Function( - "binder", - "return function (" + - u.join(",") + - "){ return binder.apply(this,arguments); }" - )(i)), - a.prototype) - ) { - var f = function () {}; - (f.prototype = a.prototype), - (o.prototype = new f()), - (f.prototype = null); - } - return o; - }; - }, - 3350: function (e, t, n) { - "use strict"; - var c = n(222); - e.exports = Function.prototype.bind || c; - }, - 2506: function (e, t, n) { - "use strict"; - var c, - r = SyntaxError, - a = Function, - o = TypeError, - l = function (e) { - try { - return a('"use strict"; return (' + e + ").constructor;")(); - } catch (t) {} - }, - i = Object.getOwnPropertyDescriptor; - if (i) - try { - i({}, ""); - } catch (S) { - i = null; - } - var s = function () { - throw new o(); - }, - u = i - ? (function () { - try { - return s; - } catch (e) { - try { - return i(arguments, "callee").get; - } catch (t) { - return s; - } - } - })() - : s, - h = n(697)(), - f = - Object.getPrototypeOf || - function (e) { - return e.__proto__; - }, - p = {}, - v = "undefined" === typeof Uint8Array ? c : f(Uint8Array), - d = { - "%AggregateError%": - "undefined" === typeof AggregateError ? c : AggregateError, - "%Array%": Array, - "%ArrayBuffer%": - "undefined" === typeof ArrayBuffer ? c : ArrayBuffer, - "%ArrayIteratorPrototype%": h ? f([][Symbol.iterator]()) : c, - "%AsyncFromSyncIteratorPrototype%": c, - "%AsyncFunction%": p, - "%AsyncGenerator%": p, - "%AsyncGeneratorFunction%": p, - "%AsyncIteratorPrototype%": p, - "%Atomics%": "undefined" === typeof Atomics ? c : Atomics, - "%BigInt%": "undefined" === typeof BigInt ? c : BigInt, - "%Boolean%": Boolean, - "%DataView%": "undefined" === typeof DataView ? c : DataView, - "%Date%": Date, - "%decodeURI%": decodeURI, - "%decodeURIComponent%": decodeURIComponent, - "%encodeURI%": encodeURI, - "%encodeURIComponent%": encodeURIComponent, - "%Error%": Error, - "%eval%": eval, - "%EvalError%": EvalError, - "%Float32Array%": - "undefined" === typeof Float32Array ? c : Float32Array, - "%Float64Array%": - "undefined" === typeof Float64Array ? c : Float64Array, - "%FinalizationRegistry%": - "undefined" === typeof FinalizationRegistry - ? c - : FinalizationRegistry, - "%Function%": a, - "%GeneratorFunction%": p, - "%Int8Array%": "undefined" === typeof Int8Array ? c : Int8Array, - "%Int16Array%": "undefined" === typeof Int16Array ? c : Int16Array, - "%Int32Array%": "undefined" === typeof Int32Array ? c : Int32Array, - "%isFinite%": isFinite, - "%isNaN%": isNaN, - "%IteratorPrototype%": h ? f(f([][Symbol.iterator]())) : c, - "%JSON%": "object" === typeof JSON ? JSON : c, - "%Map%": "undefined" === typeof Map ? c : Map, - "%MapIteratorPrototype%": - "undefined" !== typeof Map && h - ? f(new Map()[Symbol.iterator]()) - : c, - "%Math%": Math, - "%Number%": Number, - "%Object%": Object, - "%parseFloat%": parseFloat, - "%parseInt%": parseInt, - "%Promise%": "undefined" === typeof Promise ? c : Promise, - "%Proxy%": "undefined" === typeof Proxy ? c : Proxy, - "%RangeError%": RangeError, - "%ReferenceError%": ReferenceError, - "%Reflect%": "undefined" === typeof Reflect ? c : Reflect, - "%RegExp%": RegExp, - "%Set%": "undefined" === typeof Set ? c : Set, - "%SetIteratorPrototype%": - "undefined" !== typeof Set && h - ? f(new Set()[Symbol.iterator]()) - : c, - "%SharedArrayBuffer%": - "undefined" === typeof SharedArrayBuffer ? c : SharedArrayBuffer, - "%String%": String, - "%StringIteratorPrototype%": h ? f(""[Symbol.iterator]()) : c, - "%Symbol%": h ? Symbol : c, - "%SyntaxError%": r, - "%ThrowTypeError%": u, - "%TypedArray%": v, - "%TypeError%": o, - "%Uint8Array%": "undefined" === typeof Uint8Array ? c : Uint8Array, - "%Uint8ClampedArray%": - "undefined" === typeof Uint8ClampedArray ? c : Uint8ClampedArray, - "%Uint16Array%": - "undefined" === typeof Uint16Array ? c : Uint16Array, - "%Uint32Array%": - "undefined" === typeof Uint32Array ? c : Uint32Array, - "%URIError%": URIError, - "%WeakMap%": "undefined" === typeof WeakMap ? c : WeakMap, - "%WeakRef%": "undefined" === typeof WeakRef ? c : WeakRef, - "%WeakSet%": "undefined" === typeof WeakSet ? c : WeakSet, - }, - m = function e(t) { - var n; - if ("%AsyncFunction%" === t) n = l("async function () {}"); - else if ("%GeneratorFunction%" === t) n = l("function* () {}"); - else if ("%AsyncGeneratorFunction%" === t) - n = l("async function* () {}"); - else if ("%AsyncGenerator%" === t) { - var c = e("%AsyncGeneratorFunction%"); - c && (n = c.prototype); - } else if ("%AsyncIteratorPrototype%" === t) { - var r = e("%AsyncGenerator%"); - r && (n = f(r.prototype)); - } - return (d[t] = n), n; - }, - z = { - "%ArrayBufferPrototype%": ["ArrayBuffer", "prototype"], - "%ArrayPrototype%": ["Array", "prototype"], - "%ArrayProto_entries%": ["Array", "prototype", "entries"], - "%ArrayProto_forEach%": ["Array", "prototype", "forEach"], - "%ArrayProto_keys%": ["Array", "prototype", "keys"], - "%ArrayProto_values%": ["Array", "prototype", "values"], - "%AsyncFunctionPrototype%": ["AsyncFunction", "prototype"], - "%AsyncGenerator%": ["AsyncGeneratorFunction", "prototype"], - "%AsyncGeneratorPrototype%": [ - "AsyncGeneratorFunction", - "prototype", - "prototype", - ], - "%BooleanPrototype%": ["Boolean", "prototype"], - "%DataViewPrototype%": ["DataView", "prototype"], - "%DatePrototype%": ["Date", "prototype"], - "%ErrorPrototype%": ["Error", "prototype"], - "%EvalErrorPrototype%": ["EvalError", "prototype"], - "%Float32ArrayPrototype%": ["Float32Array", "prototype"], - "%Float64ArrayPrototype%": ["Float64Array", "prototype"], - "%FunctionPrototype%": ["Function", "prototype"], - "%Generator%": ["GeneratorFunction", "prototype"], - "%GeneratorPrototype%": [ - "GeneratorFunction", - "prototype", - "prototype", - ], - "%Int8ArrayPrototype%": ["Int8Array", "prototype"], - "%Int16ArrayPrototype%": ["Int16Array", "prototype"], - "%Int32ArrayPrototype%": ["Int32Array", "prototype"], - "%JSONParse%": ["JSON", "parse"], - "%JSONStringify%": ["JSON", "stringify"], - "%MapPrototype%": ["Map", "prototype"], - "%NumberPrototype%": ["Number", "prototype"], - "%ObjectPrototype%": ["Object", "prototype"], - "%ObjProto_toString%": ["Object", "prototype", "toString"], - "%ObjProto_valueOf%": ["Object", "prototype", "valueOf"], - "%PromisePrototype%": ["Promise", "prototype"], - "%PromiseProto_then%": ["Promise", "prototype", "then"], - "%Promise_all%": ["Promise", "all"], - "%Promise_reject%": ["Promise", "reject"], - "%Promise_resolve%": ["Promise", "resolve"], - "%RangeErrorPrototype%": ["RangeError", "prototype"], - "%ReferenceErrorPrototype%": ["ReferenceError", "prototype"], - "%RegExpPrototype%": ["RegExp", "prototype"], - "%SetPrototype%": ["Set", "prototype"], - "%SharedArrayBufferPrototype%": ["SharedArrayBuffer", "prototype"], - "%StringPrototype%": ["String", "prototype"], - "%SymbolPrototype%": ["Symbol", "prototype"], - "%SyntaxErrorPrototype%": ["SyntaxError", "prototype"], - "%TypedArrayPrototype%": ["TypedArray", "prototype"], - "%TypeErrorPrototype%": ["TypeError", "prototype"], - "%Uint8ArrayPrototype%": ["Uint8Array", "prototype"], - "%Uint8ClampedArrayPrototype%": ["Uint8ClampedArray", "prototype"], - "%Uint16ArrayPrototype%": ["Uint16Array", "prototype"], - "%Uint32ArrayPrototype%": ["Uint32Array", "prototype"], - "%URIErrorPrototype%": ["URIError", "prototype"], - "%WeakMapPrototype%": ["WeakMap", "prototype"], - "%WeakSetPrototype%": ["WeakSet", "prototype"], - }, - y = n(3350), - g = n(8316), - M = y.call(Function.call, Array.prototype.concat), - H = y.call(Function.apply, Array.prototype.splice), - b = y.call(Function.call, String.prototype.replace), - V = y.call(Function.call, String.prototype.slice), - L = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g, - w = /\\(\\)?/g, - C = function (e) { - var t = V(e, 0, 1), - n = V(e, -1); - if ("%" === t && "%" !== n) - throw new r("invalid intrinsic syntax, expected closing `%`"); - if ("%" === n && "%" !== t) - throw new r("invalid intrinsic syntax, expected opening `%`"); - var c = []; - return ( - b(e, L, function (e, t, n, r) { - c[c.length] = n ? b(r, w, "$1") : t || e; - }), - c - ); - }, - E = function (e, t) { - var n, - c = e; - if ((g(z, c) && (c = "%" + (n = z[c])[0] + "%"), g(d, c))) { - var a = d[c]; - if ((a === p && (a = m(c)), "undefined" === typeof a && !t)) - throw new o( - "intrinsic " + - e + - " exists, but is not available. Please file an issue!" - ); - return { alias: n, name: c, value: a }; - } - throw new r("intrinsic " + e + " does not exist!"); - }; - e.exports = function (e, t) { - if ("string" !== typeof e || 0 === e.length) - throw new o("intrinsic name must be a non-empty string"); - if (arguments.length > 1 && "boolean" !== typeof t) - throw new o('"allowMissing" argument must be a boolean'); - var n = C(e), - c = n.length > 0 ? n[0] : "", - a = E("%" + c + "%", t), - l = a.name, - s = a.value, - u = !1, - h = a.alias; - h && ((c = h[0]), H(n, M([0, 1], h))); - for (var f = 1, p = !0; f < n.length; f += 1) { - var v = n[f], - m = V(v, 0, 1), - z = V(v, -1); - if ( - ('"' === m || - "'" === m || - "`" === m || - '"' === z || - "'" === z || - "`" === z) && - m !== z - ) - throw new r( - "property names with quotes must have matching quotes" - ); - if ( - (("constructor" !== v && p) || (u = !0), - g(d, (l = "%" + (c += "." + v) + "%"))) - ) - s = d[l]; - else if (null != s) { - if (!(v in s)) { - if (!t) - throw new o( - "base intrinsic for " + - e + - " exists, but the property is not available." - ); - return; - } - if (i && f + 1 >= n.length) { - var y = i(s, v); - s = - (p = !!y) && "get" in y && !("originalValue" in y.get) - ? y.get - : s[v]; - } else (p = g(s, v)), (s = s[v]); - p && !u && (d[l] = s); - } - } - return s; - }; - }, - 4566: function (e, t, n) { - "use strict"; - var c = "__global_unique_id__"; - e.exports = function () { - return (n.g[c] = (n.g[c] || 0) + 1); - }; - }, - 697: function (e, t, n) { - "use strict"; - var c = "undefined" !== typeof Symbol && Symbol, - r = n(3297); - e.exports = function () { - return ( - "function" === typeof c && - "function" === typeof Symbol && - "symbol" === typeof c("foo") && - "symbol" === typeof Symbol("bar") && - r() - ); - }; - }, - 3297: function (e) { - "use strict"; - e.exports = function () { - if ( - "function" !== typeof Symbol || - "function" !== typeof Object.getOwnPropertySymbols - ) - return !1; - if ("symbol" === typeof Symbol.iterator) return !0; - var e = {}, - t = Symbol("test"), - n = Object(t); - if ("string" === typeof t) return !1; - if ("[object Symbol]" !== Object.prototype.toString.call(t)) - return !1; - if ("[object Symbol]" !== Object.prototype.toString.call(n)) - return !1; - for (t in ((e[t] = 42), e)) return !1; - if ("function" === typeof Object.keys && 0 !== Object.keys(e).length) - return !1; - if ( - "function" === typeof Object.getOwnPropertyNames && - 0 !== Object.getOwnPropertyNames(e).length - ) - return !1; - var c = Object.getOwnPropertySymbols(e); - if (1 !== c.length || c[0] !== t) return !1; - if (!Object.prototype.propertyIsEnumerable.call(e, t)) return !1; - if ("function" === typeof Object.getOwnPropertyDescriptor) { - var r = Object.getOwnPropertyDescriptor(e, t); - if (42 !== r.value || !0 !== r.enumerable) return !1; - } - return !0; - }; - }, - 4707: function (e, t, n) { - "use strict"; - var c = n(3297); - e.exports = function () { - return c() && !!Symbol.toStringTag; - }; - }, - 8316: function (e, t, n) { - "use strict"; - var c = n(3350); - e.exports = c.call(Function.call, Object.prototype.hasOwnProperty); - }, - 2110: function (e, t, n) { - "use strict"; - var c = n(8309), - r = { - childContextTypes: !0, - contextType: !0, - contextTypes: !0, - defaultProps: !0, - displayName: !0, - getDefaultProps: !0, - getDerivedStateFromError: !0, - getDerivedStateFromProps: !0, - mixins: !0, - propTypes: !0, - type: !0, - }, - a = { - name: !0, - length: !0, - prototype: !0, - caller: !0, - callee: !0, - arguments: !0, - arity: !0, - }, - o = { - $$typeof: !0, - compare: !0, - defaultProps: !0, - displayName: !0, - propTypes: !0, - type: !0, - }, - l = {}; - function i(e) { - return c.isMemo(e) ? o : l[e.$$typeof] || r; - } - (l[c.ForwardRef] = { - $$typeof: !0, - render: !0, - defaultProps: !0, - displayName: !0, - propTypes: !0, - }), - (l[c.Memo] = o); - var s = Object.defineProperty, - u = Object.getOwnPropertyNames, - h = Object.getOwnPropertySymbols, - f = Object.getOwnPropertyDescriptor, - p = Object.getPrototypeOf, - v = Object.prototype; - e.exports = function e(t, n, c) { - if ("string" !== typeof n) { - if (v) { - var r = p(n); - r && r !== v && e(t, r, c); - } - var o = u(n); - h && (o = o.concat(h(n))); - for (var l = i(t), d = i(n), m = 0; m < o.length; ++m) { - var z = o[m]; - if (!a[z] && (!c || !c[z]) && (!d || !d[z]) && (!l || !l[z])) { - var y = f(n, z); - try { - s(t, z, y); - } catch (g) {} - } - } - } - return t; - }; - }, - 746: function (e, t) { - "use strict"; - var n = "function" === typeof Symbol && Symbol.for, - c = n ? Symbol.for("react.element") : 60103, - r = n ? Symbol.for("react.portal") : 60106, - a = n ? Symbol.for("react.fragment") : 60107, - o = n ? Symbol.for("react.strict_mode") : 60108, - l = n ? Symbol.for("react.profiler") : 60114, - i = n ? Symbol.for("react.provider") : 60109, - s = n ? Symbol.for("react.context") : 60110, - u = n ? Symbol.for("react.async_mode") : 60111, - h = n ? Symbol.for("react.concurrent_mode") : 60111, - f = n ? Symbol.for("react.forward_ref") : 60112, - p = n ? Symbol.for("react.suspense") : 60113, - v = n ? Symbol.for("react.suspense_list") : 60120, - d = n ? Symbol.for("react.memo") : 60115, - m = n ? Symbol.for("react.lazy") : 60116, - z = n ? Symbol.for("react.block") : 60121, - y = n ? Symbol.for("react.fundamental") : 60117, - g = n ? Symbol.for("react.responder") : 60118, - M = n ? Symbol.for("react.scope") : 60119; - function H(e) { - if ("object" === typeof e && null !== e) { - var t = e.$$typeof; - switch (t) { - case c: - switch ((e = e.type)) { - case u: - case h: - case a: - case l: - case o: - case p: - return e; - default: - switch ((e = e && e.$$typeof)) { - case s: - case f: - case m: - case d: - case i: - return e; - default: - return t; - } - } - case r: - return t; - } - } - } - function b(e) { - return H(e) === h; - } - (t.AsyncMode = u), - (t.ConcurrentMode = h), - (t.ContextConsumer = s), - (t.ContextProvider = i), - (t.Element = c), - (t.ForwardRef = f), - (t.Fragment = a), - (t.Lazy = m), - (t.Memo = d), - (t.Portal = r), - (t.Profiler = l), - (t.StrictMode = o), - (t.Suspense = p), - (t.isAsyncMode = function (e) { - return b(e) || H(e) === u; - }), - (t.isConcurrentMode = b), - (t.isContextConsumer = function (e) { - return H(e) === s; - }), - (t.isContextProvider = function (e) { - return H(e) === i; - }), - (t.isElement = function (e) { - return "object" === typeof e && null !== e && e.$$typeof === c; - }), - (t.isForwardRef = function (e) { - return H(e) === f; - }), - (t.isFragment = function (e) { - return H(e) === a; - }), - (t.isLazy = function (e) { - return H(e) === m; - }), - (t.isMemo = function (e) { - return H(e) === d; - }), - (t.isPortal = function (e) { - return H(e) === r; - }), - (t.isProfiler = function (e) { - return H(e) === l; - }), - (t.isStrictMode = function (e) { - return H(e) === o; - }), - (t.isSuspense = function (e) { - return H(e) === p; - }), - (t.isValidElementType = function (e) { - return ( - "string" === typeof e || - "function" === typeof e || - e === a || - e === h || - e === l || - e === o || - e === p || - e === v || - ("object" === typeof e && - null !== e && - (e.$$typeof === m || - e.$$typeof === d || - e.$$typeof === i || - e.$$typeof === s || - e.$$typeof === f || - e.$$typeof === y || - e.$$typeof === g || - e.$$typeof === M || - e.$$typeof === z)) - ); - }), - (t.typeOf = H); - }, - 8309: function (e, t, n) { - "use strict"; - e.exports = n(746); - }, - 5450: function (e, t, n) { - "use strict"; - var c = n(4707)(), - r = n(4037)("Object.prototype.toString"), - a = function (e) { - return ( - !(c && e && "object" === typeof e && Symbol.toStringTag in e) && - "[object Arguments]" === r(e) - ); - }, - o = function (e) { - return ( - !!a(e) || - (null !== e && - "object" === typeof e && - "number" === typeof e.length && - e.length >= 0 && - "[object Array]" !== r(e) && - "[object Function]" === r(e.callee)) - ); - }, - l = (function () { - return a(arguments); - })(); - (a.isLegacyArguments = o), (e.exports = l ? a : o); - }, - 2833: function (e, t, n) { - "use strict"; - var c = Date.prototype.getDay, - r = Object.prototype.toString, - a = n(4707)(); - e.exports = function (e) { - return ( - "object" === typeof e && - null !== e && - (a - ? (function (e) { - try { - return c.call(e), !0; - } catch (t) { - return !1; - } - })(e) - : "[object Date]" === r.call(e)) - ); - }; - }, - 1146: function (e, t, n) { - "use strict"; - var c, - r, - a, - o, - l = n(4037), - i = n(4707)(); - if (i) { - (c = l("Object.prototype.hasOwnProperty")), - (r = l("RegExp.prototype.exec")), - (a = {}); - var s = function () { - throw a; - }; - (o = { toString: s, valueOf: s }), - "symbol" === typeof Symbol.toPrimitive && - (o[Symbol.toPrimitive] = s); - } - var u = l("Object.prototype.toString"), - h = Object.getOwnPropertyDescriptor; - e.exports = i - ? function (e) { - if (!e || "object" !== typeof e) return !1; - var t = h(e, "lastIndex"); - if (!(t && c(t, "value"))) return !1; - try { - r(e, o); - } catch (n) { - return n === a; - } - } - : function (e) { - return ( - !(!e || ("object" !== typeof e && "function" !== typeof e)) && - "[object RegExp]" === u(e) - ); - }; - }, - 3920: function (e, t, n) { - var c, - r = n(7757); - window, - (e.exports = - ((c = n(2791)), - (function (e) { - var t = {}; - function n(c) { - if (t[c]) return t[c].exports; - var r = (t[c] = { i: c, l: !1, exports: {} }); - return ( - e[c].call(r.exports, r, r.exports, n), (r.l = !0), r.exports - ); - } - return ( - (n.m = e), - (n.c = t), - (n.d = function (e, t, c) { - n.o(e, t) || - Object.defineProperty(e, t, { enumerable: !0, get: c }); - }), - (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 c = Object.create(null); - if ( - (n.r(c), - Object.defineProperty(c, "default", { - enumerable: !0, - value: e, - }), - 2 & t && "string" != typeof e) - ) - for (var r in e) - n.d( - c, - r, - function (t) { - return e[t]; - }.bind(null, r) - ); - return c; - }), - (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 = 1)) - ); - })([ - function (e, t) { - e.exports = c; - }, - function (e, t, n) { - "use strict"; - n.r(t), - n.d(t, "useMephistoReview", function () { - return p; - }), - n.d(t, "useMephistoReviewLegacy", function () { - return i; - }); - var c = n(0), - a = n.n(c); - function o(e, t) { - return ( - (function (e) { - if (Array.isArray(e)) return e; - })(e) || - (function (e, t) { - if ( - "undefined" != typeof Symbol && - Symbol.iterator in Object(e) - ) { - var n = [], - c = !0, - r = !1, - a = void 0; - try { - for ( - var o, l = e[Symbol.iterator](); - !(c = (o = l.next()).done) && - (n.push(o.value), !t || n.length !== t); - c = !0 - ); - } catch (e) { - (r = !0), (a = e); - } finally { - try { - c || null == l.return || l.return(); - } finally { - if (r) throw a; - } - } - return n; - } - })(e, t) || - (function (e, t) { - if (e) { - if ("string" == typeof e) return l(e, t); - var n = Object.prototype.toString.call(e).slice(8, -1); - return ( - "Object" === n && - e.constructor && - (n = e.constructor.name), - "Map" === n || "Set" === n - ? Array.from(e) - : "Arguments" === n || - /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) - ? l(e, t) - : void 0 - ); - } - })(e, t) || - (function () { - throw new TypeError( - "Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method." - ); - })() - ); - } - function l(e, t) { - (null == t || t > e.length) && (t = e.length); - for (var n = 0, c = new Array(t); n < t; n++) c[n] = e[n]; - return c; - } - function i() { - var e = - arguments.length > 0 && void 0 !== arguments[0] - ? arguments[0] - : {}, - t = e.useMock, - n = e.mock, - r = o(Object(c.useState)(null), 2), - l = r[0], - i = r[1], - s = o(Object(c.useState)(0), 2), - u = s[0], - h = s[1], - f = o(Object(c.useState)(null), 2), - p = f[0], - v = f[1], - d = void 0 !== n && (void 0 === t || !0 === t); - Object(c.useEffect)( - function () { - d || - fetch("/data_for_current_task") - .catch(function (e) { - v({ type: "DATA_RETRIEVAL", error: e }); - }) - .then(function (e) { - return e.json(); - }) - .then(function (e) { - return i(e); - }) - .catch(function (e) { - v({ type: "DATA_PARSE", error: e }); - }); - }, - [u] - ); - var m = a.a.useCallback( - function (e) { - fetch("/submit_current_task", { - method: "POST", - body: JSON.stringify(e), - }) - .catch(function (e) { - v({ type: "RESPONSE_SUBMIT", error: e }); - }) - .then(function () { - return h(u + 1); - }); - }, - [u, h] - ); - return d - ? n - : { - isLoading: !l, - data: l && l.data, - isFinished: l && l.finished, - submit: m, - error: p, - }; - } - function s(e, t, n, c, r, a, o) { - try { - var l = e[a](o), - i = l.value; - } catch (e) { - return void n(e); - } - l.done ? t(i) : Promise.resolve(i).then(c, r); - } - function u(e) { - return function () { - var t = this, - n = arguments; - return new Promise(function (c, r) { - var a = e.apply(t, n); - function o(e) { - s(a, c, r, o, l, "next", e); - } - function l(e) { - s(a, c, r, o, l, "throw", e); - } - o(void 0); - }); - }; - } - function h(e, t) { - return ( - (function (e) { - if (Array.isArray(e)) return e; - })(e) || - (function (e, t) { - if ( - "undefined" != typeof Symbol && - Symbol.iterator in Object(e) - ) { - var n = [], - c = !0, - r = !1, - a = void 0; - try { - for ( - var o, l = e[Symbol.iterator](); - !(c = (o = l.next()).done) && - (n.push(o.value), !t || n.length !== t); - c = !0 - ); - } catch (e) { - (r = !0), (a = e); - } finally { - try { - c || null == l.return || l.return(); - } finally { - if (r) throw a; - } - } - return n; - } - })(e, t) || - (function (e, t) { - if (e) { - if ("string" == typeof e) return f(e, t); - var n = Object.prototype.toString.call(e).slice(8, -1); - return ( - "Object" === n && - e.constructor && - (n = e.constructor.name), - "Map" === n || "Set" === n - ? Array.from(e) - : "Arguments" === n || - /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) - ? f(e, t) - : void 0 - ); - } - })(e, t) || - (function () { - throw new TypeError( - "Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method." - ); - })() - ); - } - function f(e, t) { - (null == t || t > e.length) && (t = e.length); - for (var n = 0, c = new Array(t); n < t; n++) c[n] = e[n]; - return c; - } - function p() { - var e = - arguments.length > 0 && void 0 !== arguments[0] - ? arguments[0] - : {}, - t = e.useMock, - n = e.mock, - a = e.taskId, - o = e.page, - l = e.resultsPerPage, - i = e.filters, - s = e.hostname, - f = void 0 === s ? "" : s, - p = h(Object(c.useState)(null), 2), - v = p[0], - d = p[1], - m = h(Object(c.useState)(!1), 2), - z = m[0], - y = m[1], - g = h(Object(c.useState)(null), 2), - M = g[0], - H = g[1], - b = void 0 !== n && (void 0 === t || !0 === t); - Object(c.useEffect)( - function () { - if (!b) { - var e = a - ? "".concat(f, "/data/").concat(a) - : "" - .concat(f, "/data?") - .concat(o ? "page=" + o : "") - .concat(l ? "&results_per_page=" + l : "") - .concat( - i ? "&filters=" + encodeURIComponent(i) : "" - ); - y(!0), - fetch(e, { method: "GET" }) - .catch(function (e) { - return H({ type: "DATA_RETRIEVAL", error: e }); - }) - .then(function (e) { - return e.json(); - }) - .then(function (e) { - return d(e); - }) - .catch(function (e) { - return H({ type: "DATA_PARSE", error: e }); - }) - .then(function () { - return y(!1); - }); - } - }, - [a, o, l, i] - ); - var V = Object(c.useCallback)( - (function () { - var e = u( - r.mark(function e(t) { - var n; - return r.wrap(function (e) { - for (;;) - switch ((e.prev = e.next)) { - case 0: - return ( - (n = null), - y(!0), - (e.next = 4), - fetch("".concat(f, "/data/").concat(a), { - method: "POST", - body: JSON.stringify(t), - }) - .catch(function (e) { - return H({ - type: "RESPONSE_SUBMIT", - error: e, - }); - }) - .then(function (e) { - return e.json(); - }) - .then(function (e) { - return (n = e && (e.result || e.error)); - }) - .catch(function (e) { - return H({ - type: "DATA_PARSE", - error: e, - }); - }) - .then(function () { - return y(!1); - }) - ); - case 4: - return e.abrupt("return", n); - case 5: - case "end": - return e.stop(); - } - }, e); - }) - ); - return function (t) { - return e.apply(this, arguments); - }; - })(), - [a] - ); - return b - ? n - : { - isLoading: z, - mode: v && v.mode, - data: v && v.data, - isFinished: v && v.finished, - totalPages: (v && v.total_pages) || 1, - submit: V, - error: M, - }; - } - }, - ]))); - }, - 1725: function (e) { - "use strict"; - var t = Object.getOwnPropertySymbols, - n = Object.prototype.hasOwnProperty, - c = Object.prototype.propertyIsEnumerable; - function r(e) { - if (null === e || void 0 === e) - throw new TypeError( - "Object.assign cannot be called with null or undefined" - ); - return Object(e); - } - e.exports = (function () { - try { - if (!Object.assign) return !1; - var e = new String("abc"); - if (((e[5] = "de"), "5" === Object.getOwnPropertyNames(e)[0])) - return !1; - for (var t = {}, n = 0; n < 10; n++) - t["_" + String.fromCharCode(n)] = n; - if ( - "0123456789" !== - Object.getOwnPropertyNames(t) - .map(function (e) { - return t[e]; - }) - .join("") - ) - return !1; - var c = {}; - return ( - "abcdefghijklmnopqrst".split("").forEach(function (e) { - c[e] = e; - }), - "abcdefghijklmnopqrst" === - Object.keys(Object.assign({}, c)).join("") - ); - } catch (r) { - return !1; - } - })() - ? Object.assign - : function (e, a) { - for (var o, l, i = r(e), s = 1; s < arguments.length; s++) { - for (var u in (o = Object(arguments[s]))) - n.call(o, u) && (i[u] = o[u]); - if (t) { - l = t(o); - for (var h = 0; h < l.length; h++) - c.call(o, l[h]) && (i[l[h]] = o[l[h]]); - } - } - return i; - }; - }, - 2592: function (e) { - "use strict"; - var t = function (e) { - return e !== e; - }; - e.exports = function (e, n) { - return 0 === e && 0 === n - ? 1 / e === 1 / n - : e === n || !(!t(e) || !t(n)); - }; - }, - 3454: function (e, t, n) { - "use strict"; - var c = n(9396), - r = n(9722), - a = n(2592), - o = n(3355), - l = n(3118), - i = r(o(), Object); - c(i, { getPolyfill: o, implementation: a, shim: l }), (e.exports = i); - }, - 3355: function (e, t, n) { - "use strict"; - var c = n(2592); - e.exports = function () { - return "function" === typeof Object.is ? Object.is : c; - }; - }, - 3118: function (e, t, n) { - "use strict"; - var c = n(3355), - r = n(9396); - e.exports = function () { - var e = c(); - return ( - r( - Object, - { is: e }, - { - is: function () { - return Object.is !== e; - }, - } - ), - e - ); - }; - }, - 1949: function (e, t, n) { - "use strict"; - var c; - if (!Object.keys) { - var r = Object.prototype.hasOwnProperty, - a = Object.prototype.toString, - o = n(7635), - l = Object.prototype.propertyIsEnumerable, - i = !l.call({ toString: null }, "toString"), - s = l.call(function () {}, "prototype"), - u = [ - "toString", - "toLocaleString", - "valueOf", - "hasOwnProperty", - "isPrototypeOf", - "propertyIsEnumerable", - "constructor", - ], - h = function (e) { - var t = e.constructor; - return t && t.prototype === e; - }, - f = { - $applicationCache: !0, - $console: !0, - $external: !0, - $frame: !0, - $frameElement: !0, - $frames: !0, - $innerHeight: !0, - $innerWidth: !0, - $onmozfullscreenchange: !0, - $onmozfullscreenerror: !0, - $outerHeight: !0, - $outerWidth: !0, - $pageXOffset: !0, - $pageYOffset: !0, - $parent: !0, - $scrollLeft: !0, - $scrollTop: !0, - $scrollX: !0, - $scrollY: !0, - $self: !0, - $webkitIndexedDB: !0, - $webkitStorageInfo: !0, - $window: !0, - }, - p = (function () { - if ("undefined" === typeof window) return !1; - for (var e in window) - try { - if ( - !f["$" + e] && - r.call(window, e) && - null !== window[e] && - "object" === typeof window[e] - ) - try { - h(window[e]); - } catch (t) { - return !0; - } - } catch (t) { - return !0; - } - return !1; - })(); - c = function (e) { - var t = null !== e && "object" === typeof e, - n = "[object Function]" === a.call(e), - c = o(e), - l = t && "[object String]" === a.call(e), - f = []; - if (!t && !n && !c) - throw new TypeError("Object.keys called on a non-object"); - var v = s && n; - if (l && e.length > 0 && !r.call(e, 0)) - for (var d = 0; d < e.length; ++d) f.push(String(d)); - if (c && e.length > 0) - for (var m = 0; m < e.length; ++m) f.push(String(m)); - else - for (var z in e) - (v && "prototype" === z) || !r.call(e, z) || f.push(String(z)); - if (i) - for ( - var y = (function (e) { - if ("undefined" === typeof window || !p) return h(e); - try { - return h(e); - } catch (t) { - return !1; - } - })(e), - g = 0; - g < u.length; - ++g - ) - (y && "constructor" === u[g]) || - !r.call(e, u[g]) || - f.push(u[g]); - return f; - }; - } - e.exports = c; - }, - 4892: function (e, t, n) { - "use strict"; - var c = Array.prototype.slice, - r = n(7635), - a = Object.keys, - o = a - ? function (e) { - return a(e); - } - : n(1949), - l = Object.keys; - (o.shim = function () { - if (Object.keys) { - var e = (function () { - var e = Object.keys(arguments); - return e && e.length === arguments.length; - })(1, 2); - e || - (Object.keys = function (e) { - return r(e) ? l(c.call(e)) : l(e); - }); - } else Object.keys = o; - return Object.keys || o; - }), - (e.exports = o); - }, - 7635: function (e) { - "use strict"; - var t = Object.prototype.toString; - e.exports = function (e) { - var n = t.call(e), - c = "[object Arguments]" === n; - return ( - c || - (c = - "[object Array]" !== n && - null !== e && - "object" === typeof e && - "number" === typeof e.length && - e.length >= 0 && - "[object Function]" === t.call(e.callee)), - c - ); - }; - }, - 888: function (e, t, n) { - "use strict"; - var c = n(9047); - function r() {} - function a() {} - (a.resetWarningCache = r), - (e.exports = function () { - function e(e, t, n, r, a, o) { - if (o !== c) { - var l = new Error( - "Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types" - ); - throw ((l.name = "Invariant Violation"), l); - } - } - function t() { - return e; - } - e.isRequired = e; - var n = { - array: e, - bigint: e, - bool: e, - func: e, - number: e, - object: e, - string: e, - symbol: e, - any: e, - arrayOf: t, - element: e, - elementType: e, - instanceOf: t, - node: e, - objectOf: t, - oneOf: t, - oneOfType: t, - shape: t, - exact: t, - checkPropTypes: a, - resetWarningCache: r, - }; - return (n.PropTypes = n), n; - }); - }, - 2007: function (e, t, n) { - e.exports = n(888)(); - }, - 9047: function (e) { - "use strict"; - e.exports = "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"; - }, - 4463: function (e, t, n) { - "use strict"; - var c = n(2791), - r = n(1725), - a = n(5296); - function o(e) { - for ( - var t = - "https://reactjs.org/docs/error-decoder.html?invariant=" + e, - n = 1; - n < arguments.length; - n++ - ) - t += "&args[]=" + encodeURIComponent(arguments[n]); - return ( - "Minified React error #" + - e + - "; visit " + - t + - " for the full message or use the non-minified dev environment for full errors and additional helpful warnings." - ); - } - if (!c) throw Error(o(227)); - var l = new Set(), - i = {}; - function s(e, t) { - u(e, t), u(e + "Capture", t); - } - function u(e, t) { - for (i[e] = t, e = 0; e < t.length; e++) l.add(t[e]); - } - var h = !( - "undefined" === typeof window || - "undefined" === typeof window.document || - "undefined" === typeof window.document.createElement - ), - f = /^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/, - p = Object.prototype.hasOwnProperty, - v = {}, - d = {}; - function m(e, t, n, c, r, a, o) { - (this.acceptsBooleans = 2 === t || 3 === t || 4 === t), - (this.attributeName = c), - (this.attributeNamespace = r), - (this.mustUseProperty = n), - (this.propertyName = e), - (this.type = t), - (this.sanitizeURL = a), - (this.removeEmptyString = o); - } - var z = {}; - "children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style" - .split(" ") - .forEach(function (e) { - z[e] = new m(e, 0, !1, e, null, !1, !1); - }), - [ - ["acceptCharset", "accept-charset"], - ["className", "class"], - ["htmlFor", "for"], - ["httpEquiv", "http-equiv"], - ].forEach(function (e) { - var t = e[0]; - z[t] = new m(t, 1, !1, e[1], null, !1, !1); - }), - ["contentEditable", "draggable", "spellCheck", "value"].forEach( - function (e) { - z[e] = new m(e, 2, !1, e.toLowerCase(), null, !1, !1); - } - ), - [ - "autoReverse", - "externalResourcesRequired", - "focusable", - "preserveAlpha", - ].forEach(function (e) { - z[e] = new m(e, 2, !1, e, null, !1, !1); - }), - "allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope" - .split(" ") - .forEach(function (e) { - z[e] = new m(e, 3, !1, e.toLowerCase(), null, !1, !1); - }), - ["checked", "multiple", "muted", "selected"].forEach(function (e) { - z[e] = new m(e, 3, !0, e, null, !1, !1); - }), - ["capture", "download"].forEach(function (e) { - z[e] = new m(e, 4, !1, e, null, !1, !1); - }), - ["cols", "rows", "size", "span"].forEach(function (e) { - z[e] = new m(e, 6, !1, e, null, !1, !1); - }), - ["rowSpan", "start"].forEach(function (e) { - z[e] = new m(e, 5, !1, e.toLowerCase(), null, !1, !1); - }); - var y = /[\-:]([a-z])/g; - function g(e) { - return e[1].toUpperCase(); - } - function M(e, t, n, c) { - var r = z.hasOwnProperty(t) ? z[t] : null; - (null !== r - ? 0 === r.type - : !c && - 2 < t.length && - ("o" === t[0] || "O" === t[0]) && - ("n" === t[1] || "N" === t[1])) || - ((function (e, t, n, c) { - if ( - null === t || - "undefined" === typeof t || - (function (e, t, n, c) { - if (null !== n && 0 === n.type) return !1; - switch (typeof t) { - case "function": - case "symbol": - return !0; - case "boolean": - return ( - !c && - (null !== n - ? !n.acceptsBooleans - : "data-" !== (e = e.toLowerCase().slice(0, 5)) && - "aria-" !== e) - ); - default: - return !1; - } - })(e, t, n, c) - ) - return !0; - if (c) return !1; - if (null !== n) - switch (n.type) { - case 3: - return !t; - case 4: - return !1 === t; - case 5: - return isNaN(t); - case 6: - return isNaN(t) || 1 > t; - } - return !1; - })(t, n, r, c) && (n = null), - c || null === r - ? (function (e) { - return ( - !!p.call(d, e) || - (!p.call(v, e) && - (f.test(e) ? (d[e] = !0) : ((v[e] = !0), !1))) - ); - })(t) && - (null === n ? e.removeAttribute(t) : e.setAttribute(t, "" + n)) - : r.mustUseProperty - ? (e[r.propertyName] = null === n ? 3 !== r.type && "" : n) - : ((t = r.attributeName), - (c = r.attributeNamespace), - null === n - ? e.removeAttribute(t) - : ((n = - 3 === (r = r.type) || (4 === r && !0 === n) - ? "" - : "" + n), - c ? e.setAttributeNS(c, t, n) : e.setAttribute(t, n)))); - } - "accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height" - .split(" ") - .forEach(function (e) { - var t = e.replace(y, g); - z[t] = new m(t, 1, !1, e, null, !1, !1); - }), - "xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type" - .split(" ") - .forEach(function (e) { - var t = e.replace(y, g); - z[t] = new m(t, 1, !1, e, "http://www.w3.org/1999/xlink", !1, !1); - }), - ["xml:base", "xml:lang", "xml:space"].forEach(function (e) { - var t = e.replace(y, g); - z[t] = new m( - t, - 1, - !1, - e, - "http://www.w3.org/XML/1998/namespace", - !1, - !1 - ); - }), - ["tabIndex", "crossOrigin"].forEach(function (e) { - z[e] = new m(e, 1, !1, e.toLowerCase(), null, !1, !1); - }), - (z.xlinkHref = new m( - "xlinkHref", - 1, - !1, - "xlink:href", - "http://www.w3.org/1999/xlink", - !0, - !1 - )), - ["src", "href", "action", "formAction"].forEach(function (e) { - z[e] = new m(e, 1, !1, e.toLowerCase(), null, !0, !0); - }); - var H = c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED, - b = 60103, - V = 60106, - L = 60107, - w = 60108, - C = 60114, - E = 60109, - S = 60110, - A = 60112, - x = 60113, - k = 60120, - _ = 60115, - O = 60116, - P = 60121, - N = 60128, - T = 60129, - j = 60130, - R = 60131; - if ("function" === typeof Symbol && Symbol.for) { - var D = Symbol.for; - (b = D("react.element")), - (V = D("react.portal")), - (L = D("react.fragment")), - (w = D("react.strict_mode")), - (C = D("react.profiler")), - (E = D("react.provider")), - (S = D("react.context")), - (A = D("react.forward_ref")), - (x = D("react.suspense")), - (k = D("react.suspense_list")), - (_ = D("react.memo")), - (O = D("react.lazy")), - (P = D("react.block")), - D("react.scope"), - (N = D("react.opaque.id")), - (T = D("react.debug_trace_mode")), - (j = D("react.offscreen")), - (R = D("react.legacy_hidden")); - } - var F, - I = "function" === typeof Symbol && Symbol.iterator; - function U(e) { - return null === e || "object" !== typeof e - ? null - : "function" === typeof (e = (I && e[I]) || e["@@iterator"]) - ? e - : null; - } - function B(e) { - if (void 0 === F) - try { - throw Error(); - } catch (n) { - var t = n.stack.trim().match(/\n( *(at )?)/); - F = (t && t[1]) || ""; - } - return "\n" + F + e; - } - var W = !1; - function $(e, t) { - if (!e || W) return ""; - W = !0; - var n = Error.prepareStackTrace; - Error.prepareStackTrace = void 0; - try { - if (t) - if ( - ((t = function () { - throw Error(); - }), - Object.defineProperty(t.prototype, "props", { - set: function () { - throw Error(); - }, - }), - "object" === typeof Reflect && Reflect.construct) - ) { - try { - Reflect.construct(t, []); - } catch (i) { - var c = i; - } - Reflect.construct(e, [], t); - } else { - try { - t.call(); - } catch (i) { - c = i; - } - e.call(t.prototype); - } - else { - try { - throw Error(); - } catch (i) { - c = i; - } - e(); - } - } catch (i) { - if (i && c && "string" === typeof i.stack) { - for ( - var r = i.stack.split("\n"), - a = c.stack.split("\n"), - o = r.length - 1, - l = a.length - 1; - 1 <= o && 0 <= l && r[o] !== a[l]; - - ) - l--; - for (; 1 <= o && 0 <= l; o--, l--) - if (r[o] !== a[l]) { - if (1 !== o || 1 !== l) - do { - if ((o--, 0 > --l || r[o] !== a[l])) - return "\n" + r[o].replace(" at new ", " at "); - } while (1 <= o && 0 <= l); - break; - } - } - } finally { - (W = !1), (Error.prepareStackTrace = n); - } - return (e = e ? e.displayName || e.name : "") ? B(e) : ""; - } - function K(e) { - switch (e.tag) { - case 5: - return B(e.type); - case 16: - return B("Lazy"); - case 13: - return B("Suspense"); - case 19: - return B("SuspenseList"); - case 0: - case 2: - case 15: - return (e = $(e.type, !1)); - case 11: - return (e = $(e.type.render, !1)); - case 22: - return (e = $(e.type._render, !1)); - case 1: - return (e = $(e.type, !0)); - default: - return ""; - } - } - function q(e) { - if (null == e) return null; - if ("function" === typeof e) return e.displayName || e.name || null; - if ("string" === typeof e) return e; - switch (e) { - case L: - return "Fragment"; - case V: - return "Portal"; - case C: - return "Profiler"; - case w: - return "StrictMode"; - case x: - return "Suspense"; - case k: - return "SuspenseList"; - } - if ("object" === typeof e) - switch (e.$$typeof) { - case S: - return (e.displayName || "Context") + ".Consumer"; - case E: - return (e._context.displayName || "Context") + ".Provider"; - case A: - var t = e.render; - return ( - (t = t.displayName || t.name || ""), - e.displayName || - ("" !== t ? "ForwardRef(" + t + ")" : "ForwardRef") - ); - case _: - return q(e.type); - case P: - return q(e._render); - case O: - (t = e._payload), (e = e._init); - try { - return q(e(t)); - } catch (n) {} - } - return null; - } - function G(e) { - switch (typeof e) { - case "boolean": - case "number": - case "object": - case "string": - case "undefined": - return e; - default: - return ""; - } - } - function Q(e) { - var t = e.type; - return ( - (e = e.nodeName) && - "input" === e.toLowerCase() && - ("checkbox" === t || "radio" === t) - ); - } - function Y(e) { - e._valueTracker || - (e._valueTracker = (function (e) { - var t = Q(e) ? "checked" : "value", - n = Object.getOwnPropertyDescriptor(e.constructor.prototype, t), - c = "" + e[t]; - if ( - !e.hasOwnProperty(t) && - "undefined" !== typeof n && - "function" === typeof n.get && - "function" === typeof n.set - ) { - var r = n.get, - a = n.set; - return ( - Object.defineProperty(e, t, { - configurable: !0, - get: function () { - return r.call(this); - }, - set: function (e) { - (c = "" + e), a.call(this, e); - }, - }), - Object.defineProperty(e, t, { enumerable: n.enumerable }), - { - getValue: function () { - return c; - }, - setValue: function (e) { - c = "" + e; - }, - stopTracking: function () { - (e._valueTracker = null), delete e[t]; - }, - } - ); - } - })(e)); - } - function X(e) { - if (!e) return !1; - var t = e._valueTracker; - if (!t) return !0; - var n = t.getValue(), - c = ""; - return ( - e && (c = Q(e) ? (e.checked ? "true" : "false") : e.value), - (e = c) !== n && (t.setValue(e), !0) - ); - } - function J(e) { - if ( - "undefined" === - typeof (e = - e || ("undefined" !== typeof document ? document : void 0)) - ) - return null; - try { - return e.activeElement || e.body; - } catch (t) { - return e.body; - } - } - function Z(e, t) { - var n = t.checked; - return r({}, t, { - defaultChecked: void 0, - defaultValue: void 0, - value: void 0, - checked: null != n ? n : e._wrapperState.initialChecked, - }); - } - function ee(e, t) { - var n = null == t.defaultValue ? "" : t.defaultValue, - c = null != t.checked ? t.checked : t.defaultChecked; - (n = G(null != t.value ? t.value : n)), - (e._wrapperState = { - initialChecked: c, - initialValue: n, - controlled: - "checkbox" === t.type || "radio" === t.type - ? null != t.checked - : null != t.value, - }); - } - function te(e, t) { - null != (t = t.checked) && M(e, "checked", t, !1); - } - function ne(e, t) { - te(e, t); - var n = G(t.value), - c = t.type; - if (null != n) - "number" === c - ? ((0 === n && "" === e.value) || e.value != n) && - (e.value = "" + n) - : e.value !== "" + n && (e.value = "" + n); - else if ("submit" === c || "reset" === c) - return void e.removeAttribute("value"); - t.hasOwnProperty("value") - ? re(e, t.type, n) - : t.hasOwnProperty("defaultValue") && - re(e, t.type, G(t.defaultValue)), - null == t.checked && - null != t.defaultChecked && - (e.defaultChecked = !!t.defaultChecked); - } - function ce(e, t, n) { - if (t.hasOwnProperty("value") || t.hasOwnProperty("defaultValue")) { - var c = t.type; - if ( - !( - ("submit" !== c && "reset" !== c) || - (void 0 !== t.value && null !== t.value) - ) - ) - return; - (t = "" + e._wrapperState.initialValue), - n || t === e.value || (e.value = t), - (e.defaultValue = t); - } - "" !== (n = e.name) && (e.name = ""), - (e.defaultChecked = !!e._wrapperState.initialChecked), - "" !== n && (e.name = n); - } - function re(e, t, n) { - ("number" === t && J(e.ownerDocument) === e) || - (null == n - ? (e.defaultValue = "" + e._wrapperState.initialValue) - : e.defaultValue !== "" + n && (e.defaultValue = "" + n)); - } - function ae(e, t) { - return ( - (e = r({ children: void 0 }, t)), - (t = (function (e) { - var t = ""; - return ( - c.Children.forEach(e, function (e) { - null != e && (t += e); - }), - t - ); - })(t.children)) && (e.children = t), - e - ); - } - function oe(e, t, n, c) { - if (((e = e.options), t)) { - t = {}; - for (var r = 0; r < n.length; r++) t["$" + n[r]] = !0; - for (n = 0; n < e.length; n++) - (r = t.hasOwnProperty("$" + e[n].value)), - e[n].selected !== r && (e[n].selected = r), - r && c && (e[n].defaultSelected = !0); - } else { - for (n = "" + G(n), t = null, r = 0; r < e.length; r++) { - if (e[r].value === n) - return ( - (e[r].selected = !0), void (c && (e[r].defaultSelected = !0)) - ); - null !== t || e[r].disabled || (t = e[r]); - } - null !== t && (t.selected = !0); - } - } - function le(e, t) { - if (null != t.dangerouslySetInnerHTML) throw Error(o(91)); - return r({}, t, { - value: void 0, - defaultValue: void 0, - children: "" + e._wrapperState.initialValue, - }); - } - function ie(e, t) { - var n = t.value; - if (null == n) { - if (((n = t.children), (t = t.defaultValue), null != n)) { - if (null != t) throw Error(o(92)); - if (Array.isArray(n)) { - if (!(1 >= n.length)) throw Error(o(93)); - n = n[0]; - } - t = n; - } - null == t && (t = ""), (n = t); - } - e._wrapperState = { initialValue: G(n) }; - } - function se(e, t) { - var n = G(t.value), - c = G(t.defaultValue); - null != n && - ((n = "" + n) !== e.value && (e.value = n), - null == t.defaultValue && - e.defaultValue !== n && - (e.defaultValue = n)), - null != c && (e.defaultValue = "" + c); - } - function ue(e) { - var t = e.textContent; - t === e._wrapperState.initialValue && - "" !== t && - null !== t && - (e.value = t); - } - var he = "http://www.w3.org/1999/xhtml", - fe = "http://www.w3.org/2000/svg"; - function pe(e) { - switch (e) { - case "svg": - return "http://www.w3.org/2000/svg"; - case "math": - return "http://www.w3.org/1998/Math/MathML"; - default: - return "http://www.w3.org/1999/xhtml"; - } - } - function ve(e, t) { - return null == e || "http://www.w3.org/1999/xhtml" === e - ? pe(t) - : "http://www.w3.org/2000/svg" === e && "foreignObject" === t - ? "http://www.w3.org/1999/xhtml" - : e; - } - var de, - me, - ze = - ((me = function (e, t) { - if (e.namespaceURI !== fe || "innerHTML" in e) e.innerHTML = t; - else { - for ( - (de = de || document.createElement("div")).innerHTML = - "" + t.valueOf().toString() + "", - t = de.firstChild; - e.firstChild; - - ) - e.removeChild(e.firstChild); - for (; t.firstChild; ) e.appendChild(t.firstChild); - } - }), - "undefined" !== typeof MSApp && MSApp.execUnsafeLocalFunction - ? function (e, t, n, c) { - MSApp.execUnsafeLocalFunction(function () { - return me(e, t); - }); - } - : me); - function ye(e, t) { - if (t) { - var n = e.firstChild; - if (n && n === e.lastChild && 3 === n.nodeType) - return void (n.nodeValue = t); - } - e.textContent = t; - } - var ge = { - animationIterationCount: !0, - borderImageOutset: !0, - borderImageSlice: !0, - borderImageWidth: !0, - boxFlex: !0, - boxFlexGroup: !0, - boxOrdinalGroup: !0, - columnCount: !0, - columns: !0, - flex: !0, - flexGrow: !0, - flexPositive: !0, - flexShrink: !0, - flexNegative: !0, - flexOrder: !0, - gridArea: !0, - gridRow: !0, - gridRowEnd: !0, - gridRowSpan: !0, - gridRowStart: !0, - gridColumn: !0, - gridColumnEnd: !0, - gridColumnSpan: !0, - gridColumnStart: !0, - fontWeight: !0, - lineClamp: !0, - lineHeight: !0, - opacity: !0, - order: !0, - orphans: !0, - tabSize: !0, - widows: !0, - zIndex: !0, - zoom: !0, - fillOpacity: !0, - floodOpacity: !0, - stopOpacity: !0, - strokeDasharray: !0, - strokeDashoffset: !0, - strokeMiterlimit: !0, - strokeOpacity: !0, - strokeWidth: !0, - }, - Me = ["Webkit", "ms", "Moz", "O"]; - function He(e, t, n) { - return null == t || "boolean" === typeof t || "" === t - ? "" - : n || - "number" !== typeof t || - 0 === t || - (ge.hasOwnProperty(e) && ge[e]) - ? ("" + t).trim() - : t + "px"; - } - function be(e, t) { - for (var n in ((e = e.style), t)) - if (t.hasOwnProperty(n)) { - var c = 0 === n.indexOf("--"), - r = He(n, t[n], c); - "float" === n && (n = "cssFloat"), - c ? e.setProperty(n, r) : (e[n] = r); - } - } - Object.keys(ge).forEach(function (e) { - Me.forEach(function (t) { - (t = t + e.charAt(0).toUpperCase() + e.substring(1)), - (ge[t] = ge[e]); - }); - }); - var Ve = r( - { menuitem: !0 }, - { - area: !0, - base: !0, - br: !0, - col: !0, - embed: !0, - hr: !0, - img: !0, - input: !0, - keygen: !0, - link: !0, - meta: !0, - param: !0, - source: !0, - track: !0, - wbr: !0, - } - ); - function Le(e, t) { - if (t) { - if ( - Ve[e] && - (null != t.children || null != t.dangerouslySetInnerHTML) - ) - throw Error(o(137, e)); - if (null != t.dangerouslySetInnerHTML) { - if (null != t.children) throw Error(o(60)); - if ( - "object" !== typeof t.dangerouslySetInnerHTML || - !("__html" in t.dangerouslySetInnerHTML) - ) - throw Error(o(61)); - } - if (null != t.style && "object" !== typeof t.style) - throw Error(o(62)); - } - } - function we(e, t) { - if (-1 === e.indexOf("-")) return "string" === typeof t.is; - switch (e) { - case "annotation-xml": - case "color-profile": - case "font-face": - case "font-face-src": - case "font-face-uri": - case "font-face-format": - case "font-face-name": - case "missing-glyph": - return !1; - default: - return !0; - } - } - function Ce(e) { - return ( - (e = e.target || e.srcElement || window).correspondingUseElement && - (e = e.correspondingUseElement), - 3 === e.nodeType ? e.parentNode : e - ); - } - var Ee = null, - Se = null, - Ae = null; - function xe(e) { - if ((e = cr(e))) { - if ("function" !== typeof Ee) throw Error(o(280)); - var t = e.stateNode; - t && ((t = ar(t)), Ee(e.stateNode, e.type, t)); - } - } - function ke(e) { - Se ? (Ae ? Ae.push(e) : (Ae = [e])) : (Se = e); - } - function _e() { - if (Se) { - var e = Se, - t = Ae; - if (((Ae = Se = null), xe(e), t)) - for (e = 0; e < t.length; e++) xe(t[e]); - } - } - function Oe(e, t) { - return e(t); - } - function Pe(e, t, n, c, r) { - return e(t, n, c, r); - } - function Ne() {} - var Te = Oe, - je = !1, - Re = !1; - function De() { - (null === Se && null === Ae) || (Ne(), _e()); - } - function Fe(e, t) { - var n = e.stateNode; - if (null === n) return null; - var c = ar(n); - if (null === c) return null; - n = c[t]; - e: switch (t) { - case "onClick": - case "onClickCapture": - case "onDoubleClick": - case "onDoubleClickCapture": - case "onMouseDown": - case "onMouseDownCapture": - case "onMouseMove": - case "onMouseMoveCapture": - case "onMouseUp": - case "onMouseUpCapture": - case "onMouseEnter": - (c = !c.disabled) || - (c = !( - "button" === (e = e.type) || - "input" === e || - "select" === e || - "textarea" === e - )), - (e = !c); - break e; - default: - e = !1; - } - if (e) return null; - if (n && "function" !== typeof n) throw Error(o(231, t, typeof n)); - return n; - } - var Ie = !1; - if (h) - try { - var Ue = {}; - Object.defineProperty(Ue, "passive", { - get: function () { - Ie = !0; - }, - }), - window.addEventListener("test", Ue, Ue), - window.removeEventListener("test", Ue, Ue); - } catch (me) { - Ie = !1; - } - function Be(e, t, n, c, r, a, o, l, i) { - var s = Array.prototype.slice.call(arguments, 3); - try { - t.apply(n, s); - } catch (u) { - this.onError(u); - } - } - var We = !1, - $e = null, - Ke = !1, - qe = null, - Ge = { - onError: function (e) { - (We = !0), ($e = e); - }, - }; - function Qe(e, t, n, c, r, a, o, l, i) { - (We = !1), ($e = null), Be.apply(Ge, arguments); - } - function Ye(e) { - var t = e, - n = e; - if (e.alternate) for (; t.return; ) t = t.return; - else { - e = t; - do { - 0 !== (1026 & (t = e).flags) && (n = t.return), (e = t.return); - } while (e); - } - return 3 === t.tag ? n : null; - } - function Xe(e) { - if (13 === e.tag) { - var t = e.memoizedState; - if ( - (null === t && - null !== (e = e.alternate) && - (t = e.memoizedState), - null !== t) - ) - return t.dehydrated; - } - return null; - } - function Je(e) { - if (Ye(e) !== e) throw Error(o(188)); - } - function Ze(e) { - if ( - ((e = (function (e) { - var t = e.alternate; - if (!t) { - if (null === (t = Ye(e))) throw Error(o(188)); - return t !== e ? null : e; - } - for (var n = e, c = t; ; ) { - var r = n.return; - if (null === r) break; - var a = r.alternate; - if (null === a) { - if (null !== (c = r.return)) { - n = c; - continue; - } - break; - } - if (r.child === a.child) { - for (a = r.child; a; ) { - if (a === n) return Je(r), e; - if (a === c) return Je(r), t; - a = a.sibling; - } - throw Error(o(188)); - } - if (n.return !== c.return) (n = r), (c = a); - else { - for (var l = !1, i = r.child; i; ) { - if (i === n) { - (l = !0), (n = r), (c = a); - break; - } - if (i === c) { - (l = !0), (c = r), (n = a); - break; - } - i = i.sibling; - } - if (!l) { - for (i = a.child; i; ) { - if (i === n) { - (l = !0), (n = a), (c = r); - break; - } - if (i === c) { - (l = !0), (c = a), (n = r); - break; - } - i = i.sibling; - } - if (!l) throw Error(o(189)); - } - } - if (n.alternate !== c) throw Error(o(190)); - } - if (3 !== n.tag) throw Error(o(188)); - return n.stateNode.current === n ? e : t; - })(e)), - !e) - ) - return null; - for (var t = e; ; ) { - if (5 === t.tag || 6 === t.tag) return t; - if (t.child) (t.child.return = t), (t = t.child); - else { - if (t === e) break; - for (; !t.sibling; ) { - if (!t.return || t.return === e) return null; - t = t.return; - } - (t.sibling.return = t.return), (t = t.sibling); - } - } - return null; - } - function et(e, t) { - for (var n = e.alternate; null !== t; ) { - if (t === e || t === n) return !0; - t = t.return; - } - return !1; - } - var tt, - nt, - ct, - rt, - at = !1, - ot = [], - lt = null, - it = null, - st = null, - ut = new Map(), - ht = new Map(), - ft = [], - pt = "mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split( - " " - ); - function vt(e, t, n, c, r) { - return { - blockedOn: e, - domEventName: t, - eventSystemFlags: 16 | n, - nativeEvent: r, - targetContainers: [c], - }; - } - function dt(e, t) { - switch (e) { - case "focusin": - case "focusout": - lt = null; - break; - case "dragenter": - case "dragleave": - it = null; - break; - case "mouseover": - case "mouseout": - st = null; - break; - case "pointerover": - case "pointerout": - ut.delete(t.pointerId); - break; - case "gotpointercapture": - case "lostpointercapture": - ht.delete(t.pointerId); - } - } - function mt(e, t, n, c, r, a) { - return null === e || e.nativeEvent !== a - ? ((e = vt(t, n, c, r, a)), - null !== t && null !== (t = cr(t)) && nt(t), - e) - : ((e.eventSystemFlags |= c), - (t = e.targetContainers), - null !== r && -1 === t.indexOf(r) && t.push(r), - e); - } - function zt(e) { - var t = nr(e.target); - if (null !== t) { - var n = Ye(t); - if (null !== n) - if (13 === (t = n.tag)) { - if (null !== (t = Xe(n))) - return ( - (e.blockedOn = t), - void rt(e.lanePriority, function () { - a.unstable_runWithPriority(e.priority, function () { - ct(n); - }); - }) - ); - } else if (3 === t && n.stateNode.hydrate) - return void (e.blockedOn = - 3 === n.tag ? n.stateNode.containerInfo : null); - } - e.blockedOn = null; - } - function yt(e) { - if (null !== e.blockedOn) return !1; - for (var t = e.targetContainers; 0 < t.length; ) { - var n = Zt(e.domEventName, e.eventSystemFlags, t[0], e.nativeEvent); - if (null !== n) - return null !== (t = cr(n)) && nt(t), (e.blockedOn = n), !1; - t.shift(); - } - return !0; - } - function gt(e, t, n) { - yt(e) && n.delete(t); - } - function Mt() { - for (at = !1; 0 < ot.length; ) { - var e = ot[0]; - if (null !== e.blockedOn) { - null !== (e = cr(e.blockedOn)) && tt(e); - break; - } - for (var t = e.targetContainers; 0 < t.length; ) { - var n = Zt( - e.domEventName, - e.eventSystemFlags, - t[0], - e.nativeEvent - ); - if (null !== n) { - e.blockedOn = n; - break; - } - t.shift(); - } - null === e.blockedOn && ot.shift(); - } - null !== lt && yt(lt) && (lt = null), - null !== it && yt(it) && (it = null), - null !== st && yt(st) && (st = null), - ut.forEach(gt), - ht.forEach(gt); - } - function Ht(e, t) { - e.blockedOn === t && - ((e.blockedOn = null), - at || - ((at = !0), - a.unstable_scheduleCallback(a.unstable_NormalPriority, Mt))); - } - function bt(e) { - function t(t) { - return Ht(t, e); - } - if (0 < ot.length) { - Ht(ot[0], e); - for (var n = 1; n < ot.length; n++) { - var c = ot[n]; - c.blockedOn === e && (c.blockedOn = null); - } - } - for ( - null !== lt && Ht(lt, e), - null !== it && Ht(it, e), - null !== st && Ht(st, e), - ut.forEach(t), - ht.forEach(t), - n = 0; - n < ft.length; - n++ - ) - (c = ft[n]).blockedOn === e && (c.blockedOn = null); - for (; 0 < ft.length && null === (n = ft[0]).blockedOn; ) - zt(n), null === n.blockedOn && ft.shift(); - } - function Vt(e, t) { - var n = {}; - return ( - (n[e.toLowerCase()] = t.toLowerCase()), - (n["Webkit" + e] = "webkit" + t), - (n["Moz" + e] = "moz" + t), - n - ); - } - var Lt = { - animationend: Vt("Animation", "AnimationEnd"), - animationiteration: Vt("Animation", "AnimationIteration"), - animationstart: Vt("Animation", "AnimationStart"), - transitionend: Vt("Transition", "TransitionEnd"), - }, - wt = {}, - Ct = {}; - function Et(e) { - if (wt[e]) return wt[e]; - if (!Lt[e]) return e; - var t, - n = Lt[e]; - for (t in n) - if (n.hasOwnProperty(t) && t in Ct) return (wt[e] = n[t]); - return e; - } - h && - ((Ct = document.createElement("div").style), - "AnimationEvent" in window || - (delete Lt.animationend.animation, - delete Lt.animationiteration.animation, - delete Lt.animationstart.animation), - "TransitionEvent" in window || delete Lt.transitionend.transition); - var St = Et("animationend"), - At = Et("animationiteration"), - xt = Et("animationstart"), - kt = Et("transitionend"), - _t = new Map(), - Ot = new Map(), - Pt = [ - "abort", - "abort", - St, - "animationEnd", - At, - "animationIteration", - xt, - "animationStart", - "canplay", - "canPlay", - "canplaythrough", - "canPlayThrough", - "durationchange", - "durationChange", - "emptied", - "emptied", - "encrypted", - "encrypted", - "ended", - "ended", - "error", - "error", - "gotpointercapture", - "gotPointerCapture", - "load", - "load", - "loadeddata", - "loadedData", - "loadedmetadata", - "loadedMetadata", - "loadstart", - "loadStart", - "lostpointercapture", - "lostPointerCapture", - "playing", - "playing", - "progress", - "progress", - "seeking", - "seeking", - "stalled", - "stalled", - "suspend", - "suspend", - "timeupdate", - "timeUpdate", - kt, - "transitionEnd", - "waiting", - "waiting", - ]; - function Nt(e, t) { - for (var n = 0; n < e.length; n += 2) { - var c = e[n], - r = e[n + 1]; - (r = "on" + (r[0].toUpperCase() + r.slice(1))), - Ot.set(c, t), - _t.set(c, r), - s(r, [c]); - } - } - (0, a.unstable_now)(); - var Tt = 8; - function jt(e) { - if (0 !== (1 & e)) return (Tt = 15), 1; - if (0 !== (2 & e)) return (Tt = 14), 2; - if (0 !== (4 & e)) return (Tt = 13), 4; - var t = 24 & e; - return 0 !== t - ? ((Tt = 12), t) - : 0 !== (32 & e) - ? ((Tt = 11), 32) - : 0 !== (t = 192 & e) - ? ((Tt = 10), t) - : 0 !== (256 & e) - ? ((Tt = 9), 256) - : 0 !== (t = 3584 & e) - ? ((Tt = 8), t) - : 0 !== (4096 & e) - ? ((Tt = 7), 4096) - : 0 !== (t = 4186112 & e) - ? ((Tt = 6), t) - : 0 !== (t = 62914560 & e) - ? ((Tt = 5), t) - : 67108864 & e - ? ((Tt = 4), 67108864) - : 0 !== (134217728 & e) - ? ((Tt = 3), 134217728) - : 0 !== (t = 805306368 & e) - ? ((Tt = 2), t) - : 0 !== (1073741824 & e) - ? ((Tt = 1), 1073741824) - : ((Tt = 8), e); - } - function Rt(e, t) { - var n = e.pendingLanes; - if (0 === n) return (Tt = 0); - var c = 0, - r = 0, - a = e.expiredLanes, - o = e.suspendedLanes, - l = e.pingedLanes; - if (0 !== a) (c = a), (r = Tt = 15); - else if (0 !== (a = 134217727 & n)) { - var i = a & ~o; - 0 !== i - ? ((c = jt(i)), (r = Tt)) - : 0 !== (l &= a) && ((c = jt(l)), (r = Tt)); - } else - 0 !== (a = n & ~o) - ? ((c = jt(a)), (r = Tt)) - : 0 !== l && ((c = jt(l)), (r = Tt)); - if (0 === c) return 0; - if ( - ((c = n & (((0 > (c = 31 - Wt(c)) ? 0 : 1 << c) << 1) - 1)), - 0 !== t && t !== c && 0 === (t & o)) - ) { - if ((jt(t), r <= Tt)) return t; - Tt = r; - } - if (0 !== (t = e.entangledLanes)) - for (e = e.entanglements, t &= c; 0 < t; ) - (r = 1 << (n = 31 - Wt(t))), (c |= e[n]), (t &= ~r); - return c; - } - function Dt(e) { - return 0 !== (e = -1073741825 & e.pendingLanes) - ? e - : 1073741824 & e - ? 1073741824 - : 0; - } - function Ft(e, t) { - switch (e) { - case 15: - return 1; - case 14: - return 2; - case 12: - return 0 === (e = It(24 & ~t)) ? Ft(10, t) : e; - case 10: - return 0 === (e = It(192 & ~t)) ? Ft(8, t) : e; - case 8: - return ( - 0 === (e = It(3584 & ~t)) && - 0 === (e = It(4186112 & ~t)) && - (e = 512), - e - ); - case 2: - return 0 === (t = It(805306368 & ~t)) && (t = 268435456), t; - } - throw Error(o(358, e)); - } - function It(e) { - return e & -e; - } - function Ut(e) { - for (var t = [], n = 0; 31 > n; n++) t.push(e); - return t; - } - function Bt(e, t, n) { - e.pendingLanes |= t; - var c = t - 1; - (e.suspendedLanes &= c), - (e.pingedLanes &= c), - ((e = e.eventTimes)[(t = 31 - Wt(t))] = n); - } - var Wt = Math.clz32 - ? Math.clz32 - : function (e) { - return 0 === e ? 32 : (31 - (($t(e) / Kt) | 0)) | 0; - }, - $t = Math.log, - Kt = Math.LN2; - var qt = a.unstable_UserBlockingPriority, - Gt = a.unstable_runWithPriority, - Qt = !0; - function Yt(e, t, n, c) { - je || Ne(); - var r = Jt, - a = je; - je = !0; - try { - Pe(r, e, t, n, c); - } finally { - (je = a) || De(); - } - } - function Xt(e, t, n, c) { - Gt(qt, Jt.bind(null, e, t, n, c)); - } - function Jt(e, t, n, c) { - var r; - if (Qt) - if ((r = 0 === (4 & t)) && 0 < ot.length && -1 < pt.indexOf(e)) - (e = vt(null, e, t, n, c)), ot.push(e); - else { - var a = Zt(e, t, n, c); - if (null === a) r && dt(e, c); - else { - if (r) { - if (-1 < pt.indexOf(e)) - return (e = vt(a, e, t, n, c)), void ot.push(e); - if ( - (function (e, t, n, c, r) { - switch (t) { - case "focusin": - return (lt = mt(lt, e, t, n, c, r)), !0; - case "dragenter": - return (it = mt(it, e, t, n, c, r)), !0; - case "mouseover": - return (st = mt(st, e, t, n, c, r)), !0; - case "pointerover": - var a = r.pointerId; - return ( - ut.set(a, mt(ut.get(a) || null, e, t, n, c, r)), !0 - ); - case "gotpointercapture": - return ( - (a = r.pointerId), - ht.set(a, mt(ht.get(a) || null, e, t, n, c, r)), - !0 - ); - } - return !1; - })(a, e, t, n, c) - ) - return; - dt(e, c); - } - Nc(e, t, c, null, n); - } - } - } - function Zt(e, t, n, c) { - var r = Ce(c); - if (null !== (r = nr(r))) { - var a = Ye(r); - if (null === a) r = null; - else { - var o = a.tag; - if (13 === o) { - if (null !== (r = Xe(a))) return r; - r = null; - } else if (3 === o) { - if (a.stateNode.hydrate) - return 3 === a.tag ? a.stateNode.containerInfo : null; - r = null; - } else a !== r && (r = null); - } - } - return Nc(e, t, c, r, n), null; - } - var en = null, - tn = null, - nn = null; - function cn() { - if (nn) return nn; - var e, - t, - n = tn, - c = n.length, - r = "value" in en ? en.value : en.textContent, - a = r.length; - for (e = 0; e < c && n[e] === r[e]; e++); - var o = c - e; - for (t = 1; t <= o && n[c - t] === r[a - t]; t++); - return (nn = r.slice(e, 1 < t ? 1 - t : void 0)); - } - function rn(e) { - var t = e.keyCode; - return ( - "charCode" in e - ? 0 === (e = e.charCode) && 13 === t && (e = 13) - : (e = t), - 10 === e && (e = 13), - 32 <= e || 13 === e ? e : 0 - ); - } - function an() { - return !0; - } - function on() { - return !1; - } - function ln(e) { - function t(t, n, c, r, a) { - for (var o in ((this._reactName = t), - (this._targetInst = c), - (this.type = n), - (this.nativeEvent = r), - (this.target = a), - (this.currentTarget = null), - e)) - e.hasOwnProperty(o) && ((t = e[o]), (this[o] = t ? t(r) : r[o])); - return ( - (this.isDefaultPrevented = ( - null != r.defaultPrevented - ? r.defaultPrevented - : !1 === r.returnValue - ) - ? an - : on), - (this.isPropagationStopped = on), - this - ); - } - return ( - r(t.prototype, { - preventDefault: function () { - this.defaultPrevented = !0; - var e = this.nativeEvent; - e && - (e.preventDefault - ? e.preventDefault() - : "unknown" !== typeof e.returnValue && - (e.returnValue = !1), - (this.isDefaultPrevented = an)); - }, - stopPropagation: function () { - var e = this.nativeEvent; - e && - (e.stopPropagation - ? e.stopPropagation() - : "unknown" !== typeof e.cancelBubble && - (e.cancelBubble = !0), - (this.isPropagationStopped = an)); - }, - persist: function () {}, - isPersistent: an, - }), - t - ); - } - var sn, - un, - hn, - fn = { - eventPhase: 0, - bubbles: 0, - cancelable: 0, - timeStamp: function (e) { - return e.timeStamp || Date.now(); - }, - defaultPrevented: 0, - isTrusted: 0, - }, - pn = ln(fn), - vn = r({}, fn, { view: 0, detail: 0 }), - dn = ln(vn), - mn = r({}, vn, { - screenX: 0, - screenY: 0, - clientX: 0, - clientY: 0, - pageX: 0, - pageY: 0, - ctrlKey: 0, - shiftKey: 0, - altKey: 0, - metaKey: 0, - getModifierState: Sn, - button: 0, - buttons: 0, - relatedTarget: function (e) { - return void 0 === e.relatedTarget - ? e.fromElement === e.srcElement - ? e.toElement - : e.fromElement - : e.relatedTarget; - }, - movementX: function (e) { - return "movementX" in e - ? e.movementX - : (e !== hn && - (hn && "mousemove" === e.type - ? ((sn = e.screenX - hn.screenX), - (un = e.screenY - hn.screenY)) - : (un = sn = 0), - (hn = e)), - sn); - }, - movementY: function (e) { - return "movementY" in e ? e.movementY : un; - }, - }), - zn = ln(mn), - yn = ln(r({}, mn, { dataTransfer: 0 })), - gn = ln(r({}, vn, { relatedTarget: 0 })), - Mn = ln( - r({}, fn, { animationName: 0, elapsedTime: 0, pseudoElement: 0 }) - ), - Hn = r({}, fn, { - clipboardData: function (e) { - return "clipboardData" in e - ? e.clipboardData - : window.clipboardData; - }, - }), - bn = ln(Hn), - Vn = ln(r({}, fn, { data: 0 })), - Ln = { - Esc: "Escape", - Spacebar: " ", - Left: "ArrowLeft", - Up: "ArrowUp", - Right: "ArrowRight", - Down: "ArrowDown", - Del: "Delete", - Win: "OS", - Menu: "ContextMenu", - Apps: "ContextMenu", - Scroll: "ScrollLock", - MozPrintableKey: "Unidentified", - }, - wn = { - 8: "Backspace", - 9: "Tab", - 12: "Clear", - 13: "Enter", - 16: "Shift", - 17: "Control", - 18: "Alt", - 19: "Pause", - 20: "CapsLock", - 27: "Escape", - 32: " ", - 33: "PageUp", - 34: "PageDown", - 35: "End", - 36: "Home", - 37: "ArrowLeft", - 38: "ArrowUp", - 39: "ArrowRight", - 40: "ArrowDown", - 45: "Insert", - 46: "Delete", - 112: "F1", - 113: "F2", - 114: "F3", - 115: "F4", - 116: "F5", - 117: "F6", - 118: "F7", - 119: "F8", - 120: "F9", - 121: "F10", - 122: "F11", - 123: "F12", - 144: "NumLock", - 145: "ScrollLock", - 224: "Meta", - }, - Cn = { - Alt: "altKey", - Control: "ctrlKey", - Meta: "metaKey", - Shift: "shiftKey", - }; - function En(e) { - var t = this.nativeEvent; - return t.getModifierState - ? t.getModifierState(e) - : !!(e = Cn[e]) && !!t[e]; - } - function Sn() { - return En; - } - var An = r({}, vn, { - key: function (e) { - if (e.key) { - var t = Ln[e.key] || e.key; - if ("Unidentified" !== t) return t; - } - return "keypress" === e.type - ? 13 === (e = rn(e)) - ? "Enter" - : String.fromCharCode(e) - : "keydown" === e.type || "keyup" === e.type - ? wn[e.keyCode] || "Unidentified" - : ""; - }, - code: 0, - location: 0, - ctrlKey: 0, - shiftKey: 0, - altKey: 0, - metaKey: 0, - repeat: 0, - locale: 0, - getModifierState: Sn, - charCode: function (e) { - return "keypress" === e.type ? rn(e) : 0; - }, - keyCode: function (e) { - return "keydown" === e.type || "keyup" === e.type ? e.keyCode : 0; - }, - which: function (e) { - return "keypress" === e.type - ? rn(e) - : "keydown" === e.type || "keyup" === e.type - ? e.keyCode - : 0; - }, - }), - xn = ln(An), - kn = ln( - r({}, mn, { - pointerId: 0, - width: 0, - height: 0, - pressure: 0, - tangentialPressure: 0, - tiltX: 0, - tiltY: 0, - twist: 0, - pointerType: 0, - isPrimary: 0, - }) - ), - _n = ln( - r({}, vn, { - touches: 0, - targetTouches: 0, - changedTouches: 0, - altKey: 0, - metaKey: 0, - ctrlKey: 0, - shiftKey: 0, - getModifierState: Sn, - }) - ), - On = ln( - r({}, fn, { propertyName: 0, elapsedTime: 0, pseudoElement: 0 }) - ), - Pn = r({}, mn, { - deltaX: function (e) { - return "deltaX" in e - ? e.deltaX - : "wheelDeltaX" in e - ? -e.wheelDeltaX - : 0; - }, - deltaY: function (e) { - return "deltaY" in e - ? e.deltaY - : "wheelDeltaY" in e - ? -e.wheelDeltaY - : "wheelDelta" in e - ? -e.wheelDelta - : 0; - }, - deltaZ: 0, - deltaMode: 0, - }), - Nn = ln(Pn), - Tn = [9, 13, 27, 32], - jn = h && "CompositionEvent" in window, - Rn = null; - h && "documentMode" in document && (Rn = document.documentMode); - var Dn = h && "TextEvent" in window && !Rn, - Fn = h && (!jn || (Rn && 8 < Rn && 11 >= Rn)), - In = String.fromCharCode(32), - Un = !1; - function Bn(e, t) { - switch (e) { - case "keyup": - return -1 !== Tn.indexOf(t.keyCode); - case "keydown": - return 229 !== t.keyCode; - case "keypress": - case "mousedown": - case "focusout": - return !0; - default: - return !1; - } - } - function Wn(e) { - return "object" === typeof (e = e.detail) && "data" in e - ? e.data - : null; - } - var $n = !1; - var Kn = { - color: !0, - date: !0, - datetime: !0, - "datetime-local": !0, - email: !0, - month: !0, - number: !0, - password: !0, - range: !0, - search: !0, - tel: !0, - text: !0, - time: !0, - url: !0, - week: !0, - }; - function qn(e) { - var t = e && e.nodeName && e.nodeName.toLowerCase(); - return "input" === t ? !!Kn[e.type] : "textarea" === t; - } - function Gn(e, t, n, c) { - ke(c), - 0 < (t = jc(t, "onChange")).length && - ((n = new pn("onChange", "change", null, n, c)), - e.push({ event: n, listeners: t })); - } - var Qn = null, - Yn = null; - function Xn(e) { - Ac(e, 0); - } - function Jn(e) { - if (X(rr(e))) return e; - } - function Zn(e, t) { - if ("change" === e) return t; - } - var ec = !1; - if (h) { - var tc; - if (h) { - var nc = "oninput" in document; - if (!nc) { - var cc = document.createElement("div"); - cc.setAttribute("oninput", "return;"), - (nc = "function" === typeof cc.oninput); - } - tc = nc; - } else tc = !1; - ec = tc && (!document.documentMode || 9 < document.documentMode); - } - function rc() { - Qn && (Qn.detachEvent("onpropertychange", ac), (Yn = Qn = null)); - } - function ac(e) { - if ("value" === e.propertyName && Jn(Yn)) { - var t = []; - if ((Gn(t, Yn, e, Ce(e)), (e = Xn), je)) e(t); - else { - je = !0; - try { - Oe(e, t); - } finally { - (je = !1), De(); - } - } - } - } - function oc(e, t, n) { - "focusin" === e - ? (rc(), (Yn = n), (Qn = t).attachEvent("onpropertychange", ac)) - : "focusout" === e && rc(); - } - function lc(e) { - if ("selectionchange" === e || "keyup" === e || "keydown" === e) - return Jn(Yn); - } - function ic(e, t) { - if ("click" === e) return Jn(t); - } - function sc(e, t) { - if ("input" === e || "change" === e) return Jn(t); - } - var uc = - "function" === typeof Object.is - ? Object.is - : function (e, t) { - return ( - (e === t && (0 !== e || 1 / e === 1 / t)) || - (e !== e && t !== t) - ); - }, - hc = Object.prototype.hasOwnProperty; - function fc(e, t) { - if (uc(e, t)) return !0; - if ( - "object" !== typeof e || - null === e || - "object" !== typeof t || - null === t - ) - return !1; - var n = Object.keys(e), - c = Object.keys(t); - if (n.length !== c.length) return !1; - for (c = 0; c < n.length; c++) - if (!hc.call(t, n[c]) || !uc(e[n[c]], t[n[c]])) return !1; - return !0; - } - function pc(e) { - for (; e && e.firstChild; ) e = e.firstChild; - return e; - } - function vc(e, t) { - var n, - c = pc(e); - for (e = 0; c; ) { - if (3 === c.nodeType) { - if (((n = e + c.textContent.length), e <= t && n >= t)) - return { node: c, offset: t - e }; - e = n; - } - e: { - for (; c; ) { - if (c.nextSibling) { - c = c.nextSibling; - break e; - } - c = c.parentNode; - } - c = void 0; - } - c = pc(c); - } - } - function dc(e, t) { - return ( - !(!e || !t) && - (e === t || - ((!e || 3 !== e.nodeType) && - (t && 3 === t.nodeType - ? dc(e, t.parentNode) - : "contains" in e - ? e.contains(t) - : !!e.compareDocumentPosition && - !!(16 & e.compareDocumentPosition(t))))) - ); - } - function mc() { - for (var e = window, t = J(); t instanceof e.HTMLIFrameElement; ) { - try { - var n = "string" === typeof t.contentWindow.location.href; - } catch (c) { - n = !1; - } - if (!n) break; - t = J((e = t.contentWindow).document); - } - return t; - } - function zc(e) { - var t = e && e.nodeName && e.nodeName.toLowerCase(); - return ( - t && - (("input" === t && - ("text" === e.type || - "search" === e.type || - "tel" === e.type || - "url" === e.type || - "password" === e.type)) || - "textarea" === t || - "true" === e.contentEditable) - ); - } - var yc = h && "documentMode" in document && 11 >= document.documentMode, - gc = null, - Mc = null, - Hc = null, - bc = !1; - function Vc(e, t, n) { - var c = - n.window === n - ? n.document - : 9 === n.nodeType - ? n - : n.ownerDocument; - bc || - null == gc || - gc !== J(c) || - ("selectionStart" in (c = gc) && zc(c) - ? (c = { start: c.selectionStart, end: c.selectionEnd }) - : (c = { - anchorNode: (c = ( - (c.ownerDocument && c.ownerDocument.defaultView) || - window - ).getSelection()).anchorNode, - anchorOffset: c.anchorOffset, - focusNode: c.focusNode, - focusOffset: c.focusOffset, - }), - (Hc && fc(Hc, c)) || - ((Hc = c), - 0 < (c = jc(Mc, "onSelect")).length && - ((t = new pn("onSelect", "select", null, t, n)), - e.push({ event: t, listeners: c }), - (t.target = gc)))); - } - Nt( - "cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange".split( - " " - ), - 0 - ), - Nt( - "drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel".split( - " " - ), - 1 - ), - Nt(Pt, 2); - for ( - var Lc = "change selectionchange textInput compositionstart compositionend compositionupdate".split( - " " - ), - wc = 0; - wc < Lc.length; - wc++ - ) - Ot.set(Lc[wc], 0); - u("onMouseEnter", ["mouseout", "mouseover"]), - u("onMouseLeave", ["mouseout", "mouseover"]), - u("onPointerEnter", ["pointerout", "pointerover"]), - u("onPointerLeave", ["pointerout", "pointerover"]), - s( - "onChange", - "change click focusin focusout input keydown keyup selectionchange".split( - " " - ) - ), - s( - "onSelect", - "focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split( - " " - ) - ), - s("onBeforeInput", [ - "compositionend", - "keypress", - "textInput", - "paste", - ]), - s( - "onCompositionEnd", - "compositionend focusout keydown keypress keyup mousedown".split( - " " - ) - ), - s( - "onCompositionStart", - "compositionstart focusout keydown keypress keyup mousedown".split( - " " - ) - ), - s( - "onCompositionUpdate", - "compositionupdate focusout keydown keypress keyup mousedown".split( - " " - ) - ); - var Cc = "abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split( - " " - ), - Ec = new Set( - "cancel close invalid load scroll toggle".split(" ").concat(Cc) - ); - function Sc(e, t, n) { - var c = e.type || "unknown-event"; - (e.currentTarget = n), - (function (e, t, n, c, r, a, l, i, s) { - if ((Qe.apply(this, arguments), We)) { - if (!We) throw Error(o(198)); - var u = $e; - (We = !1), ($e = null), Ke || ((Ke = !0), (qe = u)); - } - })(c, t, void 0, e), - (e.currentTarget = null); - } - function Ac(e, t) { - t = 0 !== (4 & t); - for (var n = 0; n < e.length; n++) { - var c = e[n], - r = c.event; - c = c.listeners; - e: { - var a = void 0; - if (t) - for (var o = c.length - 1; 0 <= o; o--) { - var l = c[o], - i = l.instance, - s = l.currentTarget; - if (((l = l.listener), i !== a && r.isPropagationStopped())) - break e; - Sc(r, l, s), (a = i); - } - else - for (o = 0; o < c.length; o++) { - if ( - ((i = (l = c[o]).instance), - (s = l.currentTarget), - (l = l.listener), - i !== a && r.isPropagationStopped()) - ) - break e; - Sc(r, l, s), (a = i); - } - } - } - if (Ke) throw ((e = qe), (Ke = !1), (qe = null), e); - } - function xc(e, t) { - var n = or(t), - c = e + "__bubble"; - n.has(c) || (Pc(t, e, 2, !1), n.add(c)); - } - var kc = "_reactListening" + Math.random().toString(36).slice(2); - function _c(e) { - e[kc] || - ((e[kc] = !0), - l.forEach(function (t) { - Ec.has(t) || Oc(t, !1, e, null), Oc(t, !0, e, null); - })); - } - function Oc(e, t, n, c) { - var r = - 4 < arguments.length && void 0 !== arguments[4] - ? arguments[4] - : 0, - a = n; - if ( - ("selectionchange" === e && - 9 !== n.nodeType && - (a = n.ownerDocument), - null !== c && !t && Ec.has(e)) - ) { - if ("scroll" !== e) return; - (r |= 2), (a = c); - } - var o = or(a), - l = e + "__" + (t ? "capture" : "bubble"); - o.has(l) || (t && (r |= 4), Pc(a, e, r, t), o.add(l)); - } - function Pc(e, t, n, c) { - var r = Ot.get(t); - switch (void 0 === r ? 2 : r) { - case 0: - r = Yt; - break; - case 1: - r = Xt; - break; - default: - r = Jt; - } - (n = r.bind(null, t, n, e)), - (r = void 0), - !Ie || - ("touchstart" !== t && "touchmove" !== t && "wheel" !== t) || - (r = !0), - c - ? void 0 !== r - ? e.addEventListener(t, n, { capture: !0, passive: r }) - : e.addEventListener(t, n, !0) - : void 0 !== r - ? e.addEventListener(t, n, { passive: r }) - : e.addEventListener(t, n, !1); - } - function Nc(e, t, n, c, r) { - var a = c; - if (0 === (1 & t) && 0 === (2 & t) && null !== c) - e: for (;;) { - if (null === c) return; - var o = c.tag; - if (3 === o || 4 === o) { - var l = c.stateNode.containerInfo; - if (l === r || (8 === l.nodeType && l.parentNode === r)) break; - if (4 === o) - for (o = c.return; null !== o; ) { - var i = o.tag; - if ( - (3 === i || 4 === i) && - ((i = o.stateNode.containerInfo) === r || - (8 === i.nodeType && i.parentNode === r)) - ) - return; - o = o.return; - } - for (; null !== l; ) { - if (null === (o = nr(l))) return; - if (5 === (i = o.tag) || 6 === i) { - c = a = o; - continue e; - } - l = l.parentNode; - } - } - c = c.return; - } - !(function (e, t, n) { - if (Re) return e(t, n); - Re = !0; - try { - Te(e, t, n); - } finally { - (Re = !1), De(); - } - })(function () { - var c = a, - r = Ce(n), - o = []; - e: { - var l = _t.get(e); - if (void 0 !== l) { - var i = pn, - s = e; - switch (e) { - case "keypress": - if (0 === rn(n)) break e; - case "keydown": - case "keyup": - i = xn; - break; - case "focusin": - (s = "focus"), (i = gn); - break; - case "focusout": - (s = "blur"), (i = gn); - break; - case "beforeblur": - case "afterblur": - i = gn; - break; - case "click": - if (2 === n.button) break e; - case "auxclick": - case "dblclick": - case "mousedown": - case "mousemove": - case "mouseup": - case "mouseout": - case "mouseover": - case "contextmenu": - i = zn; - break; - case "drag": - case "dragend": - case "dragenter": - case "dragexit": - case "dragleave": - case "dragover": - case "dragstart": - case "drop": - i = yn; - break; - case "touchcancel": - case "touchend": - case "touchmove": - case "touchstart": - i = _n; - break; - case St: - case At: - case xt: - i = Mn; - break; - case kt: - i = On; - break; - case "scroll": - i = dn; - break; - case "wheel": - i = Nn; - break; - case "copy": - case "cut": - case "paste": - i = bn; - break; - case "gotpointercapture": - case "lostpointercapture": - case "pointercancel": - case "pointerdown": - case "pointermove": - case "pointerout": - case "pointerover": - case "pointerup": - i = kn; - } - var u = 0 !== (4 & t), - h = !u && "scroll" === e, - f = u ? (null !== l ? l + "Capture" : null) : l; - u = []; - for (var p, v = c; null !== v; ) { - var d = (p = v).stateNode; - if ( - (5 === p.tag && - null !== d && - ((p = d), - null !== f && - null != (d = Fe(v, f)) && - u.push(Tc(v, d, p))), - h) - ) - break; - v = v.return; - } - 0 < u.length && - ((l = new i(l, s, null, n, r)), - o.push({ event: l, listeners: u })); - } - } - if (0 === (7 & t)) { - if ( - ((i = "mouseout" === e || "pointerout" === e), - (!(l = "mouseover" === e || "pointerover" === e) || - 0 !== (16 & t) || - !(s = n.relatedTarget || n.fromElement) || - (!nr(s) && !s[er])) && - (i || l) && - ((l = - r.window === r - ? r - : (l = r.ownerDocument) - ? l.defaultView || l.parentWindow - : window), - i - ? ((i = c), - null !== - (s = (s = n.relatedTarget || n.toElement) - ? nr(s) - : null) && - (s !== (h = Ye(s)) || (5 !== s.tag && 6 !== s.tag)) && - (s = null)) - : ((i = null), (s = c)), - i !== s)) - ) { - if ( - ((u = zn), - (d = "onMouseLeave"), - (f = "onMouseEnter"), - (v = "mouse"), - ("pointerout" !== e && "pointerover" !== e) || - ((u = kn), - (d = "onPointerLeave"), - (f = "onPointerEnter"), - (v = "pointer")), - (h = null == i ? l : rr(i)), - (p = null == s ? l : rr(s)), - ((l = new u(d, v + "leave", i, n, r)).target = h), - (l.relatedTarget = p), - (d = null), - nr(r) === c && - (((u = new u(f, v + "enter", s, n, r)).target = p), - (u.relatedTarget = h), - (d = u)), - (h = d), - i && s) - ) - e: { - for (f = s, v = 0, p = u = i; p; p = Rc(p)) v++; - for (p = 0, d = f; d; d = Rc(d)) p++; - for (; 0 < v - p; ) (u = Rc(u)), v--; - for (; 0 < p - v; ) (f = Rc(f)), p--; - for (; v--; ) { - if (u === f || (null !== f && u === f.alternate)) break e; - (u = Rc(u)), (f = Rc(f)); - } - u = null; - } - else u = null; - null !== i && Dc(o, l, i, u, !1), - null !== s && null !== h && Dc(o, h, s, u, !0); - } - if ( - "select" === - (i = - (l = c ? rr(c) : window).nodeName && - l.nodeName.toLowerCase()) || - ("input" === i && "file" === l.type) - ) - var m = Zn; - else if (qn(l)) - if (ec) m = sc; - else { - m = lc; - var z = oc; - } - else - (i = l.nodeName) && - "input" === i.toLowerCase() && - ("checkbox" === l.type || "radio" === l.type) && - (m = ic); - switch ( - (m && (m = m(e, c)) - ? Gn(o, m, n, r) - : (z && z(e, l, c), - "focusout" === e && - (z = l._wrapperState) && - z.controlled && - "number" === l.type && - re(l, "number", l.value)), - (z = c ? rr(c) : window), - e) - ) { - case "focusin": - (qn(z) || "true" === z.contentEditable) && - ((gc = z), (Mc = c), (Hc = null)); - break; - case "focusout": - Hc = Mc = gc = null; - break; - case "mousedown": - bc = !0; - break; - case "contextmenu": - case "mouseup": - case "dragend": - (bc = !1), Vc(o, n, r); - break; - case "selectionchange": - if (yc) break; - case "keydown": - case "keyup": - Vc(o, n, r); - } - var y; - if (jn) - e: { - switch (e) { - case "compositionstart": - var g = "onCompositionStart"; - break e; - case "compositionend": - g = "onCompositionEnd"; - break e; - case "compositionupdate": - g = "onCompositionUpdate"; - break e; - } - g = void 0; - } - else - $n - ? Bn(e, n) && (g = "onCompositionEnd") - : "keydown" === e && - 229 === n.keyCode && - (g = "onCompositionStart"); - g && - (Fn && - "ko" !== n.locale && - ($n || "onCompositionStart" !== g - ? "onCompositionEnd" === g && $n && (y = cn()) - : ((tn = "value" in (en = r) ? en.value : en.textContent), - ($n = !0))), - 0 < (z = jc(c, g)).length && - ((g = new Vn(g, e, null, n, r)), - o.push({ event: g, listeners: z }), - y ? (g.data = y) : null !== (y = Wn(n)) && (g.data = y))), - (y = Dn - ? (function (e, t) { - switch (e) { - case "compositionend": - return Wn(t); - case "keypress": - return 32 !== t.which ? null : ((Un = !0), In); - case "textInput": - return (e = t.data) === In && Un ? null : e; - default: - return null; - } - })(e, n) - : (function (e, t) { - if ($n) - return "compositionend" === e || (!jn && Bn(e, t)) - ? ((e = cn()), (nn = tn = en = null), ($n = !1), e) - : null; - switch (e) { - case "paste": - default: - return null; - case "keypress": - if ( - !(t.ctrlKey || t.altKey || t.metaKey) || - (t.ctrlKey && t.altKey) - ) { - if (t.char && 1 < t.char.length) return t.char; - if (t.which) return String.fromCharCode(t.which); - } - return null; - case "compositionend": - return Fn && "ko" !== t.locale ? null : t.data; - } - })(e, n)) && - 0 < (c = jc(c, "onBeforeInput")).length && - ((r = new Vn("onBeforeInput", "beforeinput", null, n, r)), - o.push({ event: r, listeners: c }), - (r.data = y)); - } - Ac(o, t); - }); - } - function Tc(e, t, n) { - return { instance: e, listener: t, currentTarget: n }; - } - function jc(e, t) { - for (var n = t + "Capture", c = []; null !== e; ) { - var r = e, - a = r.stateNode; - 5 === r.tag && - null !== a && - ((r = a), - null != (a = Fe(e, n)) && c.unshift(Tc(e, a, r)), - null != (a = Fe(e, t)) && c.push(Tc(e, a, r))), - (e = e.return); - } - return c; - } - function Rc(e) { - if (null === e) return null; - do { - e = e.return; - } while (e && 5 !== e.tag); - return e || null; - } - function Dc(e, t, n, c, r) { - for (var a = t._reactName, o = []; null !== n && n !== c; ) { - var l = n, - i = l.alternate, - s = l.stateNode; - if (null !== i && i === c) break; - 5 === l.tag && - null !== s && - ((l = s), - r - ? null != (i = Fe(n, a)) && o.unshift(Tc(n, i, l)) - : r || (null != (i = Fe(n, a)) && o.push(Tc(n, i, l)))), - (n = n.return); - } - 0 !== o.length && e.push({ event: t, listeners: o }); - } - function Fc() {} - var Ic = null, - Uc = null; - function Bc(e, t) { - switch (e) { - case "button": - case "input": - case "select": - case "textarea": - return !!t.autoFocus; - } - return !1; - } - function Wc(e, t) { - return ( - "textarea" === e || - "option" === e || - "noscript" === e || - "string" === typeof t.children || - "number" === typeof t.children || - ("object" === typeof t.dangerouslySetInnerHTML && - null !== t.dangerouslySetInnerHTML && - null != t.dangerouslySetInnerHTML.__html) - ); - } - var $c = "function" === typeof setTimeout ? setTimeout : void 0, - Kc = "function" === typeof clearTimeout ? clearTimeout : void 0; - function qc(e) { - 1 === e.nodeType - ? (e.textContent = "") - : 9 === e.nodeType && null != (e = e.body) && (e.textContent = ""); - } - function Gc(e) { - for (; null != e; e = e.nextSibling) { - var t = e.nodeType; - if (1 === t || 3 === t) break; - } - return e; - } - function Qc(e) { - e = e.previousSibling; - for (var t = 0; e; ) { - if (8 === e.nodeType) { - var n = e.data; - if ("$" === n || "$!" === n || "$?" === n) { - if (0 === t) return e; - t--; - } else "/$" === n && t++; - } - e = e.previousSibling; - } - return null; - } - var Yc = 0; - var Xc = Math.random().toString(36).slice(2), - Jc = "__reactFiber$" + Xc, - Zc = "__reactProps$" + Xc, - er = "__reactContainer$" + Xc, - tr = "__reactEvents$" + Xc; - function nr(e) { - var t = e[Jc]; - if (t) return t; - for (var n = e.parentNode; n; ) { - if ((t = n[er] || n[Jc])) { - if ( - ((n = t.alternate), - null !== t.child || (null !== n && null !== n.child)) - ) - for (e = Qc(e); null !== e; ) { - if ((n = e[Jc])) return n; - e = Qc(e); - } - return t; - } - n = (e = n).parentNode; - } - return null; - } - function cr(e) { - return !(e = e[Jc] || e[er]) || - (5 !== e.tag && 6 !== e.tag && 13 !== e.tag && 3 !== e.tag) - ? null - : e; - } - function rr(e) { - if (5 === e.tag || 6 === e.tag) return e.stateNode; - throw Error(o(33)); - } - function ar(e) { - return e[Zc] || null; - } - function or(e) { - var t = e[tr]; - return void 0 === t && (t = e[tr] = new Set()), t; - } - var lr = [], - ir = -1; - function sr(e) { - return { current: e }; - } - function ur(e) { - 0 > ir || ((e.current = lr[ir]), (lr[ir] = null), ir--); - } - function hr(e, t) { - ir++, (lr[ir] = e.current), (e.current = t); - } - var fr = {}, - pr = sr(fr), - vr = sr(!1), - dr = fr; - function mr(e, t) { - var n = e.type.contextTypes; - if (!n) return fr; - var c = e.stateNode; - if (c && c.__reactInternalMemoizedUnmaskedChildContext === t) - return c.__reactInternalMemoizedMaskedChildContext; - var r, - a = {}; - for (r in n) a[r] = t[r]; - return ( - c && - (((e = - e.stateNode).__reactInternalMemoizedUnmaskedChildContext = t), - (e.__reactInternalMemoizedMaskedChildContext = a)), - a - ); - } - function zr(e) { - return null !== (e = e.childContextTypes) && void 0 !== e; - } - function yr() { - ur(vr), ur(pr); - } - function gr(e, t, n) { - if (pr.current !== fr) throw Error(o(168)); - hr(pr, t), hr(vr, n); - } - function Mr(e, t, n) { - var c = e.stateNode; - if ( - ((e = t.childContextTypes), "function" !== typeof c.getChildContext) - ) - return n; - for (var a in (c = c.getChildContext())) - if (!(a in e)) throw Error(o(108, q(t) || "Unknown", a)); - return r({}, n, c); - } - function Hr(e) { - return ( - (e = - ((e = e.stateNode) && - e.__reactInternalMemoizedMergedChildContext) || - fr), - (dr = pr.current), - hr(pr, e), - hr(vr, vr.current), - !0 - ); - } - function br(e, t, n) { - var c = e.stateNode; - if (!c) throw Error(o(169)); - n - ? ((e = Mr(e, t, dr)), - (c.__reactInternalMemoizedMergedChildContext = e), - ur(vr), - ur(pr), - hr(pr, e)) - : ur(vr), - hr(vr, n); - } - var Vr = null, - Lr = null, - wr = a.unstable_runWithPriority, - Cr = a.unstable_scheduleCallback, - Er = a.unstable_cancelCallback, - Sr = a.unstable_shouldYield, - Ar = a.unstable_requestPaint, - xr = a.unstable_now, - kr = a.unstable_getCurrentPriorityLevel, - _r = a.unstable_ImmediatePriority, - Or = a.unstable_UserBlockingPriority, - Pr = a.unstable_NormalPriority, - Nr = a.unstable_LowPriority, - Tr = a.unstable_IdlePriority, - jr = {}, - Rr = void 0 !== Ar ? Ar : function () {}, - Dr = null, - Fr = null, - Ir = !1, - Ur = xr(), - Br = - 1e4 > Ur - ? xr - : function () { - return xr() - Ur; - }; - function Wr() { - switch (kr()) { - case _r: - return 99; - case Or: - return 98; - case Pr: - return 97; - case Nr: - return 96; - case Tr: - return 95; - default: - throw Error(o(332)); - } - } - function $r(e) { - switch (e) { - case 99: - return _r; - case 98: - return Or; - case 97: - return Pr; - case 96: - return Nr; - case 95: - return Tr; - default: - throw Error(o(332)); - } - } - function Kr(e, t) { - return (e = $r(e)), wr(e, t); - } - function qr(e, t, n) { - return (e = $r(e)), Cr(e, t, n); - } - function Gr() { - if (null !== Fr) { - var e = Fr; - (Fr = null), Er(e); - } - Qr(); - } - function Qr() { - if (!Ir && null !== Dr) { - Ir = !0; - var e = 0; - try { - var t = Dr; - Kr(99, function () { - for (; e < t.length; e++) { - var n = t[e]; - do { - n = n(!0); - } while (null !== n); - } - }), - (Dr = null); - } catch (n) { - throw (null !== Dr && (Dr = Dr.slice(e + 1)), Cr(_r, Gr), n); - } finally { - Ir = !1; - } - } - } - var Yr = H.ReactCurrentBatchConfig; - function Xr(e, t) { - if (e && e.defaultProps) { - for (var n in ((t = r({}, t)), (e = e.defaultProps))) - void 0 === t[n] && (t[n] = e[n]); - return t; - } - return t; - } - var Jr = sr(null), - Zr = null, - ea = null, - ta = null; - function na() { - ta = ea = Zr = null; - } - function ca(e) { - var t = Jr.current; - ur(Jr), (e.type._context._currentValue = t); - } - function ra(e, t) { - for (; null !== e; ) { - var n = e.alternate; - if ((e.childLanes & t) === t) { - if (null === n || (n.childLanes & t) === t) break; - n.childLanes |= t; - } else (e.childLanes |= t), null !== n && (n.childLanes |= t); - e = e.return; - } - } - function aa(e, t) { - (Zr = e), - (ta = ea = null), - null !== (e = e.dependencies) && - null !== e.firstContext && - (0 !== (e.lanes & t) && (jo = !0), (e.firstContext = null)); - } - function oa(e, t) { - if (ta !== e && !1 !== t && 0 !== t) - if ( - (("number" === typeof t && 1073741823 !== t) || - ((ta = e), (t = 1073741823)), - (t = { context: e, observedBits: t, next: null }), - null === ea) - ) { - if (null === Zr) throw Error(o(308)); - (ea = t), - (Zr.dependencies = { - lanes: 0, - firstContext: t, - responders: null, - }); - } else ea = ea.next = t; - return e._currentValue; - } - var la = !1; - function ia(e) { - e.updateQueue = { - baseState: e.memoizedState, - firstBaseUpdate: null, - lastBaseUpdate: null, - shared: { pending: null }, - effects: null, - }; - } - function sa(e, t) { - (e = e.updateQueue), - t.updateQueue === e && - (t.updateQueue = { - baseState: e.baseState, - firstBaseUpdate: e.firstBaseUpdate, - lastBaseUpdate: e.lastBaseUpdate, - shared: e.shared, - effects: e.effects, - }); - } - function ua(e, t) { - return { - eventTime: e, - lane: t, - tag: 0, - payload: null, - callback: null, - next: null, - }; - } - function ha(e, t) { - if (null !== (e = e.updateQueue)) { - var n = (e = e.shared).pending; - null === n ? (t.next = t) : ((t.next = n.next), (n.next = t)), - (e.pending = t); - } - } - function fa(e, t) { - var n = e.updateQueue, - c = e.alternate; - if (null !== c && n === (c = c.updateQueue)) { - var r = null, - a = null; - if (null !== (n = n.firstBaseUpdate)) { - do { - var o = { - eventTime: n.eventTime, - lane: n.lane, - tag: n.tag, - payload: n.payload, - callback: n.callback, - next: null, - }; - null === a ? (r = a = o) : (a = a.next = o), (n = n.next); - } while (null !== n); - null === a ? (r = a = t) : (a = a.next = t); - } else r = a = t; - return ( - (n = { - baseState: c.baseState, - firstBaseUpdate: r, - lastBaseUpdate: a, - shared: c.shared, - effects: c.effects, - }), - void (e.updateQueue = n) - ); - } - null === (e = n.lastBaseUpdate) - ? (n.firstBaseUpdate = t) - : (e.next = t), - (n.lastBaseUpdate = t); - } - function pa(e, t, n, c) { - var a = e.updateQueue; - la = !1; - var o = a.firstBaseUpdate, - l = a.lastBaseUpdate, - i = a.shared.pending; - if (null !== i) { - a.shared.pending = null; - var s = i, - u = s.next; - (s.next = null), null === l ? (o = u) : (l.next = u), (l = s); - var h = e.alternate; - if (null !== h) { - var f = (h = h.updateQueue).lastBaseUpdate; - f !== l && - (null === f ? (h.firstBaseUpdate = u) : (f.next = u), - (h.lastBaseUpdate = s)); - } - } - if (null !== o) { - for (f = a.baseState, l = 0, h = u = s = null; ; ) { - i = o.lane; - var p = o.eventTime; - if ((c & i) === i) { - null !== h && - (h = h.next = { - eventTime: p, - lane: 0, - tag: o.tag, - payload: o.payload, - callback: o.callback, - next: null, - }); - e: { - var v = e, - d = o; - switch (((i = t), (p = n), d.tag)) { - case 1: - if ("function" === typeof (v = d.payload)) { - f = v.call(p, f, i); - break e; - } - f = v; - break e; - case 3: - v.flags = (-4097 & v.flags) | 64; - case 0: - if ( - null === - (i = - "function" === typeof (v = d.payload) - ? v.call(p, f, i) - : v) || - void 0 === i - ) - break e; - f = r({}, f, i); - break e; - case 2: - la = !0; - } - } - null !== o.callback && - ((e.flags |= 32), - null === (i = a.effects) ? (a.effects = [o]) : i.push(o)); - } else - (p = { - eventTime: p, - lane: i, - tag: o.tag, - payload: o.payload, - callback: o.callback, - next: null, - }), - null === h ? ((u = h = p), (s = f)) : (h = h.next = p), - (l |= i); - if (null === (o = o.next)) { - if (null === (i = a.shared.pending)) break; - (o = i.next), - (i.next = null), - (a.lastBaseUpdate = i), - (a.shared.pending = null); - } - } - null === h && (s = f), - (a.baseState = s), - (a.firstBaseUpdate = u), - (a.lastBaseUpdate = h), - (Il |= l), - (e.lanes = l), - (e.memoizedState = f); - } - } - function va(e, t, n) { - if (((e = t.effects), (t.effects = null), null !== e)) - for (t = 0; t < e.length; t++) { - var c = e[t], - r = c.callback; - if (null !== r) { - if (((c.callback = null), (c = n), "function" !== typeof r)) - throw Error(o(191, r)); - r.call(c); - } - } - } - var da = new c.Component().refs; - function ma(e, t, n, c) { - (n = - null === (n = n(c, (t = e.memoizedState))) || void 0 === n - ? t - : r({}, t, n)), - (e.memoizedState = n), - 0 === e.lanes && (e.updateQueue.baseState = n); - } - var za = { - isMounted: function (e) { - return !!(e = e._reactInternals) && Ye(e) === e; - }, - enqueueSetState: function (e, t, n) { - e = e._reactInternals; - var c = fi(), - r = pi(e), - a = ua(c, r); - (a.payload = t), - void 0 !== n && null !== n && (a.callback = n), - ha(e, a), - vi(e, r, c); - }, - enqueueReplaceState: function (e, t, n) { - e = e._reactInternals; - var c = fi(), - r = pi(e), - a = ua(c, r); - (a.tag = 1), - (a.payload = t), - void 0 !== n && null !== n && (a.callback = n), - ha(e, a), - vi(e, r, c); - }, - enqueueForceUpdate: function (e, t) { - e = e._reactInternals; - var n = fi(), - c = pi(e), - r = ua(n, c); - (r.tag = 2), - void 0 !== t && null !== t && (r.callback = t), - ha(e, r), - vi(e, c, n); - }, - }; - function ya(e, t, n, c, r, a, o) { - return "function" === typeof (e = e.stateNode).shouldComponentUpdate - ? e.shouldComponentUpdate(c, a, o) - : !t.prototype || - !t.prototype.isPureReactComponent || - !fc(n, c) || - !fc(r, a); - } - function ga(e, t, n) { - var c = !1, - r = fr, - a = t.contextType; - return ( - "object" === typeof a && null !== a - ? (a = oa(a)) - : ((r = zr(t) ? dr : pr.current), - (a = (c = null !== (c = t.contextTypes) && void 0 !== c) - ? mr(e, r) - : fr)), - (t = new t(n, a)), - (e.memoizedState = - null !== t.state && void 0 !== t.state ? t.state : null), - (t.updater = za), - (e.stateNode = t), - (t._reactInternals = e), - c && - (((e = - e.stateNode).__reactInternalMemoizedUnmaskedChildContext = r), - (e.__reactInternalMemoizedMaskedChildContext = a)), - t - ); - } - function Ma(e, t, n, c) { - (e = t.state), - "function" === typeof t.componentWillReceiveProps && - t.componentWillReceiveProps(n, c), - "function" === typeof t.UNSAFE_componentWillReceiveProps && - t.UNSAFE_componentWillReceiveProps(n, c), - t.state !== e && za.enqueueReplaceState(t, t.state, null); - } - function Ha(e, t, n, c) { - var r = e.stateNode; - (r.props = n), (r.state = e.memoizedState), (r.refs = da), ia(e); - var a = t.contextType; - "object" === typeof a && null !== a - ? (r.context = oa(a)) - : ((a = zr(t) ? dr : pr.current), (r.context = mr(e, a))), - pa(e, n, r, c), - (r.state = e.memoizedState), - "function" === typeof (a = t.getDerivedStateFromProps) && - (ma(e, t, a, n), (r.state = e.memoizedState)), - "function" === typeof t.getDerivedStateFromProps || - "function" === typeof r.getSnapshotBeforeUpdate || - ("function" !== typeof r.UNSAFE_componentWillMount && - "function" !== typeof r.componentWillMount) || - ((t = r.state), - "function" === typeof r.componentWillMount && - r.componentWillMount(), - "function" === typeof r.UNSAFE_componentWillMount && - r.UNSAFE_componentWillMount(), - t !== r.state && za.enqueueReplaceState(r, r.state, null), - pa(e, n, r, c), - (r.state = e.memoizedState)), - "function" === typeof r.componentDidMount && (e.flags |= 4); - } - var ba = Array.isArray; - function Va(e, t, n) { - if ( - null !== (e = n.ref) && - "function" !== typeof e && - "object" !== typeof e - ) { - if (n._owner) { - if ((n = n._owner)) { - if (1 !== n.tag) throw Error(o(309)); - var c = n.stateNode; - } - if (!c) throw Error(o(147, e)); - var r = "" + e; - return null !== t && - null !== t.ref && - "function" === typeof t.ref && - t.ref._stringRef === r - ? t.ref - : ((t = function (e) { - var t = c.refs; - t === da && (t = c.refs = {}), - null === e ? delete t[r] : (t[r] = e); - }), - (t._stringRef = r), - t); - } - if ("string" !== typeof e) throw Error(o(284)); - if (!n._owner) throw Error(o(290, e)); - } - return e; - } - function La(e, t) { - if ("textarea" !== e.type) - throw Error( - o( - 31, - "[object Object]" === Object.prototype.toString.call(t) - ? "object with keys {" + Object.keys(t).join(", ") + "}" - : t - ) - ); - } - function wa(e) { - function t(t, n) { - if (e) { - var c = t.lastEffect; - null !== c - ? ((c.nextEffect = n), (t.lastEffect = n)) - : (t.firstEffect = t.lastEffect = n), - (n.nextEffect = null), - (n.flags = 8); - } - } - function n(n, c) { - if (!e) return null; - for (; null !== c; ) t(n, c), (c = c.sibling); - return null; - } - function c(e, t) { - for (e = new Map(); null !== t; ) - null !== t.key ? e.set(t.key, t) : e.set(t.index, t), - (t = t.sibling); - return e; - } - function r(e, t) { - return ((e = Ki(e, t)).index = 0), (e.sibling = null), e; - } - function a(t, n, c) { - return ( - (t.index = c), - e - ? null !== (c = t.alternate) - ? (c = c.index) < n - ? ((t.flags = 2), n) - : c - : ((t.flags = 2), n) - : n - ); - } - function l(t) { - return e && null === t.alternate && (t.flags = 2), t; - } - function i(e, t, n, c) { - return null === t || 6 !== t.tag - ? (((t = Yi(n, e.mode, c)).return = e), t) - : (((t = r(t, n)).return = e), t); - } - function s(e, t, n, c) { - return null !== t && t.elementType === n.type - ? (((c = r(t, n.props)).ref = Va(e, t, n)), (c.return = e), c) - : (((c = qi(n.type, n.key, n.props, null, e.mode, c)).ref = Va( - e, - t, - n - )), - (c.return = e), - c); - } - function u(e, t, n, c) { - return null === t || - 4 !== t.tag || - t.stateNode.containerInfo !== n.containerInfo || - t.stateNode.implementation !== n.implementation - ? (((t = Xi(n, e.mode, c)).return = e), t) - : (((t = r(t, n.children || [])).return = e), t); - } - function h(e, t, n, c, a) { - return null === t || 7 !== t.tag - ? (((t = Gi(n, e.mode, c, a)).return = e), t) - : (((t = r(t, n)).return = e), t); - } - function f(e, t, n) { - if ("string" === typeof t || "number" === typeof t) - return ((t = Yi("" + t, e.mode, n)).return = e), t; - if ("object" === typeof t && null !== t) { - switch (t.$$typeof) { - case b: - return ( - ((n = qi(t.type, t.key, t.props, null, e.mode, n)).ref = Va( - e, - null, - t - )), - (n.return = e), - n - ); - case V: - return ((t = Xi(t, e.mode, n)).return = e), t; - } - if (ba(t) || U(t)) - return ((t = Gi(t, e.mode, n, null)).return = e), t; - La(e, t); - } - return null; - } - function p(e, t, n, c) { - var r = null !== t ? t.key : null; - if ("string" === typeof n || "number" === typeof n) - return null !== r ? null : i(e, t, "" + n, c); - if ("object" === typeof n && null !== n) { - switch (n.$$typeof) { - case b: - return n.key === r - ? n.type === L - ? h(e, t, n.props.children, c, r) - : s(e, t, n, c) - : null; - case V: - return n.key === r ? u(e, t, n, c) : null; - } - if (ba(n) || U(n)) return null !== r ? null : h(e, t, n, c, null); - La(e, n); - } - return null; - } - function v(e, t, n, c, r) { - if ("string" === typeof c || "number" === typeof c) - return i(t, (e = e.get(n) || null), "" + c, r); - if ("object" === typeof c && null !== c) { - switch (c.$$typeof) { - case b: - return ( - (e = e.get(null === c.key ? n : c.key) || null), - c.type === L - ? h(t, e, c.props.children, r, c.key) - : s(t, e, c, r) - ); - case V: - return u( - t, - (e = e.get(null === c.key ? n : c.key) || null), - c, - r - ); - } - if (ba(c) || U(c)) - return h(t, (e = e.get(n) || null), c, r, null); - La(t, c); - } - return null; - } - function d(r, o, l, i) { - for ( - var s = null, u = null, h = o, d = (o = 0), m = null; - null !== h && d < l.length; - d++ - ) { - h.index > d ? ((m = h), (h = null)) : (m = h.sibling); - var z = p(r, h, l[d], i); - if (null === z) { - null === h && (h = m); - break; - } - e && h && null === z.alternate && t(r, h), - (o = a(z, o, d)), - null === u ? (s = z) : (u.sibling = z), - (u = z), - (h = m); - } - if (d === l.length) return n(r, h), s; - if (null === h) { - for (; d < l.length; d++) - null !== (h = f(r, l[d], i)) && - ((o = a(h, o, d)), - null === u ? (s = h) : (u.sibling = h), - (u = h)); - return s; - } - for (h = c(r, h); d < l.length; d++) - null !== (m = v(h, r, d, l[d], i)) && - (e && - null !== m.alternate && - h.delete(null === m.key ? d : m.key), - (o = a(m, o, d)), - null === u ? (s = m) : (u.sibling = m), - (u = m)); - return ( - e && - h.forEach(function (e) { - return t(r, e); - }), - s - ); - } - function m(r, l, i, s) { - var u = U(i); - if ("function" !== typeof u) throw Error(o(150)); - if (null == (i = u.call(i))) throw Error(o(151)); - for ( - var h = (u = null), d = l, m = (l = 0), z = null, y = i.next(); - null !== d && !y.done; - m++, y = i.next() - ) { - d.index > m ? ((z = d), (d = null)) : (z = d.sibling); - var g = p(r, d, y.value, s); - if (null === g) { - null === d && (d = z); - break; - } - e && d && null === g.alternate && t(r, d), - (l = a(g, l, m)), - null === h ? (u = g) : (h.sibling = g), - (h = g), - (d = z); - } - if (y.done) return n(r, d), u; - if (null === d) { - for (; !y.done; m++, y = i.next()) - null !== (y = f(r, y.value, s)) && - ((l = a(y, l, m)), - null === h ? (u = y) : (h.sibling = y), - (h = y)); - return u; - } - for (d = c(r, d); !y.done; m++, y = i.next()) - null !== (y = v(d, r, m, y.value, s)) && - (e && - null !== y.alternate && - d.delete(null === y.key ? m : y.key), - (l = a(y, l, m)), - null === h ? (u = y) : (h.sibling = y), - (h = y)); - return ( - e && - d.forEach(function (e) { - return t(r, e); - }), - u - ); - } - return function (e, c, a, i) { - var s = - "object" === typeof a && - null !== a && - a.type === L && - null === a.key; - s && (a = a.props.children); - var u = "object" === typeof a && null !== a; - if (u) - switch (a.$$typeof) { - case b: - e: { - for (u = a.key, s = c; null !== s; ) { - if (s.key === u) { - if (7 === s.tag) { - if (a.type === L) { - n(e, s.sibling), - ((c = r(s, a.props.children)).return = e), - (e = c); - break e; - } - } else if (s.elementType === a.type) { - n(e, s.sibling), - ((c = r(s, a.props)).ref = Va(e, s, a)), - (c.return = e), - (e = c); - break e; - } - n(e, s); - break; - } - t(e, s), (s = s.sibling); - } - a.type === L - ? (((c = Gi( - a.props.children, - e.mode, - i, - a.key - )).return = e), - (e = c)) - : (((i = qi( - a.type, - a.key, - a.props, - null, - e.mode, - i - )).ref = Va(e, c, a)), - (i.return = e), - (e = i)); - } - return l(e); - case V: - e: { - for (s = a.key; null !== c; ) { - if (c.key === s) { - if ( - 4 === c.tag && - c.stateNode.containerInfo === a.containerInfo && - c.stateNode.implementation === a.implementation - ) { - n(e, c.sibling), - ((c = r(c, a.children || [])).return = e), - (e = c); - break e; - } - n(e, c); - break; - } - t(e, c), (c = c.sibling); - } - ((c = Xi(a, e.mode, i)).return = e), (e = c); - } - return l(e); - } - if ("string" === typeof a || "number" === typeof a) - return ( - (a = "" + a), - null !== c && 6 === c.tag - ? (n(e, c.sibling), ((c = r(c, a)).return = e), (e = c)) - : (n(e, c), ((c = Yi(a, e.mode, i)).return = e), (e = c)), - l(e) - ); - if (ba(a)) return d(e, c, a, i); - if (U(a)) return m(e, c, a, i); - if ((u && La(e, a), "undefined" === typeof a && !s)) - switch (e.tag) { - case 1: - case 22: - case 0: - case 11: - case 15: - throw Error(o(152, q(e.type) || "Component")); - } - return n(e, c); - }; - } - var Ca = wa(!0), - Ea = wa(!1), - Sa = {}, - Aa = sr(Sa), - xa = sr(Sa), - ka = sr(Sa); - function _a(e) { - if (e === Sa) throw Error(o(174)); - return e; - } - function Oa(e, t) { - switch ((hr(ka, t), hr(xa, e), hr(Aa, Sa), (e = t.nodeType))) { - case 9: - case 11: - t = (t = t.documentElement) ? t.namespaceURI : ve(null, ""); - break; - default: - t = ve( - (t = (e = 8 === e ? t.parentNode : t).namespaceURI || null), - (e = e.tagName) - ); - } - ur(Aa), hr(Aa, t); - } - function Pa() { - ur(Aa), ur(xa), ur(ka); - } - function Na(e) { - _a(ka.current); - var t = _a(Aa.current), - n = ve(t, e.type); - t !== n && (hr(xa, e), hr(Aa, n)); - } - function Ta(e) { - xa.current === e && (ur(Aa), ur(xa)); - } - var ja = sr(0); - function Ra(e) { - for (var t = e; null !== t; ) { - if (13 === t.tag) { - var n = t.memoizedState; - if ( - null !== n && - (null === (n = n.dehydrated) || - "$?" === n.data || - "$!" === n.data) - ) - return t; - } else if (19 === t.tag && void 0 !== t.memoizedProps.revealOrder) { - if (0 !== (64 & t.flags)) return t; - } else if (null !== t.child) { - (t.child.return = t), (t = t.child); - continue; - } - if (t === e) break; - for (; null === t.sibling; ) { - if (null === t.return || t.return === e) return null; - t = t.return; - } - (t.sibling.return = t.return), (t = t.sibling); - } - return null; - } - var Da = null, - Fa = null, - Ia = !1; - function Ua(e, t) { - var n = Wi(5, null, null, 0); - (n.elementType = "DELETED"), - (n.type = "DELETED"), - (n.stateNode = t), - (n.return = e), - (n.flags = 8), - null !== e.lastEffect - ? ((e.lastEffect.nextEffect = n), (e.lastEffect = n)) - : (e.firstEffect = e.lastEffect = n); - } - function Ba(e, t) { - switch (e.tag) { - case 5: - var n = e.type; - return ( - null !== - (t = - 1 !== t.nodeType || - n.toLowerCase() !== t.nodeName.toLowerCase() - ? null - : t) && ((e.stateNode = t), !0) - ); - case 6: - return ( - null !== - (t = "" === e.pendingProps || 3 !== t.nodeType ? null : t) && - ((e.stateNode = t), !0) - ); - default: - return !1; - } - } - function Wa(e) { - if (Ia) { - var t = Fa; - if (t) { - var n = t; - if (!Ba(e, t)) { - if (!(t = Gc(n.nextSibling)) || !Ba(e, t)) - return ( - (e.flags = (-1025 & e.flags) | 2), (Ia = !1), void (Da = e) - ); - Ua(Da, n); - } - (Da = e), (Fa = Gc(t.firstChild)); - } else (e.flags = (-1025 & e.flags) | 2), (Ia = !1), (Da = e); - } - } - function $a(e) { - for ( - e = e.return; - null !== e && 5 !== e.tag && 3 !== e.tag && 13 !== e.tag; - - ) - e = e.return; - Da = e; - } - function Ka(e) { - if (e !== Da) return !1; - if (!Ia) return $a(e), (Ia = !0), !1; - var t = e.type; - if ( - 5 !== e.tag || - ("head" !== t && "body" !== t && !Wc(t, e.memoizedProps)) - ) - for (t = Fa; t; ) Ua(e, t), (t = Gc(t.nextSibling)); - if (($a(e), 13 === e.tag)) { - if (!(e = null !== (e = e.memoizedState) ? e.dehydrated : null)) - throw Error(o(317)); - e: { - for (e = e.nextSibling, t = 0; e; ) { - if (8 === e.nodeType) { - var n = e.data; - if ("/$" === n) { - if (0 === t) { - Fa = Gc(e.nextSibling); - break e; - } - t--; - } else ("$" !== n && "$!" !== n && "$?" !== n) || t++; - } - e = e.nextSibling; - } - Fa = null; - } - } else Fa = Da ? Gc(e.stateNode.nextSibling) : null; - return !0; - } - function qa() { - (Fa = Da = null), (Ia = !1); - } - var Ga = []; - function Qa() { - for (var e = 0; e < Ga.length; e++) - Ga[e]._workInProgressVersionPrimary = null; - Ga.length = 0; - } - var Ya = H.ReactCurrentDispatcher, - Xa = H.ReactCurrentBatchConfig, - Ja = 0, - Za = null, - eo = null, - to = null, - no = !1, - co = !1; - function ro() { - throw Error(o(321)); - } - function ao(e, t) { - if (null === t) return !1; - for (var n = 0; n < t.length && n < e.length; n++) - if (!uc(e[n], t[n])) return !1; - return !0; - } - function oo(e, t, n, c, r, a) { - if ( - ((Ja = a), - (Za = t), - (t.memoizedState = null), - (t.updateQueue = null), - (t.lanes = 0), - (Ya.current = null === e || null === e.memoizedState ? Oo : Po), - (e = n(c, r)), - co) - ) { - a = 0; - do { - if (((co = !1), !(25 > a))) throw Error(o(301)); - (a += 1), - (to = eo = null), - (t.updateQueue = null), - (Ya.current = No), - (e = n(c, r)); - } while (co); - } - if ( - ((Ya.current = _o), - (t = null !== eo && null !== eo.next), - (Ja = 0), - (to = eo = Za = null), - (no = !1), - t) - ) - throw Error(o(300)); - return e; - } - function lo() { - var e = { - memoizedState: null, - baseState: null, - baseQueue: null, - queue: null, - next: null, - }; - return ( - null === to ? (Za.memoizedState = to = e) : (to = to.next = e), to - ); - } - function io() { - if (null === eo) { - var e = Za.alternate; - e = null !== e ? e.memoizedState : null; - } else e = eo.next; - var t = null === to ? Za.memoizedState : to.next; - if (null !== t) (to = t), (eo = e); - else { - if (null === e) throw Error(o(310)); - (e = { - memoizedState: (eo = e).memoizedState, - baseState: eo.baseState, - baseQueue: eo.baseQueue, - queue: eo.queue, - next: null, - }), - null === to ? (Za.memoizedState = to = e) : (to = to.next = e); - } - return to; - } - function so(e, t) { - return "function" === typeof t ? t(e) : t; - } - function uo(e) { - var t = io(), - n = t.queue; - if (null === n) throw Error(o(311)); - n.lastRenderedReducer = e; - var c = eo, - r = c.baseQueue, - a = n.pending; - if (null !== a) { - if (null !== r) { - var l = r.next; - (r.next = a.next), (a.next = l); - } - (c.baseQueue = r = a), (n.pending = null); - } - if (null !== r) { - (r = r.next), (c = c.baseState); - var i = (l = a = null), - s = r; - do { - var u = s.lane; - if ((Ja & u) === u) - null !== i && - (i = i.next = { - lane: 0, - action: s.action, - eagerReducer: s.eagerReducer, - eagerState: s.eagerState, - next: null, - }), - (c = s.eagerReducer === e ? s.eagerState : e(c, s.action)); - else { - var h = { - lane: u, - action: s.action, - eagerReducer: s.eagerReducer, - eagerState: s.eagerState, - next: null, - }; - null === i ? ((l = i = h), (a = c)) : (i = i.next = h), - (Za.lanes |= u), - (Il |= u); - } - s = s.next; - } while (null !== s && s !== r); - null === i ? (a = c) : (i.next = l), - uc(c, t.memoizedState) || (jo = !0), - (t.memoizedState = c), - (t.baseState = a), - (t.baseQueue = i), - (n.lastRenderedState = c); - } - return [t.memoizedState, n.dispatch]; - } - function ho(e) { - var t = io(), - n = t.queue; - if (null === n) throw Error(o(311)); - n.lastRenderedReducer = e; - var c = n.dispatch, - r = n.pending, - a = t.memoizedState; - if (null !== r) { - n.pending = null; - var l = (r = r.next); - do { - (a = e(a, l.action)), (l = l.next); - } while (l !== r); - uc(a, t.memoizedState) || (jo = !0), - (t.memoizedState = a), - null === t.baseQueue && (t.baseState = a), - (n.lastRenderedState = a); - } - return [a, c]; - } - function fo(e, t, n) { - var c = t._getVersion; - c = c(t._source); - var r = t._workInProgressVersionPrimary; - if ( - (null !== r - ? (e = r === c) - : ((e = e.mutableReadLanes), - (e = (Ja & e) === e) && - ((t._workInProgressVersionPrimary = c), Ga.push(t))), - e) - ) - return n(t._source); - throw (Ga.push(t), Error(o(350))); - } - function po(e, t, n, c) { - var r = Ol; - if (null === r) throw Error(o(349)); - var a = t._getVersion, - l = a(t._source), - i = Ya.current, - s = i.useState(function () { - return fo(r, t, n); - }), - u = s[1], - h = s[0]; - s = to; - var f = e.memoizedState, - p = f.refs, - v = p.getSnapshot, - d = f.source; - f = f.subscribe; - var m = Za; - return ( - (e.memoizedState = { refs: p, source: t, subscribe: c }), - i.useEffect( - function () { - (p.getSnapshot = n), (p.setSnapshot = u); - var e = a(t._source); - if (!uc(l, e)) { - (e = n(t._source)), - uc(h, e) || - (u(e), - (e = pi(m)), - (r.mutableReadLanes |= e & r.pendingLanes)), - (e = r.mutableReadLanes), - (r.entangledLanes |= e); - for (var c = r.entanglements, o = e; 0 < o; ) { - var i = 31 - Wt(o), - s = 1 << i; - (c[i] |= e), (o &= ~s); - } - } - }, - [n, t, c] - ), - i.useEffect( - function () { - return c(t._source, function () { - var e = p.getSnapshot, - n = p.setSnapshot; - try { - n(e(t._source)); - var c = pi(m); - r.mutableReadLanes |= c & r.pendingLanes; - } catch (a) { - n(function () { - throw a; - }); - } - }); - }, - [t, c] - ), - (uc(v, n) && uc(d, t) && uc(f, c)) || - (((e = { - pending: null, - dispatch: null, - lastRenderedReducer: so, - lastRenderedState: h, - }).dispatch = u = ko.bind(null, Za, e)), - (s.queue = e), - (s.baseQueue = null), - (h = fo(r, t, n)), - (s.memoizedState = s.baseState = h)), - h - ); - } - function vo(e, t, n) { - return po(io(), e, t, n); - } - function mo(e) { - var t = lo(); - return ( - "function" === typeof e && (e = e()), - (t.memoizedState = t.baseState = e), - (e = (e = t.queue = { - pending: null, - dispatch: null, - lastRenderedReducer: so, - lastRenderedState: e, - }).dispatch = ko.bind(null, Za, e)), - [t.memoizedState, e] - ); - } - function zo(e, t, n, c) { - return ( - (e = { tag: e, create: t, destroy: n, deps: c, next: null }), - null === (t = Za.updateQueue) - ? ((t = { lastEffect: null }), - (Za.updateQueue = t), - (t.lastEffect = e.next = e)) - : null === (n = t.lastEffect) - ? (t.lastEffect = e.next = e) - : ((c = n.next), (n.next = e), (e.next = c), (t.lastEffect = e)), - e - ); - } - function yo(e) { - return (e = { current: e }), (lo().memoizedState = e); - } - function go() { - return io().memoizedState; - } - function Mo(e, t, n, c) { - var r = lo(); - (Za.flags |= e), - (r.memoizedState = zo(1 | t, n, void 0, void 0 === c ? null : c)); - } - function Ho(e, t, n, c) { - var r = io(); - c = void 0 === c ? null : c; - var a = void 0; - if (null !== eo) { - var o = eo.memoizedState; - if (((a = o.destroy), null !== c && ao(c, o.deps))) - return void zo(t, n, a, c); - } - (Za.flags |= e), (r.memoizedState = zo(1 | t, n, a, c)); - } - function bo(e, t) { - return Mo(516, 4, e, t); - } - function Vo(e, t) { - return Ho(516, 4, e, t); - } - function Lo(e, t) { - return Ho(4, 2, e, t); - } - function wo(e, t) { - return "function" === typeof t - ? ((e = e()), - t(e), - function () { - t(null); - }) - : null !== t && void 0 !== t - ? ((e = e()), - (t.current = e), - function () { - t.current = null; - }) - : void 0; - } - function Co(e, t, n) { - return ( - (n = null !== n && void 0 !== n ? n.concat([e]) : null), - Ho(4, 2, wo.bind(null, t, e), n) - ); - } - function Eo() {} - function So(e, t) { - var n = io(); - t = void 0 === t ? null : t; - var c = n.memoizedState; - return null !== c && null !== t && ao(t, c[1]) - ? c[0] - : ((n.memoizedState = [e, t]), e); - } - function Ao(e, t) { - var n = io(); - t = void 0 === t ? null : t; - var c = n.memoizedState; - return null !== c && null !== t && ao(t, c[1]) - ? c[0] - : ((e = e()), (n.memoizedState = [e, t]), e); - } - function xo(e, t) { - var n = Wr(); - Kr(98 > n ? 98 : n, function () { - e(!0); - }), - Kr(97 < n ? 97 : n, function () { - var n = Xa.transition; - Xa.transition = 1; - try { - e(!1), t(); - } finally { - Xa.transition = n; - } - }); - } - function ko(e, t, n) { - var c = fi(), - r = pi(e), - a = { - lane: r, - action: n, - eagerReducer: null, - eagerState: null, - next: null, - }, - o = t.pending; - if ( - (null === o ? (a.next = a) : ((a.next = o.next), (o.next = a)), - (t.pending = a), - (o = e.alternate), - e === Za || (null !== o && o === Za)) - ) - co = no = !0; - else { - if ( - 0 === e.lanes && - (null === o || 0 === o.lanes) && - null !== (o = t.lastRenderedReducer) - ) - try { - var l = t.lastRenderedState, - i = o(l, n); - if (((a.eagerReducer = o), (a.eagerState = i), uc(i, l))) - return; - } catch (s) {} - vi(e, r, c); - } - } - var _o = { - readContext: oa, - useCallback: ro, - useContext: ro, - useEffect: ro, - useImperativeHandle: ro, - useLayoutEffect: ro, - useMemo: ro, - useReducer: ro, - useRef: ro, - useState: ro, - useDebugValue: ro, - useDeferredValue: ro, - useTransition: ro, - useMutableSource: ro, - useOpaqueIdentifier: ro, - unstable_isNewReconciler: !1, - }, - Oo = { - readContext: oa, - useCallback: function (e, t) { - return (lo().memoizedState = [e, void 0 === t ? null : t]), e; - }, - useContext: oa, - useEffect: bo, - useImperativeHandle: function (e, t, n) { - return ( - (n = null !== n && void 0 !== n ? n.concat([e]) : null), - Mo(4, 2, wo.bind(null, t, e), n) - ); - }, - useLayoutEffect: function (e, t) { - return Mo(4, 2, e, t); - }, - useMemo: function (e, t) { - var n = lo(); - return ( - (t = void 0 === t ? null : t), - (e = e()), - (n.memoizedState = [e, t]), - e - ); - }, - useReducer: function (e, t, n) { - var c = lo(); - return ( - (t = void 0 !== n ? n(t) : t), - (c.memoizedState = c.baseState = t), - (e = (e = c.queue = { - pending: null, - dispatch: null, - lastRenderedReducer: e, - lastRenderedState: t, - }).dispatch = ko.bind(null, Za, e)), - [c.memoizedState, e] - ); - }, - useRef: yo, - useState: mo, - useDebugValue: Eo, - useDeferredValue: function (e) { - var t = mo(e), - n = t[0], - c = t[1]; - return ( - bo( - function () { - var t = Xa.transition; - Xa.transition = 1; - try { - c(e); - } finally { - Xa.transition = t; - } - }, - [e] - ), - n - ); - }, - useTransition: function () { - var e = mo(!1), - t = e[0]; - return yo((e = xo.bind(null, e[1]))), [e, t]; - }, - useMutableSource: function (e, t, n) { - var c = lo(); - return ( - (c.memoizedState = { - refs: { getSnapshot: t, setSnapshot: null }, - source: e, - subscribe: n, - }), - po(c, e, t, n) - ); - }, - useOpaqueIdentifier: function () { - if (Ia) { - var e = !1, - t = (function (e) { - return { $$typeof: N, toString: e, valueOf: e }; - })(function () { - throw ( - (e || ((e = !0), n("r:" + (Yc++).toString(36))), - Error(o(355))) - ); - }), - n = mo(t)[1]; - return ( - 0 === (2 & Za.mode) && - ((Za.flags |= 516), - zo( - 5, - function () { - n("r:" + (Yc++).toString(36)); - }, - void 0, - null - )), - t - ); - } - return mo((t = "r:" + (Yc++).toString(36))), t; - }, - unstable_isNewReconciler: !1, - }, - Po = { - readContext: oa, - useCallback: So, - useContext: oa, - useEffect: Vo, - useImperativeHandle: Co, - useLayoutEffect: Lo, - useMemo: Ao, - useReducer: uo, - useRef: go, - useState: function () { - return uo(so); - }, - useDebugValue: Eo, - useDeferredValue: function (e) { - var t = uo(so), - n = t[0], - c = t[1]; - return ( - Vo( - function () { - var t = Xa.transition; - Xa.transition = 1; - try { - c(e); - } finally { - Xa.transition = t; - } - }, - [e] - ), - n - ); - }, - useTransition: function () { - var e = uo(so)[0]; - return [go().current, e]; - }, - useMutableSource: vo, - useOpaqueIdentifier: function () { - return uo(so)[0]; - }, - unstable_isNewReconciler: !1, - }, - No = { - readContext: oa, - useCallback: So, - useContext: oa, - useEffect: Vo, - useImperativeHandle: Co, - useLayoutEffect: Lo, - useMemo: Ao, - useReducer: ho, - useRef: go, - useState: function () { - return ho(so); - }, - useDebugValue: Eo, - useDeferredValue: function (e) { - var t = ho(so), - n = t[0], - c = t[1]; - return ( - Vo( - function () { - var t = Xa.transition; - Xa.transition = 1; - try { - c(e); - } finally { - Xa.transition = t; - } - }, - [e] - ), - n - ); - }, - useTransition: function () { - var e = ho(so)[0]; - return [go().current, e]; - }, - useMutableSource: vo, - useOpaqueIdentifier: function () { - return ho(so)[0]; - }, - unstable_isNewReconciler: !1, - }, - To = H.ReactCurrentOwner, - jo = !1; - function Ro(e, t, n, c) { - t.child = null === e ? Ea(t, null, n, c) : Ca(t, e.child, n, c); - } - function Do(e, t, n, c, r) { - n = n.render; - var a = t.ref; - return ( - aa(t, r), - (c = oo(e, t, n, c, a, r)), - null === e || jo - ? ((t.flags |= 1), Ro(e, t, c, r), t.child) - : ((t.updateQueue = e.updateQueue), - (t.flags &= -517), - (e.lanes &= ~r), - al(e, t, r)) - ); - } - function Fo(e, t, n, c, r, a) { - if (null === e) { - var o = n.type; - return "function" !== typeof o || - $i(o) || - void 0 !== o.defaultProps || - null !== n.compare || - void 0 !== n.defaultProps - ? (((e = qi(n.type, null, c, t, t.mode, a)).ref = t.ref), - (e.return = t), - (t.child = e)) - : ((t.tag = 15), (t.type = o), Io(e, t, o, c, r, a)); - } - return ( - (o = e.child), - 0 === (r & a) && - ((r = o.memoizedProps), - (n = null !== (n = n.compare) ? n : fc)(r, c) && e.ref === t.ref) - ? al(e, t, a) - : ((t.flags |= 1), - ((e = Ki(o, c)).ref = t.ref), - (e.return = t), - (t.child = e)) - ); - } - function Io(e, t, n, c, r, a) { - if (null !== e && fc(e.memoizedProps, c) && e.ref === t.ref) { - if (((jo = !1), 0 === (a & r))) - return (t.lanes = e.lanes), al(e, t, a); - 0 !== (16384 & e.flags) && (jo = !0); - } - return Wo(e, t, n, c, a); - } - function Uo(e, t, n) { - var c = t.pendingProps, - r = c.children, - a = null !== e ? e.memoizedState : null; - if ("hidden" === c.mode || "unstable-defer-without-hiding" === c.mode) - if (0 === (4 & t.mode)) - (t.memoizedState = { baseLanes: 0 }), bi(t, n); - else { - if (0 === (1073741824 & n)) - return ( - (e = null !== a ? a.baseLanes | n : n), - (t.lanes = t.childLanes = 1073741824), - (t.memoizedState = { baseLanes: e }), - bi(t, e), - null - ); - (t.memoizedState = { baseLanes: 0 }), - bi(t, null !== a ? a.baseLanes : n); - } - else - null !== a - ? ((c = a.baseLanes | n), (t.memoizedState = null)) - : (c = n), - bi(t, c); - return Ro(e, t, r, n), t.child; - } - function Bo(e, t) { - var n = t.ref; - ((null === e && null !== n) || (null !== e && e.ref !== n)) && - (t.flags |= 128); - } - function Wo(e, t, n, c, r) { - var a = zr(n) ? dr : pr.current; - return ( - (a = mr(t, a)), - aa(t, r), - (n = oo(e, t, n, c, a, r)), - null === e || jo - ? ((t.flags |= 1), Ro(e, t, n, r), t.child) - : ((t.updateQueue = e.updateQueue), - (t.flags &= -517), - (e.lanes &= ~r), - al(e, t, r)) - ); - } - function $o(e, t, n, c, r) { - if (zr(n)) { - var a = !0; - Hr(t); - } else a = !1; - if ((aa(t, r), null === t.stateNode)) - null !== e && - ((e.alternate = null), (t.alternate = null), (t.flags |= 2)), - ga(t, n, c), - Ha(t, n, c, r), - (c = !0); - else if (null === e) { - var o = t.stateNode, - l = t.memoizedProps; - o.props = l; - var i = o.context, - s = n.contextType; - "object" === typeof s && null !== s - ? (s = oa(s)) - : (s = mr(t, (s = zr(n) ? dr : pr.current))); - var u = n.getDerivedStateFromProps, - h = - "function" === typeof u || - "function" === typeof o.getSnapshotBeforeUpdate; - h || - ("function" !== typeof o.UNSAFE_componentWillReceiveProps && - "function" !== typeof o.componentWillReceiveProps) || - ((l !== c || i !== s) && Ma(t, o, c, s)), - (la = !1); - var f = t.memoizedState; - (o.state = f), - pa(t, c, o, r), - (i = t.memoizedState), - l !== c || f !== i || vr.current || la - ? ("function" === typeof u && - (ma(t, n, u, c), (i = t.memoizedState)), - (l = la || ya(t, n, l, c, f, i, s)) - ? (h || - ("function" !== typeof o.UNSAFE_componentWillMount && - "function" !== typeof o.componentWillMount) || - ("function" === typeof o.componentWillMount && - o.componentWillMount(), - "function" === typeof o.UNSAFE_componentWillMount && - o.UNSAFE_componentWillMount()), - "function" === typeof o.componentDidMount && - (t.flags |= 4)) - : ("function" === typeof o.componentDidMount && - (t.flags |= 4), - (t.memoizedProps = c), - (t.memoizedState = i)), - (o.props = c), - (o.state = i), - (o.context = s), - (c = l)) - : ("function" === typeof o.componentDidMount && (t.flags |= 4), - (c = !1)); - } else { - (o = t.stateNode), - sa(e, t), - (l = t.memoizedProps), - (s = t.type === t.elementType ? l : Xr(t.type, l)), - (o.props = s), - (h = t.pendingProps), - (f = o.context), - "object" === typeof (i = n.contextType) && null !== i - ? (i = oa(i)) - : (i = mr(t, (i = zr(n) ? dr : pr.current))); - var p = n.getDerivedStateFromProps; - (u = - "function" === typeof p || - "function" === typeof o.getSnapshotBeforeUpdate) || - ("function" !== typeof o.UNSAFE_componentWillReceiveProps && - "function" !== typeof o.componentWillReceiveProps) || - ((l !== h || f !== i) && Ma(t, o, c, i)), - (la = !1), - (f = t.memoizedState), - (o.state = f), - pa(t, c, o, r); - var v = t.memoizedState; - l !== h || f !== v || vr.current || la - ? ("function" === typeof p && - (ma(t, n, p, c), (v = t.memoizedState)), - (s = la || ya(t, n, s, c, f, v, i)) - ? (u || - ("function" !== typeof o.UNSAFE_componentWillUpdate && - "function" !== typeof o.componentWillUpdate) || - ("function" === typeof o.componentWillUpdate && - o.componentWillUpdate(c, v, i), - "function" === typeof o.UNSAFE_componentWillUpdate && - o.UNSAFE_componentWillUpdate(c, v, i)), - "function" === typeof o.componentDidUpdate && - (t.flags |= 4), - "function" === typeof o.getSnapshotBeforeUpdate && - (t.flags |= 256)) - : ("function" !== typeof o.componentDidUpdate || - (l === e.memoizedProps && f === e.memoizedState) || - (t.flags |= 4), - "function" !== typeof o.getSnapshotBeforeUpdate || - (l === e.memoizedProps && f === e.memoizedState) || - (t.flags |= 256), - (t.memoizedProps = c), - (t.memoizedState = v)), - (o.props = c), - (o.state = v), - (o.context = i), - (c = s)) - : ("function" !== typeof o.componentDidUpdate || - (l === e.memoizedProps && f === e.memoizedState) || - (t.flags |= 4), - "function" !== typeof o.getSnapshotBeforeUpdate || - (l === e.memoizedProps && f === e.memoizedState) || - (t.flags |= 256), - (c = !1)); - } - return Ko(e, t, n, c, a, r); - } - function Ko(e, t, n, c, r, a) { - Bo(e, t); - var o = 0 !== (64 & t.flags); - if (!c && !o) return r && br(t, n, !1), al(e, t, a); - (c = t.stateNode), (To.current = t); - var l = - o && "function" !== typeof n.getDerivedStateFromError - ? null - : c.render(); - return ( - (t.flags |= 1), - null !== e && o - ? ((t.child = Ca(t, e.child, null, a)), - (t.child = Ca(t, null, l, a))) - : Ro(e, t, l, a), - (t.memoizedState = c.state), - r && br(t, n, !0), - t.child - ); - } - function qo(e) { - var t = e.stateNode; - t.pendingContext - ? gr(0, t.pendingContext, t.pendingContext !== t.context) - : t.context && gr(0, t.context, !1), - Oa(e, t.containerInfo); - } - var Go, - Qo, - Yo, - Xo = { dehydrated: null, retryLane: 0 }; - function Jo(e, t, n) { - var c, - r = t.pendingProps, - a = ja.current, - o = !1; - return ( - (c = 0 !== (64 & t.flags)) || - (c = (null === e || null !== e.memoizedState) && 0 !== (2 & a)), - c - ? ((o = !0), (t.flags &= -65)) - : (null !== e && null === e.memoizedState) || - void 0 === r.fallback || - !0 === r.unstable_avoidThisFallback || - (a |= 1), - hr(ja, 1 & a), - null === e - ? (void 0 !== r.fallback && Wa(t), - (e = r.children), - (a = r.fallback), - o - ? ((e = Zo(t, e, a, n)), - (t.child.memoizedState = { baseLanes: n }), - (t.memoizedState = Xo), - e) - : "number" === typeof r.unstable_expectedLoadTime - ? ((e = Zo(t, e, a, n)), - (t.child.memoizedState = { baseLanes: n }), - (t.memoizedState = Xo), - (t.lanes = 33554432), - e) - : (((n = Qi( - { mode: "visible", children: e }, - t.mode, - n, - null - )).return = t), - (t.child = n))) - : (e.memoizedState, - o - ? ((r = tl(e, t, r.children, r.fallback, n)), - (o = t.child), - (a = e.child.memoizedState), - (o.memoizedState = - null === a - ? { baseLanes: n } - : { baseLanes: a.baseLanes | n }), - (o.childLanes = e.childLanes & ~n), - (t.memoizedState = Xo), - r) - : ((n = el(e, t, r.children, n)), - (t.memoizedState = null), - n)) - ); - } - function Zo(e, t, n, c) { - var r = e.mode, - a = e.child; - return ( - (t = { mode: "hidden", children: t }), - 0 === (2 & r) && null !== a - ? ((a.childLanes = 0), (a.pendingProps = t)) - : (a = Qi(t, r, 0, null)), - (n = Gi(n, r, c, null)), - (a.return = e), - (n.return = e), - (a.sibling = n), - (e.child = a), - n - ); - } - function el(e, t, n, c) { - var r = e.child; - return ( - (e = r.sibling), - (n = Ki(r, { mode: "visible", children: n })), - 0 === (2 & t.mode) && (n.lanes = c), - (n.return = t), - (n.sibling = null), - null !== e && - ((e.nextEffect = null), - (e.flags = 8), - (t.firstEffect = t.lastEffect = e)), - (t.child = n) - ); - } - function tl(e, t, n, c, r) { - var a = t.mode, - o = e.child; - e = o.sibling; - var l = { mode: "hidden", children: n }; - return ( - 0 === (2 & a) && t.child !== o - ? (((n = t.child).childLanes = 0), - (n.pendingProps = l), - null !== (o = n.lastEffect) - ? ((t.firstEffect = n.firstEffect), - (t.lastEffect = o), - (o.nextEffect = null)) - : (t.firstEffect = t.lastEffect = null)) - : (n = Ki(o, l)), - null !== e ? (c = Ki(e, c)) : ((c = Gi(c, a, r, null)).flags |= 2), - (c.return = t), - (n.return = t), - (n.sibling = c), - (t.child = n), - c - ); - } - function nl(e, t) { - e.lanes |= t; - var n = e.alternate; - null !== n && (n.lanes |= t), ra(e.return, t); - } - function cl(e, t, n, c, r, a) { - var o = e.memoizedState; - null === o - ? (e.memoizedState = { - isBackwards: t, - rendering: null, - renderingStartTime: 0, - last: c, - tail: n, - tailMode: r, - lastEffect: a, - }) - : ((o.isBackwards = t), - (o.rendering = null), - (o.renderingStartTime = 0), - (o.last = c), - (o.tail = n), - (o.tailMode = r), - (o.lastEffect = a)); - } - function rl(e, t, n) { - var c = t.pendingProps, - r = c.revealOrder, - a = c.tail; - if ((Ro(e, t, c.children, n), 0 !== (2 & (c = ja.current)))) - (c = (1 & c) | 2), (t.flags |= 64); - else { - if (null !== e && 0 !== (64 & e.flags)) - e: for (e = t.child; null !== e; ) { - if (13 === e.tag) null !== e.memoizedState && nl(e, n); - else if (19 === e.tag) nl(e, n); - else if (null !== e.child) { - (e.child.return = e), (e = e.child); - continue; - } - if (e === t) break e; - for (; null === e.sibling; ) { - if (null === e.return || e.return === t) break e; - e = e.return; - } - (e.sibling.return = e.return), (e = e.sibling); - } - c &= 1; - } - if ((hr(ja, c), 0 === (2 & t.mode))) t.memoizedState = null; - else - switch (r) { - case "forwards": - for (n = t.child, r = null; null !== n; ) - null !== (e = n.alternate) && null === Ra(e) && (r = n), - (n = n.sibling); - null === (n = r) - ? ((r = t.child), (t.child = null)) - : ((r = n.sibling), (n.sibling = null)), - cl(t, !1, r, n, a, t.lastEffect); - break; - case "backwards": - for (n = null, r = t.child, t.child = null; null !== r; ) { - if (null !== (e = r.alternate) && null === Ra(e)) { - t.child = r; - break; - } - (e = r.sibling), (r.sibling = n), (n = r), (r = e); - } - cl(t, !0, n, null, a, t.lastEffect); - break; - case "together": - cl(t, !1, null, null, void 0, t.lastEffect); - break; - default: - t.memoizedState = null; - } - return t.child; - } - function al(e, t, n) { - if ( - (null !== e && (t.dependencies = e.dependencies), - (Il |= t.lanes), - 0 !== (n & t.childLanes)) - ) { - if (null !== e && t.child !== e.child) throw Error(o(153)); - if (null !== t.child) { - for ( - n = Ki((e = t.child), e.pendingProps), - t.child = n, - n.return = t; - null !== e.sibling; - - ) - (e = e.sibling), - ((n = n.sibling = Ki(e, e.pendingProps)).return = t); - n.sibling = null; - } - return t.child; - } - return null; - } - function ol(e, t) { - if (!Ia) - switch (e.tailMode) { - case "hidden": - t = e.tail; - for (var n = null; null !== t; ) - null !== t.alternate && (n = t), (t = t.sibling); - null === n ? (e.tail = null) : (n.sibling = null); - break; - case "collapsed": - n = e.tail; - for (var c = null; null !== n; ) - null !== n.alternate && (c = n), (n = n.sibling); - null === c - ? t || null === e.tail - ? (e.tail = null) - : (e.tail.sibling = null) - : (c.sibling = null); - } - } - function ll(e, t, n) { - var c = t.pendingProps; - switch (t.tag) { - case 2: - case 16: - case 15: - case 0: - case 11: - case 7: - case 8: - case 12: - case 9: - case 14: - return null; - case 1: - case 17: - return zr(t.type) && yr(), null; - case 3: - return ( - Pa(), - ur(vr), - ur(pr), - Qa(), - (c = t.stateNode).pendingContext && - ((c.context = c.pendingContext), (c.pendingContext = null)), - (null !== e && null !== e.child) || - (Ka(t) ? (t.flags |= 4) : c.hydrate || (t.flags |= 256)), - null - ); - case 5: - Ta(t); - var a = _a(ka.current); - if (((n = t.type), null !== e && null != t.stateNode)) - Qo(e, t, n, c), e.ref !== t.ref && (t.flags |= 128); - else { - if (!c) { - if (null === t.stateNode) throw Error(o(166)); - return null; - } - if (((e = _a(Aa.current)), Ka(t))) { - (c = t.stateNode), (n = t.type); - var l = t.memoizedProps; - switch (((c[Jc] = t), (c[Zc] = l), n)) { - case "dialog": - xc("cancel", c), xc("close", c); - break; - case "iframe": - case "object": - case "embed": - xc("load", c); - break; - case "video": - case "audio": - for (e = 0; e < Cc.length; e++) xc(Cc[e], c); - break; - case "source": - xc("error", c); - break; - case "img": - case "image": - case "link": - xc("error", c), xc("load", c); - break; - case "details": - xc("toggle", c); - break; - case "input": - ee(c, l), xc("invalid", c); - break; - case "select": - (c._wrapperState = { wasMultiple: !!l.multiple }), - xc("invalid", c); - break; - case "textarea": - ie(c, l), xc("invalid", c); - } - for (var s in (Le(n, l), (e = null), l)) - l.hasOwnProperty(s) && - ((a = l[s]), - "children" === s - ? "string" === typeof a - ? c.textContent !== a && (e = ["children", a]) - : "number" === typeof a && - c.textContent !== "" + a && - (e = ["children", "" + a]) - : i.hasOwnProperty(s) && - null != a && - "onScroll" === s && - xc("scroll", c)); - switch (n) { - case "input": - Y(c), ce(c, l, !0); - break; - case "textarea": - Y(c), ue(c); - break; - case "select": - case "option": - break; - default: - "function" === typeof l.onClick && (c.onclick = Fc); - } - (c = e), (t.updateQueue = c), null !== c && (t.flags |= 4); - } else { - switch ( - ((s = 9 === a.nodeType ? a : a.ownerDocument), - e === he && (e = pe(n)), - e === he - ? "script" === n - ? (((e = s.createElement("div")).innerHTML = - ""), - (e = e.removeChild(e.firstChild))) - : "string" === typeof c.is - ? (e = s.createElement(n, { is: c.is })) - : ((e = s.createElement(n)), - "select" === n && - ((s = e), - c.multiple - ? (s.multiple = !0) - : c.size && (s.size = c.size))) - : (e = s.createElementNS(e, n)), - (e[Jc] = t), - (e[Zc] = c), - Go(e, t), - (t.stateNode = e), - (s = we(n, c)), - n) - ) { - case "dialog": - xc("cancel", e), xc("close", e), (a = c); - break; - case "iframe": - case "object": - case "embed": - xc("load", e), (a = c); - break; - case "video": - case "audio": - for (a = 0; a < Cc.length; a++) xc(Cc[a], e); - a = c; - break; - case "source": - xc("error", e), (a = c); - break; - case "img": - case "image": - case "link": - xc("error", e), xc("load", e), (a = c); - break; - case "details": - xc("toggle", e), (a = c); - break; - case "input": - ee(e, c), (a = Z(e, c)), xc("invalid", e); - break; - case "option": - a = ae(e, c); - break; - case "select": - (e._wrapperState = { wasMultiple: !!c.multiple }), - (a = r({}, c, { value: void 0 })), - xc("invalid", e); - break; - case "textarea": - ie(e, c), (a = le(e, c)), xc("invalid", e); - break; - default: - a = c; - } - Le(n, a); - var u = a; - for (l in u) - if (u.hasOwnProperty(l)) { - var h = u[l]; - "style" === l - ? be(e, h) - : "dangerouslySetInnerHTML" === l - ? null != (h = h ? h.__html : void 0) && ze(e, h) - : "children" === l - ? "string" === typeof h - ? ("textarea" !== n || "" !== h) && ye(e, h) - : "number" === typeof h && ye(e, "" + h) - : "suppressContentEditableWarning" !== l && - "suppressHydrationWarning" !== l && - "autoFocus" !== l && - (i.hasOwnProperty(l) - ? null != h && "onScroll" === l && xc("scroll", e) - : null != h && M(e, l, h, s)); - } - switch (n) { - case "input": - Y(e), ce(e, c, !1); - break; - case "textarea": - Y(e), ue(e); - break; - case "option": - null != c.value && - e.setAttribute("value", "" + G(c.value)); - break; - case "select": - (e.multiple = !!c.multiple), - null != (l = c.value) - ? oe(e, !!c.multiple, l, !1) - : null != c.defaultValue && - oe(e, !!c.multiple, c.defaultValue, !0); - break; - default: - "function" === typeof a.onClick && (e.onclick = Fc); - } - Bc(n, c) && (t.flags |= 4); - } - null !== t.ref && (t.flags |= 128); - } - return null; - case 6: - if (e && null != t.stateNode) Yo(0, t, e.memoizedProps, c); - else { - if ("string" !== typeof c && null === t.stateNode) - throw Error(o(166)); - (n = _a(ka.current)), - _a(Aa.current), - Ka(t) - ? ((c = t.stateNode), - (n = t.memoizedProps), - (c[Jc] = t), - c.nodeValue !== n && (t.flags |= 4)) - : (((c = (9 === n.nodeType - ? n - : n.ownerDocument - ).createTextNode(c))[Jc] = t), - (t.stateNode = c)); - } - return null; - case 13: - return ( - ur(ja), - (c = t.memoizedState), - 0 !== (64 & t.flags) - ? ((t.lanes = n), t) - : ((c = null !== c), - (n = !1), - null === e - ? void 0 !== t.memoizedProps.fallback && Ka(t) - : (n = null !== e.memoizedState), - c && - !n && - 0 !== (2 & t.mode) && - ((null === e && - !0 !== t.memoizedProps.unstable_avoidThisFallback) || - 0 !== (1 & ja.current) - ? 0 === Rl && (Rl = 3) - : ((0 !== Rl && 3 !== Rl) || (Rl = 4), - null === Ol || - (0 === (134217727 & Il) && - 0 === (134217727 & Ul)) || - yi(Ol, Nl))), - (c || n) && (t.flags |= 4), - null) - ); - case 4: - return Pa(), null === e && _c(t.stateNode.containerInfo), null; - case 10: - return ca(t), null; - case 19: - if ((ur(ja), null === (c = t.memoizedState))) return null; - if (((l = 0 !== (64 & t.flags)), null === (s = c.rendering))) - if (l) ol(c, !1); - else { - if (0 !== Rl || (null !== e && 0 !== (64 & e.flags))) - for (e = t.child; null !== e; ) { - if (null !== (s = Ra(e))) { - for ( - t.flags |= 64, - ol(c, !1), - null !== (l = s.updateQueue) && - ((t.updateQueue = l), (t.flags |= 4)), - null === c.lastEffect && (t.firstEffect = null), - t.lastEffect = c.lastEffect, - c = n, - n = t.child; - null !== n; - - ) - (e = c), - ((l = n).flags &= 2), - (l.nextEffect = null), - (l.firstEffect = null), - (l.lastEffect = null), - null === (s = l.alternate) - ? ((l.childLanes = 0), - (l.lanes = e), - (l.child = null), - (l.memoizedProps = null), - (l.memoizedState = null), - (l.updateQueue = null), - (l.dependencies = null), - (l.stateNode = null)) - : ((l.childLanes = s.childLanes), - (l.lanes = s.lanes), - (l.child = s.child), - (l.memoizedProps = s.memoizedProps), - (l.memoizedState = s.memoizedState), - (l.updateQueue = s.updateQueue), - (l.type = s.type), - (e = s.dependencies), - (l.dependencies = - null === e - ? null - : { - lanes: e.lanes, - firstContext: e.firstContext, - })), - (n = n.sibling); - return hr(ja, (1 & ja.current) | 2), t.child; - } - e = e.sibling; - } - null !== c.tail && - Br() > Kl && - ((t.flags |= 64), - (l = !0), - ol(c, !1), - (t.lanes = 33554432)); - } - else { - if (!l) - if (null !== (e = Ra(s))) { - if ( - ((t.flags |= 64), - (l = !0), - null !== (n = e.updateQueue) && - ((t.updateQueue = n), (t.flags |= 4)), - ol(c, !0), - null === c.tail && - "hidden" === c.tailMode && - !s.alternate && - !Ia) - ) - return ( - null !== (t = t.lastEffect = c.lastEffect) && - (t.nextEffect = null), - null - ); - } else - 2 * Br() - c.renderingStartTime > Kl && - 1073741824 !== n && - ((t.flags |= 64), - (l = !0), - ol(c, !1), - (t.lanes = 33554432)); - c.isBackwards - ? ((s.sibling = t.child), (t.child = s)) - : (null !== (n = c.last) ? (n.sibling = s) : (t.child = s), - (c.last = s)); - } - return null !== c.tail - ? ((n = c.tail), - (c.rendering = n), - (c.tail = n.sibling), - (c.lastEffect = t.lastEffect), - (c.renderingStartTime = Br()), - (n.sibling = null), - (t = ja.current), - hr(ja, l ? (1 & t) | 2 : 1 & t), - n) - : null; - case 23: - case 24: - return ( - Vi(), - null !== e && - (null !== e.memoizedState) !== (null !== t.memoizedState) && - "unstable-defer-without-hiding" !== c.mode && - (t.flags |= 4), - null - ); - } - throw Error(o(156, t.tag)); - } - function il(e) { - switch (e.tag) { - case 1: - zr(e.type) && yr(); - var t = e.flags; - return 4096 & t ? ((e.flags = (-4097 & t) | 64), e) : null; - case 3: - if ((Pa(), ur(vr), ur(pr), Qa(), 0 !== (64 & (t = e.flags)))) - throw Error(o(285)); - return (e.flags = (-4097 & t) | 64), e; - case 5: - return Ta(e), null; - case 13: - return ( - ur(ja), - 4096 & (t = e.flags) ? ((e.flags = (-4097 & t) | 64), e) : null - ); - case 19: - return ur(ja), null; - case 4: - return Pa(), null; - case 10: - return ca(e), null; - case 23: - case 24: - return Vi(), null; - default: - return null; - } - } - function sl(e, t) { - try { - var n = "", - c = t; - do { - (n += K(c)), (c = c.return); - } while (c); - var r = n; - } catch (a) { - r = "\nError generating stack: " + a.message + "\n" + a.stack; - } - return { value: e, source: t, stack: r }; - } - function ul(e, t) { - try { - console.error(t.value); - } catch (n) { - setTimeout(function () { - throw n; - }); - } - } - (Go = function (e, t) { - for (var n = t.child; null !== n; ) { - if (5 === n.tag || 6 === n.tag) e.appendChild(n.stateNode); - else if (4 !== n.tag && null !== n.child) { - (n.child.return = n), (n = n.child); - continue; - } - if (n === t) break; - for (; null === n.sibling; ) { - if (null === n.return || n.return === t) return; - n = n.return; - } - (n.sibling.return = n.return), (n = n.sibling); - } - }), - (Qo = function (e, t, n, c) { - var a = e.memoizedProps; - if (a !== c) { - (e = t.stateNode), _a(Aa.current); - var o, - l = null; - switch (n) { - case "input": - (a = Z(e, a)), (c = Z(e, c)), (l = []); - break; - case "option": - (a = ae(e, a)), (c = ae(e, c)), (l = []); - break; - case "select": - (a = r({}, a, { value: void 0 })), - (c = r({}, c, { value: void 0 })), - (l = []); - break; - case "textarea": - (a = le(e, a)), (c = le(e, c)), (l = []); - break; - default: - "function" !== typeof a.onClick && - "function" === typeof c.onClick && - (e.onclick = Fc); - } - for (h in (Le(n, c), (n = null), a)) - if (!c.hasOwnProperty(h) && a.hasOwnProperty(h) && null != a[h]) - if ("style" === h) { - var s = a[h]; - for (o in s) - s.hasOwnProperty(o) && (n || (n = {}), (n[o] = "")); - } else - "dangerouslySetInnerHTML" !== h && - "children" !== h && - "suppressContentEditableWarning" !== h && - "suppressHydrationWarning" !== h && - "autoFocus" !== h && - (i.hasOwnProperty(h) - ? l || (l = []) - : (l = l || []).push(h, null)); - for (h in c) { - var u = c[h]; - if ( - ((s = null != a ? a[h] : void 0), - c.hasOwnProperty(h) && u !== s && (null != u || null != s)) - ) - if ("style" === h) - if (s) { - for (o in s) - !s.hasOwnProperty(o) || - (u && u.hasOwnProperty(o)) || - (n || (n = {}), (n[o] = "")); - for (o in u) - u.hasOwnProperty(o) && - s[o] !== u[o] && - (n || (n = {}), (n[o] = u[o])); - } else n || (l || (l = []), l.push(h, n)), (n = u); - else - "dangerouslySetInnerHTML" === h - ? ((u = u ? u.__html : void 0), - (s = s ? s.__html : void 0), - null != u && s !== u && (l = l || []).push(h, u)) - : "children" === h - ? ("string" !== typeof u && "number" !== typeof u) || - (l = l || []).push(h, "" + u) - : "suppressContentEditableWarning" !== h && - "suppressHydrationWarning" !== h && - (i.hasOwnProperty(h) - ? (null != u && "onScroll" === h && xc("scroll", e), - l || s === u || (l = [])) - : "object" === typeof u && - null !== u && - u.$$typeof === N - ? u.toString() - : (l = l || []).push(h, u)); - } - n && (l = l || []).push("style", n); - var h = l; - (t.updateQueue = h) && (t.flags |= 4); - } - }), - (Yo = function (e, t, n, c) { - n !== c && (t.flags |= 4); - }); - var hl = "function" === typeof WeakMap ? WeakMap : Map; - function fl(e, t, n) { - ((n = ua(-1, n)).tag = 3), (n.payload = { element: null }); - var c = t.value; - return ( - (n.callback = function () { - Yl || ((Yl = !0), (Xl = c)), ul(0, t); - }), - n - ); - } - function pl(e, t, n) { - (n = ua(-1, n)).tag = 3; - var c = e.type.getDerivedStateFromError; - if ("function" === typeof c) { - var r = t.value; - n.payload = function () { - return ul(0, t), c(r); - }; - } - var a = e.stateNode; - return ( - null !== a && - "function" === typeof a.componentDidCatch && - (n.callback = function () { - "function" !== typeof c && - (null === Jl ? (Jl = new Set([this])) : Jl.add(this), - ul(0, t)); - var e = t.stack; - this.componentDidCatch(t.value, { - componentStack: null !== e ? e : "", - }); - }), - n - ); - } - var vl = "function" === typeof WeakSet ? WeakSet : Set; - function dl(e) { - var t = e.ref; - if (null !== t) - if ("function" === typeof t) - try { - t(null); - } catch (n) { - Fi(e, n); - } - else t.current = null; - } - function ml(e, t) { - switch (t.tag) { - case 0: - case 11: - case 15: - case 22: - case 5: - case 6: - case 4: - case 17: - return; - case 1: - if (256 & t.flags && null !== e) { - var n = e.memoizedProps, - c = e.memoizedState; - (t = (e = t.stateNode).getSnapshotBeforeUpdate( - t.elementType === t.type ? n : Xr(t.type, n), - c - )), - (e.__reactInternalSnapshotBeforeUpdate = t); - } - return; - case 3: - return void (256 & t.flags && qc(t.stateNode.containerInfo)); - } - throw Error(o(163)); - } - function zl(e, t, n) { - switch (n.tag) { - case 0: - case 11: - case 15: - case 22: - if ( - null !== - (t = null !== (t = n.updateQueue) ? t.lastEffect : null) - ) { - e = t = t.next; - do { - if (3 === (3 & e.tag)) { - var c = e.create; - e.destroy = c(); - } - e = e.next; - } while (e !== t); - } - if ( - null !== - (t = null !== (t = n.updateQueue) ? t.lastEffect : null) - ) { - e = t = t.next; - do { - var r = e; - (c = r.next), - 0 !== (4 & (r = r.tag)) && - 0 !== (1 & r) && - (ji(n, e), Ti(n, e)), - (e = c); - } while (e !== t); - } - return; - case 1: - return ( - (e = n.stateNode), - 4 & n.flags && - (null === t - ? e.componentDidMount() - : ((c = - n.elementType === n.type - ? t.memoizedProps - : Xr(n.type, t.memoizedProps)), - e.componentDidUpdate( - c, - t.memoizedState, - e.__reactInternalSnapshotBeforeUpdate - ))), - void (null !== (t = n.updateQueue) && va(n, t, e)) - ); - case 3: - if (null !== (t = n.updateQueue)) { - if (((e = null), null !== n.child)) - switch (n.child.tag) { - case 5: - case 1: - e = n.child.stateNode; - } - va(n, t, e); - } - return; - case 5: - return ( - (e = n.stateNode), - void ( - null === t && - 4 & n.flags && - Bc(n.type, n.memoizedProps) && - e.focus() - ) - ); - case 6: - case 4: - case 12: - case 19: - case 17: - case 20: - case 21: - case 23: - case 24: - return; - case 13: - return void ( - null === n.memoizedState && - ((n = n.alternate), - null !== n && - ((n = n.memoizedState), - null !== n && ((n = n.dehydrated), null !== n && bt(n)))) - ); - } - throw Error(o(163)); - } - function yl(e, t) { - for (var n = e; ; ) { - if (5 === n.tag) { - var c = n.stateNode; - if (t) - "function" === typeof (c = c.style).setProperty - ? c.setProperty("display", "none", "important") - : (c.display = "none"); - else { - c = n.stateNode; - var r = n.memoizedProps.style; - (r = - void 0 !== r && null !== r && r.hasOwnProperty("display") - ? r.display - : null), - (c.style.display = He("display", r)); - } - } else if (6 === n.tag) - n.stateNode.nodeValue = t ? "" : n.memoizedProps; - else if ( - ((23 !== n.tag && 24 !== n.tag) || - null === n.memoizedState || - n === e) && - null !== n.child - ) { - (n.child.return = n), (n = n.child); - continue; - } - if (n === e) break; - for (; null === n.sibling; ) { - if (null === n.return || n.return === e) return; - n = n.return; - } - (n.sibling.return = n.return), (n = n.sibling); - } - } - function gl(e, t) { - if (Lr && "function" === typeof Lr.onCommitFiberUnmount) - try { - Lr.onCommitFiberUnmount(Vr, t); - } catch (a) {} - switch (t.tag) { - case 0: - case 11: - case 14: - case 15: - case 22: - if (null !== (e = t.updateQueue) && null !== (e = e.lastEffect)) { - var n = (e = e.next); - do { - var c = n, - r = c.destroy; - if (((c = c.tag), void 0 !== r)) - if (0 !== (4 & c)) ji(t, n); - else { - c = t; - try { - r(); - } catch (a) { - Fi(c, a); - } - } - n = n.next; - } while (n !== e); - } - break; - case 1: - if ( - (dl(t), - "function" === typeof (e = t.stateNode).componentWillUnmount) - ) - try { - (e.props = t.memoizedProps), - (e.state = t.memoizedState), - e.componentWillUnmount(); - } catch (a) { - Fi(t, a); - } - break; - case 5: - dl(t); - break; - case 4: - wl(e, t); - } - } - function Ml(e) { - (e.alternate = null), - (e.child = null), - (e.dependencies = null), - (e.firstEffect = null), - (e.lastEffect = null), - (e.memoizedProps = null), - (e.memoizedState = null), - (e.pendingProps = null), - (e.return = null), - (e.updateQueue = null); - } - function Hl(e) { - return 5 === e.tag || 3 === e.tag || 4 === e.tag; - } - function bl(e) { - e: { - for (var t = e.return; null !== t; ) { - if (Hl(t)) break e; - t = t.return; - } - throw Error(o(160)); - } - var n = t; - switch (((t = n.stateNode), n.tag)) { - case 5: - var c = !1; - break; - case 3: - case 4: - (t = t.containerInfo), (c = !0); - break; - default: - throw Error(o(161)); - } - 16 & n.flags && (ye(t, ""), (n.flags &= -17)); - e: t: for (n = e; ; ) { - for (; null === n.sibling; ) { - if (null === n.return || Hl(n.return)) { - n = null; - break e; - } - n = n.return; - } - for ( - n.sibling.return = n.return, n = n.sibling; - 5 !== n.tag && 6 !== n.tag && 18 !== n.tag; - - ) { - if (2 & n.flags) continue t; - if (null === n.child || 4 === n.tag) continue t; - (n.child.return = n), (n = n.child); - } - if (!(2 & n.flags)) { - n = n.stateNode; - break e; - } - } - c ? Vl(e, n, t) : Ll(e, n, t); - } - function Vl(e, t, n) { - var c = e.tag, - r = 5 === c || 6 === c; - if (r) - (e = r ? e.stateNode : e.stateNode.instance), - t - ? 8 === n.nodeType - ? n.parentNode.insertBefore(e, t) - : n.insertBefore(e, t) - : (8 === n.nodeType - ? (t = n.parentNode).insertBefore(e, n) - : (t = n).appendChild(e), - (null !== (n = n._reactRootContainer) && void 0 !== n) || - null !== t.onclick || - (t.onclick = Fc)); - else if (4 !== c && null !== (e = e.child)) - for (Vl(e, t, n), e = e.sibling; null !== e; ) - Vl(e, t, n), (e = e.sibling); - } - function Ll(e, t, n) { - var c = e.tag, - r = 5 === c || 6 === c; - if (r) - (e = r ? e.stateNode : e.stateNode.instance), - t ? n.insertBefore(e, t) : n.appendChild(e); - else if (4 !== c && null !== (e = e.child)) - for (Ll(e, t, n), e = e.sibling; null !== e; ) - Ll(e, t, n), (e = e.sibling); - } - function wl(e, t) { - for (var n, c, r = t, a = !1; ; ) { - if (!a) { - a = r.return; - e: for (;;) { - if (null === a) throw Error(o(160)); - switch (((n = a.stateNode), a.tag)) { - case 5: - c = !1; - break e; - case 3: - case 4: - (n = n.containerInfo), (c = !0); - break e; - } - a = a.return; - } - a = !0; - } - if (5 === r.tag || 6 === r.tag) { - e: for (var l = e, i = r, s = i; ; ) - if ((gl(l, s), null !== s.child && 4 !== s.tag)) - (s.child.return = s), (s = s.child); - else { - if (s === i) break e; - for (; null === s.sibling; ) { - if (null === s.return || s.return === i) break e; - s = s.return; - } - (s.sibling.return = s.return), (s = s.sibling); - } - c - ? ((l = n), - (i = r.stateNode), - 8 === l.nodeType - ? l.parentNode.removeChild(i) - : l.removeChild(i)) - : n.removeChild(r.stateNode); - } else if (4 === r.tag) { - if (null !== r.child) { - (n = r.stateNode.containerInfo), - (c = !0), - (r.child.return = r), - (r = r.child); - continue; - } - } else if ((gl(e, r), null !== r.child)) { - (r.child.return = r), (r = r.child); - continue; - } - if (r === t) break; - for (; null === r.sibling; ) { - if (null === r.return || r.return === t) return; - 4 === (r = r.return).tag && (a = !1); - } - (r.sibling.return = r.return), (r = r.sibling); - } - } - function Cl(e, t) { - switch (t.tag) { - case 0: - case 11: - case 14: - case 15: - case 22: - var n = t.updateQueue; - if (null !== (n = null !== n ? n.lastEffect : null)) { - var c = (n = n.next); - do { - 3 === (3 & c.tag) && - ((e = c.destroy), - (c.destroy = void 0), - void 0 !== e && e()), - (c = c.next); - } while (c !== n); - } - return; - case 1: - case 12: - case 17: - return; - case 5: - if (null != (n = t.stateNode)) { - c = t.memoizedProps; - var r = null !== e ? e.memoizedProps : c; - e = t.type; - var a = t.updateQueue; - if (((t.updateQueue = null), null !== a)) { - for ( - n[Zc] = c, - "input" === e && - "radio" === c.type && - null != c.name && - te(n, c), - we(e, r), - t = we(e, c), - r = 0; - r < a.length; - r += 2 - ) { - var l = a[r], - i = a[r + 1]; - "style" === l - ? be(n, i) - : "dangerouslySetInnerHTML" === l - ? ze(n, i) - : "children" === l - ? ye(n, i) - : M(n, l, i, t); - } - switch (e) { - case "input": - ne(n, c); - break; - case "textarea": - se(n, c); - break; - case "select": - (e = n._wrapperState.wasMultiple), - (n._wrapperState.wasMultiple = !!c.multiple), - null != (a = c.value) - ? oe(n, !!c.multiple, a, !1) - : e !== !!c.multiple && - (null != c.defaultValue - ? oe(n, !!c.multiple, c.defaultValue, !0) - : oe(n, !!c.multiple, c.multiple ? [] : "", !1)); - } - } - } - return; - case 6: - if (null === t.stateNode) throw Error(o(162)); - return void (t.stateNode.nodeValue = t.memoizedProps); - case 3: - return void ( - (n = t.stateNode).hydrate && - ((n.hydrate = !1), bt(n.containerInfo)) - ); - case 13: - return ( - null !== t.memoizedState && (($l = Br()), yl(t.child, !0)), - void El(t) - ); - case 19: - return void El(t); - case 23: - case 24: - return void yl(t, null !== t.memoizedState); - } - throw Error(o(163)); - } - function El(e) { - var t = e.updateQueue; - if (null !== t) { - e.updateQueue = null; - var n = e.stateNode; - null === n && (n = e.stateNode = new vl()), - t.forEach(function (t) { - var c = Ui.bind(null, e, t); - n.has(t) || (n.add(t), t.then(c, c)); - }); - } - } - function Sl(e, t) { - return ( - null !== e && - (null === (e = e.memoizedState) || null !== e.dehydrated) && - null !== (t = t.memoizedState) && - null === t.dehydrated - ); - } - var Al = Math.ceil, - xl = H.ReactCurrentDispatcher, - kl = H.ReactCurrentOwner, - _l = 0, - Ol = null, - Pl = null, - Nl = 0, - Tl = 0, - jl = sr(0), - Rl = 0, - Dl = null, - Fl = 0, - Il = 0, - Ul = 0, - Bl = 0, - Wl = null, - $l = 0, - Kl = 1 / 0; - function ql() { - Kl = Br() + 500; - } - var Gl, - Ql = null, - Yl = !1, - Xl = null, - Jl = null, - Zl = !1, - ei = null, - ti = 90, - ni = [], - ci = [], - ri = null, - ai = 0, - oi = null, - li = -1, - ii = 0, - si = 0, - ui = null, - hi = !1; - function fi() { - return 0 !== (48 & _l) ? Br() : -1 !== li ? li : (li = Br()); - } - function pi(e) { - if (0 === (2 & (e = e.mode))) return 1; - if (0 === (4 & e)) return 99 === Wr() ? 1 : 2; - if ((0 === ii && (ii = Fl), 0 !== Yr.transition)) { - 0 !== si && (si = null !== Wl ? Wl.pendingLanes : 0), (e = ii); - var t = 4186112 & ~si; - return ( - 0 === (t &= -t) && - 0 === (t = (e = 4186112 & ~e) & -e) && - (t = 8192), - t - ); - } - return ( - (e = Wr()), - 0 !== (4 & _l) && 98 === e - ? (e = Ft(12, ii)) - : (e = Ft( - (e = (function (e) { - switch (e) { - case 99: - return 15; - case 98: - return 10; - case 97: - case 96: - return 8; - case 95: - return 2; - default: - return 0; - } - })(e)), - ii - )), - e - ); - } - function vi(e, t, n) { - if (50 < ai) throw ((ai = 0), (oi = null), Error(o(185))); - if (null === (e = di(e, t))) return null; - Bt(e, t, n), e === Ol && ((Ul |= t), 4 === Rl && yi(e, Nl)); - var c = Wr(); - 1 === t - ? 0 !== (8 & _l) && 0 === (48 & _l) - ? gi(e) - : (mi(e, n), 0 === _l && (ql(), Gr())) - : (0 === (4 & _l) || - (98 !== c && 99 !== c) || - (null === ri ? (ri = new Set([e])) : ri.add(e)), - mi(e, n)), - (Wl = e); - } - function di(e, t) { - e.lanes |= t; - var n = e.alternate; - for (null !== n && (n.lanes |= t), n = e, e = e.return; null !== e; ) - (e.childLanes |= t), - null !== (n = e.alternate) && (n.childLanes |= t), - (n = e), - (e = e.return); - return 3 === n.tag ? n.stateNode : null; - } - function mi(e, t) { - for ( - var n = e.callbackNode, - c = e.suspendedLanes, - r = e.pingedLanes, - a = e.expirationTimes, - l = e.pendingLanes; - 0 < l; - - ) { - var i = 31 - Wt(l), - s = 1 << i, - u = a[i]; - if (-1 === u) { - if (0 === (s & c) || 0 !== (s & r)) { - (u = t), jt(s); - var h = Tt; - a[i] = 10 <= h ? u + 250 : 6 <= h ? u + 5e3 : -1; - } - } else u <= t && (e.expiredLanes |= s); - l &= ~s; - } - if (((c = Rt(e, e === Ol ? Nl : 0)), (t = Tt), 0 === c)) - null !== n && - (n !== jr && Er(n), - (e.callbackNode = null), - (e.callbackPriority = 0)); - else { - if (null !== n) { - if (e.callbackPriority === t) return; - n !== jr && Er(n); - } - 15 === t - ? ((n = gi.bind(null, e)), - null === Dr ? ((Dr = [n]), (Fr = Cr(_r, Qr))) : Dr.push(n), - (n = jr)) - : 14 === t - ? (n = qr(99, gi.bind(null, e))) - : ((n = (function (e) { - switch (e) { - case 15: - case 14: - return 99; - case 13: - case 12: - case 11: - case 10: - return 98; - case 9: - case 8: - case 7: - case 6: - case 4: - case 5: - return 97; - case 3: - case 2: - case 1: - return 95; - case 0: - return 90; - default: - throw Error(o(358, e)); - } - })(t)), - (n = qr(n, zi.bind(null, e)))), - (e.callbackPriority = t), - (e.callbackNode = n); - } - } - function zi(e) { - if (((li = -1), (si = ii = 0), 0 !== (48 & _l))) throw Error(o(327)); - var t = e.callbackNode; - if (Ni() && e.callbackNode !== t) return null; - var n = Rt(e, e === Ol ? Nl : 0); - if (0 === n) return null; - var c = n, - r = _l; - _l |= 16; - var a = Ci(); - for ((Ol === e && Nl === c) || (ql(), Li(e, c)); ; ) - try { - Ai(); - break; - } catch (i) { - wi(e, i); - } - if ( - (na(), - (xl.current = a), - (_l = r), - null !== Pl ? (c = 0) : ((Ol = null), (Nl = 0), (c = Rl)), - 0 !== (Fl & Ul)) - ) - Li(e, 0); - else if (0 !== c) { - if ( - (2 === c && - ((_l |= 64), - e.hydrate && ((e.hydrate = !1), qc(e.containerInfo)), - 0 !== (n = Dt(e)) && (c = Ei(e, n))), - 1 === c) - ) - throw ((t = Dl), Li(e, 0), yi(e, n), mi(e, Br()), t); - switch ( - ((e.finishedWork = e.current.alternate), (e.finishedLanes = n), c) - ) { - case 0: - case 1: - throw Error(o(345)); - case 2: - case 5: - _i(e); - break; - case 3: - if ( - (yi(e, n), (62914560 & n) === n && 10 < (c = $l + 500 - Br())) - ) { - if (0 !== Rt(e, 0)) break; - if (((r = e.suspendedLanes) & n) !== n) { - fi(), (e.pingedLanes |= e.suspendedLanes & r); - break; - } - e.timeoutHandle = $c(_i.bind(null, e), c); - break; - } - _i(e); - break; - case 4: - if ((yi(e, n), (4186112 & n) === n)) break; - for (c = e.eventTimes, r = -1; 0 < n; ) { - var l = 31 - Wt(n); - (a = 1 << l), (l = c[l]) > r && (r = l), (n &= ~a); - } - if ( - ((n = r), - 10 < - (n = - (120 > (n = Br() - n) - ? 120 - : 480 > n - ? 480 - : 1080 > n - ? 1080 - : 1920 > n - ? 1920 - : 3e3 > n - ? 3e3 - : 4320 > n - ? 4320 - : 1960 * Al(n / 1960)) - n)) - ) { - e.timeoutHandle = $c(_i.bind(null, e), n); - break; - } - _i(e); - break; - default: - throw Error(o(329)); - } - } - return mi(e, Br()), e.callbackNode === t ? zi.bind(null, e) : null; - } - function yi(e, t) { - for ( - t &= ~Bl, - t &= ~Ul, - e.suspendedLanes |= t, - e.pingedLanes &= ~t, - e = e.expirationTimes; - 0 < t; - - ) { - var n = 31 - Wt(t), - c = 1 << n; - (e[n] = -1), (t &= ~c); - } - } - function gi(e) { - if (0 !== (48 & _l)) throw Error(o(327)); - if ((Ni(), e === Ol && 0 !== (e.expiredLanes & Nl))) { - var t = Nl, - n = Ei(e, t); - 0 !== (Fl & Ul) && (n = Ei(e, (t = Rt(e, t)))); - } else n = Ei(e, (t = Rt(e, 0))); - if ( - (0 !== e.tag && - 2 === n && - ((_l |= 64), - e.hydrate && ((e.hydrate = !1), qc(e.containerInfo)), - 0 !== (t = Dt(e)) && (n = Ei(e, t))), - 1 === n) - ) - throw ((n = Dl), Li(e, 0), yi(e, t), mi(e, Br()), n); - return ( - (e.finishedWork = e.current.alternate), - (e.finishedLanes = t), - _i(e), - mi(e, Br()), - null - ); - } - function Mi(e, t) { - var n = _l; - _l |= 1; - try { - return e(t); - } finally { - 0 === (_l = n) && (ql(), Gr()); - } - } - function Hi(e, t) { - var n = _l; - (_l &= -2), (_l |= 8); - try { - return e(t); - } finally { - 0 === (_l = n) && (ql(), Gr()); - } - } - function bi(e, t) { - hr(jl, Tl), (Tl |= t), (Fl |= t); - } - function Vi() { - (Tl = jl.current), ur(jl); - } - function Li(e, t) { - (e.finishedWork = null), (e.finishedLanes = 0); - var n = e.timeoutHandle; - if ((-1 !== n && ((e.timeoutHandle = -1), Kc(n)), null !== Pl)) - for (n = Pl.return; null !== n; ) { - var c = n; - switch (c.tag) { - case 1: - null !== (c = c.type.childContextTypes) && - void 0 !== c && - yr(); - break; - case 3: - Pa(), ur(vr), ur(pr), Qa(); - break; - case 5: - Ta(c); - break; - case 4: - Pa(); - break; - case 13: - case 19: - ur(ja); - break; - case 10: - ca(c); - break; - case 23: - case 24: - Vi(); - } - n = n.return; - } - (Ol = e), - (Pl = Ki(e.current, null)), - (Nl = Tl = Fl = t), - (Rl = 0), - (Dl = null), - (Bl = Ul = Il = 0); - } - function wi(e, t) { - for (;;) { - var n = Pl; - try { - if ((na(), (Ya.current = _o), no)) { - for (var c = Za.memoizedState; null !== c; ) { - var r = c.queue; - null !== r && (r.pending = null), (c = c.next); - } - no = !1; - } - if ( - ((Ja = 0), - (to = eo = Za = null), - (co = !1), - (kl.current = null), - null === n || null === n.return) - ) { - (Rl = 1), (Dl = t), (Pl = null); - break; - } - e: { - var a = e, - o = n.return, - l = n, - i = t; - if ( - ((t = Nl), - (l.flags |= 2048), - (l.firstEffect = l.lastEffect = null), - null !== i && - "object" === typeof i && - "function" === typeof i.then) - ) { - var s = i; - if (0 === (2 & l.mode)) { - var u = l.alternate; - u - ? ((l.updateQueue = u.updateQueue), - (l.memoizedState = u.memoizedState), - (l.lanes = u.lanes)) - : ((l.updateQueue = null), (l.memoizedState = null)); - } - var h = 0 !== (1 & ja.current), - f = o; - do { - var p; - if ((p = 13 === f.tag)) { - var v = f.memoizedState; - if (null !== v) p = null !== v.dehydrated; - else { - var d = f.memoizedProps; - p = - void 0 !== d.fallback && - (!0 !== d.unstable_avoidThisFallback || !h); - } - } - if (p) { - var m = f.updateQueue; - if (null === m) { - var z = new Set(); - z.add(s), (f.updateQueue = z); - } else m.add(s); - if (0 === (2 & f.mode)) { - if ( - ((f.flags |= 64), - (l.flags |= 16384), - (l.flags &= -2981), - 1 === l.tag) - ) - if (null === l.alternate) l.tag = 17; - else { - var y = ua(-1, 1); - (y.tag = 2), ha(l, y); - } - l.lanes |= 1; - break e; - } - (i = void 0), (l = t); - var g = a.pingCache; - if ( - (null === g - ? ((g = a.pingCache = new hl()), - (i = new Set()), - g.set(s, i)) - : void 0 === (i = g.get(s)) && - ((i = new Set()), g.set(s, i)), - !i.has(l)) - ) { - i.add(l); - var M = Ii.bind(null, a, s, l); - s.then(M, M); - } - (f.flags |= 4096), (f.lanes = t); - break e; - } - f = f.return; - } while (null !== f); - i = Error( - (q(l.type) || "A React component") + - " suspended while rendering, but no fallback UI was specified.\n\nAdd a component higher in the tree to provide a loading indicator or placeholder to display." - ); - } - 5 !== Rl && (Rl = 2), (i = sl(i, l)), (f = o); - do { - switch (f.tag) { - case 3: - (a = i), - (f.flags |= 4096), - (t &= -t), - (f.lanes |= t), - fa(f, fl(0, a, t)); - break e; - case 1: - a = i; - var H = f.type, - b = f.stateNode; - if ( - 0 === (64 & f.flags) && - ("function" === typeof H.getDerivedStateFromError || - (null !== b && - "function" === typeof b.componentDidCatch && - (null === Jl || !Jl.has(b)))) - ) { - (f.flags |= 4096), - (t &= -t), - (f.lanes |= t), - fa(f, pl(f, a, t)); - break e; - } - } - f = f.return; - } while (null !== f); - } - ki(n); - } catch (V) { - (t = V), Pl === n && null !== n && (Pl = n = n.return); - continue; - } - break; - } - } - function Ci() { - var e = xl.current; - return (xl.current = _o), null === e ? _o : e; - } - function Ei(e, t) { - var n = _l; - _l |= 16; - var c = Ci(); - for ((Ol === e && Nl === t) || Li(e, t); ; ) - try { - Si(); - break; - } catch (r) { - wi(e, r); - } - if ((na(), (_l = n), (xl.current = c), null !== Pl)) - throw Error(o(261)); - return (Ol = null), (Nl = 0), Rl; - } - function Si() { - for (; null !== Pl; ) xi(Pl); - } - function Ai() { - for (; null !== Pl && !Sr(); ) xi(Pl); - } - function xi(e) { - var t = Gl(e.alternate, e, Tl); - (e.memoizedProps = e.pendingProps), - null === t ? ki(e) : (Pl = t), - (kl.current = null); - } - function ki(e) { - var t = e; - do { - var n = t.alternate; - if (((e = t.return), 0 === (2048 & t.flags))) { - if (null !== (n = ll(n, t, Tl))) return void (Pl = n); - if ( - (24 !== (n = t).tag && 23 !== n.tag) || - null === n.memoizedState || - 0 !== (1073741824 & Tl) || - 0 === (4 & n.mode) - ) { - for (var c = 0, r = n.child; null !== r; ) - (c |= r.lanes | r.childLanes), (r = r.sibling); - n.childLanes = c; - } - null !== e && - 0 === (2048 & e.flags) && - (null === e.firstEffect && (e.firstEffect = t.firstEffect), - null !== t.lastEffect && - (null !== e.lastEffect && - (e.lastEffect.nextEffect = t.firstEffect), - (e.lastEffect = t.lastEffect)), - 1 < t.flags && - (null !== e.lastEffect - ? (e.lastEffect.nextEffect = t) - : (e.firstEffect = t), - (e.lastEffect = t))); - } else { - if (null !== (n = il(t))) return (n.flags &= 2047), void (Pl = n); - null !== e && - ((e.firstEffect = e.lastEffect = null), (e.flags |= 2048)); - } - if (null !== (t = t.sibling)) return void (Pl = t); - Pl = t = e; - } while (null !== t); - 0 === Rl && (Rl = 5); - } - function _i(e) { - var t = Wr(); - return Kr(99, Oi.bind(null, e, t)), null; - } - function Oi(e, t) { - do { - Ni(); - } while (null !== ei); - if (0 !== (48 & _l)) throw Error(o(327)); - var n = e.finishedWork; - if (null === n) return null; - if (((e.finishedWork = null), (e.finishedLanes = 0), n === e.current)) - throw Error(o(177)); - e.callbackNode = null; - var c = n.lanes | n.childLanes, - r = c, - a = e.pendingLanes & ~r; - (e.pendingLanes = r), - (e.suspendedLanes = 0), - (e.pingedLanes = 0), - (e.expiredLanes &= r), - (e.mutableReadLanes &= r), - (e.entangledLanes &= r), - (r = e.entanglements); - for (var l = e.eventTimes, i = e.expirationTimes; 0 < a; ) { - var s = 31 - Wt(a), - u = 1 << s; - (r[s] = 0), (l[s] = -1), (i[s] = -1), (a &= ~u); - } - if ( - (null !== ri && 0 === (24 & c) && ri.has(e) && ri.delete(e), - e === Ol && ((Pl = Ol = null), (Nl = 0)), - 1 < n.flags - ? null !== n.lastEffect - ? ((n.lastEffect.nextEffect = n), (c = n.firstEffect)) - : (c = n) - : (c = n.firstEffect), - null !== c) - ) { - if ( - ((r = _l), - (_l |= 32), - (kl.current = null), - (Ic = Qt), - zc((l = mc()))) - ) { - if ("selectionStart" in l) - i = { start: l.selectionStart, end: l.selectionEnd }; - else - e: if ( - ((i = ((i = l.ownerDocument) && i.defaultView) || window), - (u = i.getSelection && i.getSelection()) && - 0 !== u.rangeCount) - ) { - (i = u.anchorNode), - (a = u.anchorOffset), - (s = u.focusNode), - (u = u.focusOffset); - try { - i.nodeType, s.nodeType; - } catch (C) { - i = null; - break e; - } - var h = 0, - f = -1, - p = -1, - v = 0, - d = 0, - m = l, - z = null; - t: for (;;) { - for ( - var y; - m !== i || (0 !== a && 3 !== m.nodeType) || (f = h + a), - m !== s || (0 !== u && 3 !== m.nodeType) || (p = h + u), - 3 === m.nodeType && (h += m.nodeValue.length), - null !== (y = m.firstChild); - - ) - (z = m), (m = y); - for (;;) { - if (m === l) break t; - if ( - (z === i && ++v === a && (f = h), - z === s && ++d === u && (p = h), - null !== (y = m.nextSibling)) - ) - break; - z = (m = z).parentNode; - } - m = y; - } - i = -1 === f || -1 === p ? null : { start: f, end: p }; - } else i = null; - i = i || { start: 0, end: 0 }; - } else i = null; - (Uc = { focusedElem: l, selectionRange: i }), - (Qt = !1), - (ui = null), - (hi = !1), - (Ql = c); - do { - try { - Pi(); - } catch (C) { - if (null === Ql) throw Error(o(330)); - Fi(Ql, C), (Ql = Ql.nextEffect); - } - } while (null !== Ql); - (ui = null), (Ql = c); - do { - try { - for (l = e; null !== Ql; ) { - var g = Ql.flags; - if ((16 & g && ye(Ql.stateNode, ""), 128 & g)) { - var M = Ql.alternate; - if (null !== M) { - var H = M.ref; - null !== H && - ("function" === typeof H - ? H(null) - : (H.current = null)); - } - } - switch (1038 & g) { - case 2: - bl(Ql), (Ql.flags &= -3); - break; - case 6: - bl(Ql), (Ql.flags &= -3), Cl(Ql.alternate, Ql); - break; - case 1024: - Ql.flags &= -1025; - break; - case 1028: - (Ql.flags &= -1025), Cl(Ql.alternate, Ql); - break; - case 4: - Cl(Ql.alternate, Ql); - break; - case 8: - wl(l, (i = Ql)); - var b = i.alternate; - Ml(i), null !== b && Ml(b); - } - Ql = Ql.nextEffect; - } - } catch (C) { - if (null === Ql) throw Error(o(330)); - Fi(Ql, C), (Ql = Ql.nextEffect); - } - } while (null !== Ql); - if ( - ((H = Uc), - (M = mc()), - (g = H.focusedElem), - (l = H.selectionRange), - M !== g && - g && - g.ownerDocument && - dc(g.ownerDocument.documentElement, g)) - ) { - null !== l && - zc(g) && - ((M = l.start), - void 0 === (H = l.end) && (H = M), - "selectionStart" in g - ? ((g.selectionStart = M), - (g.selectionEnd = Math.min(H, g.value.length))) - : (H = - ((M = g.ownerDocument || document) && M.defaultView) || - window).getSelection && - ((H = H.getSelection()), - (i = g.textContent.length), - (b = Math.min(l.start, i)), - (l = void 0 === l.end ? b : Math.min(l.end, i)), - !H.extend && b > l && ((i = l), (l = b), (b = i)), - (i = vc(g, b)), - (a = vc(g, l)), - i && - a && - (1 !== H.rangeCount || - H.anchorNode !== i.node || - H.anchorOffset !== i.offset || - H.focusNode !== a.node || - H.focusOffset !== a.offset) && - ((M = M.createRange()).setStart(i.node, i.offset), - H.removeAllRanges(), - b > l - ? (H.addRange(M), H.extend(a.node, a.offset)) - : (M.setEnd(a.node, a.offset), H.addRange(M))))), - (M = []); - for (H = g; (H = H.parentNode); ) - 1 === H.nodeType && - M.push({ element: H, left: H.scrollLeft, top: H.scrollTop }); - for ( - "function" === typeof g.focus && g.focus(), g = 0; - g < M.length; - g++ - ) - ((H = M[g]).element.scrollLeft = H.left), - (H.element.scrollTop = H.top); - } - (Qt = !!Ic), (Uc = Ic = null), (e.current = n), (Ql = c); - do { - try { - for (g = e; null !== Ql; ) { - var V = Ql.flags; - if ((36 & V && zl(g, Ql.alternate, Ql), 128 & V)) { - M = void 0; - var L = Ql.ref; - if (null !== L) { - var w = Ql.stateNode; - Ql.tag, - (M = w), - "function" === typeof L ? L(M) : (L.current = M); - } - } - Ql = Ql.nextEffect; - } - } catch (C) { - if (null === Ql) throw Error(o(330)); - Fi(Ql, C), (Ql = Ql.nextEffect); - } - } while (null !== Ql); - (Ql = null), Rr(), (_l = r); - } else e.current = n; - if (Zl) (Zl = !1), (ei = e), (ti = t); - else - for (Ql = c; null !== Ql; ) - (t = Ql.nextEffect), - (Ql.nextEffect = null), - 8 & Ql.flags && - (((V = Ql).sibling = null), (V.stateNode = null)), - (Ql = t); - if ( - (0 === (c = e.pendingLanes) && (Jl = null), - 1 === c ? (e === oi ? ai++ : ((ai = 0), (oi = e))) : (ai = 0), - (n = n.stateNode), - Lr && "function" === typeof Lr.onCommitFiberRoot) - ) - try { - Lr.onCommitFiberRoot( - Vr, - n, - void 0, - 64 === (64 & n.current.flags) - ); - } catch (C) {} - if ((mi(e, Br()), Yl)) throw ((Yl = !1), (e = Xl), (Xl = null), e); - return 0 !== (8 & _l) || Gr(), null; - } - function Pi() { - for (; null !== Ql; ) { - var e = Ql.alternate; - hi || - null === ui || - (0 !== (8 & Ql.flags) - ? et(Ql, ui) && (hi = !0) - : 13 === Ql.tag && Sl(e, Ql) && et(Ql, ui) && (hi = !0)); - var t = Ql.flags; - 0 !== (256 & t) && ml(e, Ql), - 0 === (512 & t) || - Zl || - ((Zl = !0), - qr(97, function () { - return Ni(), null; - })), - (Ql = Ql.nextEffect); - } - } - function Ni() { - if (90 !== ti) { - var e = 97 < ti ? 97 : ti; - return (ti = 90), Kr(e, Ri); - } - return !1; - } - function Ti(e, t) { - ni.push(t, e), - Zl || - ((Zl = !0), - qr(97, function () { - return Ni(), null; - })); - } - function ji(e, t) { - ci.push(t, e), - Zl || - ((Zl = !0), - qr(97, function () { - return Ni(), null; - })); - } - function Ri() { - if (null === ei) return !1; - var e = ei; - if (((ei = null), 0 !== (48 & _l))) throw Error(o(331)); - var t = _l; - _l |= 32; - var n = ci; - ci = []; - for (var c = 0; c < n.length; c += 2) { - var r = n[c], - a = n[c + 1], - l = r.destroy; - if (((r.destroy = void 0), "function" === typeof l)) - try { - l(); - } catch (s) { - if (null === a) throw Error(o(330)); - Fi(a, s); - } - } - for (n = ni, ni = [], c = 0; c < n.length; c += 2) { - (r = n[c]), (a = n[c + 1]); - try { - var i = r.create; - r.destroy = i(); - } catch (s) { - if (null === a) throw Error(o(330)); - Fi(a, s); - } - } - for (i = e.current.firstEffect; null !== i; ) - (e = i.nextEffect), - (i.nextEffect = null), - 8 & i.flags && ((i.sibling = null), (i.stateNode = null)), - (i = e); - return (_l = t), Gr(), !0; - } - function Di(e, t, n) { - ha(e, (t = fl(0, (t = sl(n, t)), 1))), - (t = fi()), - null !== (e = di(e, 1)) && (Bt(e, 1, t), mi(e, t)); - } - function Fi(e, t) { - if (3 === e.tag) Di(e, e, t); - else - for (var n = e.return; null !== n; ) { - if (3 === n.tag) { - Di(n, e, t); - break; - } - if (1 === n.tag) { - var c = n.stateNode; - if ( - "function" === typeof n.type.getDerivedStateFromError || - ("function" === typeof c.componentDidCatch && - (null === Jl || !Jl.has(c))) - ) { - var r = pl(n, (e = sl(t, e)), 1); - if ((ha(n, r), (r = fi()), null !== (n = di(n, 1)))) - Bt(n, 1, r), mi(n, r); - else if ( - "function" === typeof c.componentDidCatch && - (null === Jl || !Jl.has(c)) - ) - try { - c.componentDidCatch(t, e); - } catch (a) {} - break; - } - } - n = n.return; - } - } - function Ii(e, t, n) { - var c = e.pingCache; - null !== c && c.delete(t), - (t = fi()), - (e.pingedLanes |= e.suspendedLanes & n), - Ol === e && - (Nl & n) === n && - (4 === Rl || - (3 === Rl && (62914560 & Nl) === Nl && 500 > Br() - $l) - ? Li(e, 0) - : (Bl |= n)), - mi(e, t); - } - function Ui(e, t) { - var n = e.stateNode; - null !== n && n.delete(t), - 0 === (t = 0) && - (0 === (2 & (t = e.mode)) - ? (t = 1) - : 0 === (4 & t) - ? (t = 99 === Wr() ? 1 : 2) - : (0 === ii && (ii = Fl), - 0 === (t = It(62914560 & ~ii)) && (t = 4194304))), - (n = fi()), - null !== (e = di(e, t)) && (Bt(e, t, n), mi(e, n)); - } - function Bi(e, t, n, c) { - (this.tag = e), - (this.key = n), - (this.sibling = this.child = this.return = this.stateNode = this.type = this.elementType = null), - (this.index = 0), - (this.ref = null), - (this.pendingProps = t), - (this.dependencies = this.memoizedState = this.updateQueue = this.memoizedProps = null), - (this.mode = c), - (this.flags = 0), - (this.lastEffect = this.firstEffect = this.nextEffect = null), - (this.childLanes = this.lanes = 0), - (this.alternate = null); - } - function Wi(e, t, n, c) { - return new Bi(e, t, n, c); - } - function $i(e) { - return !(!(e = e.prototype) || !e.isReactComponent); - } - function Ki(e, t) { - var n = e.alternate; - return ( - null === n - ? (((n = Wi(e.tag, t, e.key, e.mode)).elementType = - e.elementType), - (n.type = e.type), - (n.stateNode = e.stateNode), - (n.alternate = e), - (e.alternate = n)) - : ((n.pendingProps = t), - (n.type = e.type), - (n.flags = 0), - (n.nextEffect = null), - (n.firstEffect = null), - (n.lastEffect = null)), - (n.childLanes = e.childLanes), - (n.lanes = e.lanes), - (n.child = e.child), - (n.memoizedProps = e.memoizedProps), - (n.memoizedState = e.memoizedState), - (n.updateQueue = e.updateQueue), - (t = e.dependencies), - (n.dependencies = - null === t - ? null - : { lanes: t.lanes, firstContext: t.firstContext }), - (n.sibling = e.sibling), - (n.index = e.index), - (n.ref = e.ref), - n - ); - } - function qi(e, t, n, c, r, a) { - var l = 2; - if (((c = e), "function" === typeof e)) $i(e) && (l = 1); - else if ("string" === typeof e) l = 5; - else - e: switch (e) { - case L: - return Gi(n.children, r, a, t); - case T: - (l = 8), (r |= 16); - break; - case w: - (l = 8), (r |= 1); - break; - case C: - return ( - ((e = Wi(12, n, t, 8 | r)).elementType = C), - (e.type = C), - (e.lanes = a), - e - ); - case x: - return ( - ((e = Wi(13, n, t, r)).type = x), - (e.elementType = x), - (e.lanes = a), - e - ); - case k: - return ( - ((e = Wi(19, n, t, r)).elementType = k), (e.lanes = a), e - ); - case j: - return Qi(n, r, a, t); - case R: - return ( - ((e = Wi(24, n, t, r)).elementType = R), (e.lanes = a), e - ); - default: - if ("object" === typeof e && null !== e) - switch (e.$$typeof) { - case E: - l = 10; - break e; - case S: - l = 9; - break e; - case A: - l = 11; - break e; - case _: - l = 14; - break e; - case O: - (l = 16), (c = null); - break e; - case P: - l = 22; - break e; - } - throw Error(o(130, null == e ? e : typeof e, "")); - } - return ( - ((t = Wi(l, n, t, r)).elementType = e), - (t.type = c), - (t.lanes = a), - t - ); - } - function Gi(e, t, n, c) { - return ((e = Wi(7, e, c, t)).lanes = n), e; - } - function Qi(e, t, n, c) { - return ((e = Wi(23, e, c, t)).elementType = j), (e.lanes = n), e; - } - function Yi(e, t, n) { - return ((e = Wi(6, e, null, t)).lanes = n), e; - } - function Xi(e, t, n) { - return ( - ((t = Wi( - 4, - null !== e.children ? e.children : [], - e.key, - t - )).lanes = n), - (t.stateNode = { - containerInfo: e.containerInfo, - pendingChildren: null, - implementation: e.implementation, - }), - t - ); - } - function Ji(e, t, n) { - (this.tag = t), - (this.containerInfo = e), - (this.finishedWork = this.pingCache = this.current = this.pendingChildren = null), - (this.timeoutHandle = -1), - (this.pendingContext = this.context = null), - (this.hydrate = n), - (this.callbackNode = null), - (this.callbackPriority = 0), - (this.eventTimes = Ut(0)), - (this.expirationTimes = Ut(-1)), - (this.entangledLanes = this.finishedLanes = this.mutableReadLanes = this.expiredLanes = this.pingedLanes = this.suspendedLanes = this.pendingLanes = 0), - (this.entanglements = Ut(0)), - (this.mutableSourceEagerHydrationData = null); - } - function Zi(e, t, n) { - var c = - 3 < arguments.length && void 0 !== arguments[3] - ? arguments[3] - : null; - return { - $$typeof: V, - key: null == c ? null : "" + c, - children: e, - containerInfo: t, - implementation: n, - }; - } - function es(e, t, n, c) { - var r = t.current, - a = fi(), - l = pi(r); - e: if (n) { - t: { - if (Ye((n = n._reactInternals)) !== n || 1 !== n.tag) - throw Error(o(170)); - var i = n; - do { - switch (i.tag) { - case 3: - i = i.stateNode.context; - break t; - case 1: - if (zr(i.type)) { - i = i.stateNode.__reactInternalMemoizedMergedChildContext; - break t; - } - } - i = i.return; - } while (null !== i); - throw Error(o(171)); - } - if (1 === n.tag) { - var s = n.type; - if (zr(s)) { - n = Mr(n, s, i); - break e; - } - } - n = i; - } else n = fr; - return ( - null === t.context ? (t.context = n) : (t.pendingContext = n), - ((t = ua(a, l)).payload = { element: e }), - null !== (c = void 0 === c ? null : c) && (t.callback = c), - ha(r, t), - vi(r, l, a), - l - ); - } - function ts(e) { - return (e = e.current).child - ? (e.child.tag, e.child.stateNode) - : null; - } - function ns(e, t) { - if (null !== (e = e.memoizedState) && null !== e.dehydrated) { - var n = e.retryLane; - e.retryLane = 0 !== n && n < t ? n : t; - } - } - function cs(e, t) { - ns(e, t), (e = e.alternate) && ns(e, t); - } - function rs(e, t, n) { - var c = - (null != n && - null != n.hydrationOptions && - n.hydrationOptions.mutableSources) || - null; - if ( - ((n = new Ji(e, t, null != n && !0 === n.hydrate)), - (t = Wi(3, null, null, 2 === t ? 7 : 1 === t ? 3 : 0)), - (n.current = t), - (t.stateNode = n), - ia(t), - (e[er] = n.current), - _c(8 === e.nodeType ? e.parentNode : e), - c) - ) - for (e = 0; e < c.length; e++) { - var r = (t = c[e])._getVersion; - (r = r(t._source)), - null == n.mutableSourceEagerHydrationData - ? (n.mutableSourceEagerHydrationData = [t, r]) - : n.mutableSourceEagerHydrationData.push(t, r); - } - this._internalRoot = n; - } - function as(e) { - return !( - !e || - (1 !== e.nodeType && - 9 !== e.nodeType && - 11 !== e.nodeType && - (8 !== e.nodeType || - " react-mount-point-unstable " !== e.nodeValue)) - ); - } - function os(e, t, n, c, r) { - var a = n._reactRootContainer; - if (a) { - var o = a._internalRoot; - if ("function" === typeof r) { - var l = r; - r = function () { - var e = ts(o); - l.call(e); - }; - } - es(t, o, e, r); - } else { - if ( - ((a = n._reactRootContainer = (function (e, t) { - if ( - (t || - (t = !( - !(t = e - ? 9 === e.nodeType - ? e.documentElement - : e.firstChild - : null) || - 1 !== t.nodeType || - !t.hasAttribute("data-reactroot") - )), - !t) - ) - for (var n; (n = e.lastChild); ) e.removeChild(n); - return new rs(e, 0, t ? { hydrate: !0 } : void 0); - })(n, c)), - (o = a._internalRoot), - "function" === typeof r) - ) { - var i = r; - r = function () { - var e = ts(o); - i.call(e); - }; - } - Hi(function () { - es(t, o, e, r); - }); - } - return ts(o); - } - function ls(e, t) { - var n = - 2 < arguments.length && void 0 !== arguments[2] - ? arguments[2] - : null; - if (!as(t)) throw Error(o(200)); - return Zi(e, t, null, n); - } - (Gl = function (e, t, n) { - var c = t.lanes; - if (null !== e) - if (e.memoizedProps !== t.pendingProps || vr.current) jo = !0; - else { - if (0 === (n & c)) { - switch (((jo = !1), t.tag)) { - case 3: - qo(t), qa(); - break; - case 5: - Na(t); - break; - case 1: - zr(t.type) && Hr(t); - break; - case 4: - Oa(t, t.stateNode.containerInfo); - break; - case 10: - c = t.memoizedProps.value; - var r = t.type._context; - hr(Jr, r._currentValue), (r._currentValue = c); - break; - case 13: - if (null !== t.memoizedState) - return 0 !== (n & t.child.childLanes) - ? Jo(e, t, n) - : (hr(ja, 1 & ja.current), - null !== (t = al(e, t, n)) ? t.sibling : null); - hr(ja, 1 & ja.current); - break; - case 19: - if ( - ((c = 0 !== (n & t.childLanes)), 0 !== (64 & e.flags)) - ) { - if (c) return rl(e, t, n); - t.flags |= 64; - } - if ( - (null !== (r = t.memoizedState) && - ((r.rendering = null), - (r.tail = null), - (r.lastEffect = null)), - hr(ja, ja.current), - c) - ) - break; - return null; - case 23: - case 24: - return (t.lanes = 0), Uo(e, t, n); - } - return al(e, t, n); - } - jo = 0 !== (16384 & e.flags); - } - else jo = !1; - switch (((t.lanes = 0), t.tag)) { - case 2: - if ( - ((c = t.type), - null !== e && - ((e.alternate = null), (t.alternate = null), (t.flags |= 2)), - (e = t.pendingProps), - (r = mr(t, pr.current)), - aa(t, n), - (r = oo(null, t, c, e, r, n)), - (t.flags |= 1), - "object" === typeof r && - null !== r && - "function" === typeof r.render && - void 0 === r.$$typeof) - ) { - if ( - ((t.tag = 1), - (t.memoizedState = null), - (t.updateQueue = null), - zr(c)) - ) { - var a = !0; - Hr(t); - } else a = !1; - (t.memoizedState = - null !== r.state && void 0 !== r.state ? r.state : null), - ia(t); - var l = c.getDerivedStateFromProps; - "function" === typeof l && ma(t, c, l, e), - (r.updater = za), - (t.stateNode = r), - (r._reactInternals = t), - Ha(t, c, e, n), - (t = Ko(null, t, c, !0, a, n)); - } else (t.tag = 0), Ro(null, t, r, n), (t = t.child); - return t; - case 16: - r = t.elementType; - e: { - switch ( - (null !== e && - ((e.alternate = null), - (t.alternate = null), - (t.flags |= 2)), - (e = t.pendingProps), - (r = (a = r._init)(r._payload)), - (t.type = r), - (a = t.tag = (function (e) { - if ("function" === typeof e) return $i(e) ? 1 : 0; - if (void 0 !== e && null !== e) { - if ((e = e.$$typeof) === A) return 11; - if (e === _) return 14; - } - return 2; - })(r)), - (e = Xr(r, e)), - a) - ) { - case 0: - t = Wo(null, t, r, e, n); - break e; - case 1: - t = $o(null, t, r, e, n); - break e; - case 11: - t = Do(null, t, r, e, n); - break e; - case 14: - t = Fo(null, t, r, Xr(r.type, e), c, n); - break e; - } - throw Error(o(306, r, "")); - } - return t; - case 0: - return ( - (c = t.type), - (r = t.pendingProps), - Wo(e, t, c, (r = t.elementType === c ? r : Xr(c, r)), n) - ); - case 1: - return ( - (c = t.type), - (r = t.pendingProps), - $o(e, t, c, (r = t.elementType === c ? r : Xr(c, r)), n) - ); - case 3: - if ((qo(t), (c = t.updateQueue), null === e || null === c)) - throw Error(o(282)); - if ( - ((c = t.pendingProps), - (r = null !== (r = t.memoizedState) ? r.element : null), - sa(e, t), - pa(t, c, null, n), - (c = t.memoizedState.element) === r) - ) - qa(), (t = al(e, t, n)); - else { - if ( - ((a = (r = t.stateNode).hydrate) && - ((Fa = Gc(t.stateNode.containerInfo.firstChild)), - (Da = t), - (a = Ia = !0)), - a) - ) { - if (null != (e = r.mutableSourceEagerHydrationData)) - for (r = 0; r < e.length; r += 2) - ((a = e[r])._workInProgressVersionPrimary = e[r + 1]), - Ga.push(a); - for (n = Ea(t, null, c, n), t.child = n; n; ) - (n.flags = (-3 & n.flags) | 1024), (n = n.sibling); - } else Ro(e, t, c, n), qa(); - t = t.child; - } - return t; - case 5: - return ( - Na(t), - null === e && Wa(t), - (c = t.type), - (r = t.pendingProps), - (a = null !== e ? e.memoizedProps : null), - (l = r.children), - Wc(c, r) - ? (l = null) - : null !== a && Wc(c, a) && (t.flags |= 16), - Bo(e, t), - Ro(e, t, l, n), - t.child - ); - case 6: - return null === e && Wa(t), null; - case 13: - return Jo(e, t, n); - case 4: - return ( - Oa(t, t.stateNode.containerInfo), - (c = t.pendingProps), - null === e ? (t.child = Ca(t, null, c, n)) : Ro(e, t, c, n), - t.child - ); - case 11: - return ( - (c = t.type), - (r = t.pendingProps), - Do(e, t, c, (r = t.elementType === c ? r : Xr(c, r)), n) - ); - case 7: - return Ro(e, t, t.pendingProps, n), t.child; - case 8: - case 12: - return Ro(e, t, t.pendingProps.children, n), t.child; - case 10: - e: { - (c = t.type._context), - (r = t.pendingProps), - (l = t.memoizedProps), - (a = r.value); - var i = t.type._context; - if ( - (hr(Jr, i._currentValue), (i._currentValue = a), null !== l) - ) - if ( - ((i = l.value), - 0 === - (a = uc(i, a) - ? 0 - : 0 | - ("function" === typeof c._calculateChangedBits - ? c._calculateChangedBits(i, a) - : 1073741823))) - ) { - if (l.children === r.children && !vr.current) { - t = al(e, t, n); - break e; - } - } else - for ( - null !== (i = t.child) && (i.return = t); - null !== i; - - ) { - var s = i.dependencies; - if (null !== s) { - l = i.child; - for (var u = s.firstContext; null !== u; ) { - if (u.context === c && 0 !== (u.observedBits & a)) { - 1 === i.tag && - (((u = ua(-1, n & -n)).tag = 2), ha(i, u)), - (i.lanes |= n), - null !== (u = i.alternate) && (u.lanes |= n), - ra(i.return, n), - (s.lanes |= n); - break; - } - u = u.next; - } - } else - l = 10 === i.tag && i.type === t.type ? null : i.child; - if (null !== l) l.return = i; - else - for (l = i; null !== l; ) { - if (l === t) { - l = null; - break; - } - if (null !== (i = l.sibling)) { - (i.return = l.return), (l = i); - break; - } - l = l.return; - } - i = l; - } - Ro(e, t, r.children, n), (t = t.child); - } - return t; - case 9: - return ( - (r = t.type), - (c = (a = t.pendingProps).children), - aa(t, n), - (c = c((r = oa(r, a.unstable_observedBits)))), - (t.flags |= 1), - Ro(e, t, c, n), - t.child - ); - case 14: - return ( - (a = Xr((r = t.type), t.pendingProps)), - Fo(e, t, r, (a = Xr(r.type, a)), c, n) - ); - case 15: - return Io(e, t, t.type, t.pendingProps, c, n); - case 17: - return ( - (c = t.type), - (r = t.pendingProps), - (r = t.elementType === c ? r : Xr(c, r)), - null !== e && - ((e.alternate = null), (t.alternate = null), (t.flags |= 2)), - (t.tag = 1), - zr(c) ? ((e = !0), Hr(t)) : (e = !1), - aa(t, n), - ga(t, c, r), - Ha(t, c, r, n), - Ko(null, t, c, !0, e, n) - ); - case 19: - return rl(e, t, n); - case 23: - case 24: - return Uo(e, t, n); - } - throw Error(o(156, t.tag)); - }), - (rs.prototype.render = function (e) { - es(e, this._internalRoot, null, null); - }), - (rs.prototype.unmount = function () { - var e = this._internalRoot, - t = e.containerInfo; - es(null, e, null, function () { - t[er] = null; - }); - }), - (tt = function (e) { - 13 === e.tag && (vi(e, 4, fi()), cs(e, 4)); - }), - (nt = function (e) { - 13 === e.tag && (vi(e, 67108864, fi()), cs(e, 67108864)); - }), - (ct = function (e) { - if (13 === e.tag) { - var t = fi(), - n = pi(e); - vi(e, n, t), cs(e, n); - } - }), - (rt = function (e, t) { - return t(); - }), - (Ee = function (e, t, n) { - switch (t) { - case "input": - if ((ne(e, n), (t = n.name), "radio" === n.type && null != t)) { - for (n = e; n.parentNode; ) n = n.parentNode; - for ( - n = n.querySelectorAll( - "input[name=" + JSON.stringify("" + t) + '][type="radio"]' - ), - t = 0; - t < n.length; - t++ - ) { - var c = n[t]; - if (c !== e && c.form === e.form) { - var r = ar(c); - if (!r) throw Error(o(90)); - X(c), ne(c, r); - } - } - } - break; - case "textarea": - se(e, n); - break; - case "select": - null != (t = n.value) && oe(e, !!n.multiple, t, !1); - } - }), - (Oe = Mi), - (Pe = function (e, t, n, c, r) { - var a = _l; - _l |= 4; - try { - return Kr(98, e.bind(null, t, n, c, r)); - } finally { - 0 === (_l = a) && (ql(), Gr()); - } - }), - (Ne = function () { - 0 === (49 & _l) && - ((function () { - if (null !== ri) { - var e = ri; - (ri = null), - e.forEach(function (e) { - (e.expiredLanes |= 24 & e.pendingLanes), mi(e, Br()); - }); - } - Gr(); - })(), - Ni()); - }), - (Te = function (e, t) { - var n = _l; - _l |= 2; - try { - return e(t); - } finally { - 0 === (_l = n) && (ql(), Gr()); - } - }); - var is = { Events: [cr, rr, ar, ke, _e, Ni, { current: !1 }] }, - ss = { - findFiberByHostInstance: nr, - bundleType: 0, - version: "17.0.2", - rendererPackageName: "react-dom", - }, - us = { - bundleType: ss.bundleType, - version: ss.version, - rendererPackageName: ss.rendererPackageName, - rendererConfig: ss.rendererConfig, - overrideHookState: null, - overrideHookStateDeletePath: null, - overrideHookStateRenamePath: null, - overrideProps: null, - overridePropsDeletePath: null, - overridePropsRenamePath: null, - setSuspenseHandler: null, - scheduleUpdate: null, - currentDispatcherRef: H.ReactCurrentDispatcher, - findHostInstanceByFiber: function (e) { - return null === (e = Ze(e)) ? null : e.stateNode; - }, - findFiberByHostInstance: - ss.findFiberByHostInstance || - function () { - return null; - }, - findHostInstancesForRefresh: null, - scheduleRefresh: null, - scheduleRoot: null, - setRefreshHandler: null, - getCurrentFiber: null, - }; - if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { - var hs = __REACT_DEVTOOLS_GLOBAL_HOOK__; - if (!hs.isDisabled && hs.supportsFiber) - try { - (Vr = hs.inject(us)), (Lr = hs); - } catch (me) {} - } - (t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = is), - (t.createPortal = ls), - (t.findDOMNode = function (e) { - if (null == e) return null; - if (1 === e.nodeType) return e; - var t = e._reactInternals; - if (void 0 === t) { - if ("function" === typeof e.render) throw Error(o(188)); - throw Error(o(268, Object.keys(e))); - } - return (e = null === (e = Ze(t)) ? null : e.stateNode); - }), - (t.flushSync = function (e, t) { - var n = _l; - if (0 !== (48 & n)) return e(t); - _l |= 1; - try { - if (e) return Kr(99, e.bind(null, t)); - } finally { - (_l = n), Gr(); - } - }), - (t.hydrate = function (e, t, n) { - if (!as(t)) throw Error(o(200)); - return os(null, e, t, !0, n); - }), - (t.render = function (e, t, n) { - if (!as(t)) throw Error(o(200)); - return os(null, e, t, !1, n); - }), - (t.unmountComponentAtNode = function (e) { - if (!as(e)) throw Error(o(40)); - return ( - !!e._reactRootContainer && - (Hi(function () { - os(null, null, e, !1, function () { - (e._reactRootContainer = null), (e[er] = null); - }); - }), - !0) - ); - }), - (t.unstable_batchedUpdates = Mi), - (t.unstable_createPortal = function (e, t) { - return ls( - e, - t, - 2 < arguments.length && void 0 !== arguments[2] - ? arguments[2] - : null - ); - }), - (t.unstable_renderSubtreeIntoContainer = function (e, t, n, c) { - if (!as(n)) throw Error(o(200)); - if (null == e || void 0 === e._reactInternals) throw Error(o(38)); - return os(e, t, n, !1, c); - }), - (t.version = "17.0.2"); - }, - 4164: function (e, t, n) { - "use strict"; - !(function e() { - if ( - "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && - "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE - ) - try { - __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e); - } catch (t) { - console.error(t); - } - })(), - (e.exports = n(4463)); - }, - 3688: function (e, t, n) { - "use strict"; - function c() { - var e = this.constructor.getDerivedStateFromProps( - this.props, - this.state - ); - null !== e && void 0 !== e && this.setState(e); - } - function r(e) { - this.setState( - function (t) { - var n = this.constructor.getDerivedStateFromProps(e, t); - return null !== n && void 0 !== n ? n : null; - }.bind(this) - ); - } - function a(e, t) { - try { - var n = this.props, - c = this.state; - (this.props = e), - (this.state = t), - (this.__reactInternalSnapshotFlag = !0), - (this.__reactInternalSnapshot = this.getSnapshotBeforeUpdate( - n, - c - )); - } finally { - (this.props = n), (this.state = c); - } - } - function o(e) { - var t = e.prototype; - if (!t || !t.isReactComponent) - throw new Error("Can only polyfill class components"); - if ( - "function" !== typeof e.getDerivedStateFromProps && - "function" !== typeof t.getSnapshotBeforeUpdate - ) - return e; - var n = null, - o = null, - l = null; - if ( - ("function" === typeof t.componentWillMount - ? (n = "componentWillMount") - : "function" === typeof t.UNSAFE_componentWillMount && - (n = "UNSAFE_componentWillMount"), - "function" === typeof t.componentWillReceiveProps - ? (o = "componentWillReceiveProps") - : "function" === typeof t.UNSAFE_componentWillReceiveProps && - (o = "UNSAFE_componentWillReceiveProps"), - "function" === typeof t.componentWillUpdate - ? (l = "componentWillUpdate") - : "function" === typeof t.UNSAFE_componentWillUpdate && - (l = "UNSAFE_componentWillUpdate"), - null !== n || null !== o || null !== l) - ) { - var i = e.displayName || e.name, - s = - "function" === typeof e.getDerivedStateFromProps - ? "getDerivedStateFromProps()" - : "getSnapshotBeforeUpdate()"; - throw Error( - "Unsafe legacy lifecycles will not be called for components using new component APIs.\n\n" + - i + - " uses " + - s + - " but also contains the following legacy lifecycles:" + - (null !== n ? "\n " + n : "") + - (null !== o ? "\n " + o : "") + - (null !== l ? "\n " + l : "") + - "\n\nThe above lifecycles should be removed. Learn more about this warning here:\nhttps://fb.me/react-async-component-lifecycle-hooks" - ); - } - if ( - ("function" === typeof e.getDerivedStateFromProps && - ((t.componentWillMount = c), (t.componentWillReceiveProps = r)), - "function" === typeof t.getSnapshotBeforeUpdate) - ) { - if ("function" !== typeof t.componentDidUpdate) - throw new Error( - "Cannot polyfill getSnapshotBeforeUpdate() for components that do not define componentDidUpdate() on the prototype" - ); - t.componentWillUpdate = a; - var u = t.componentDidUpdate; - t.componentDidUpdate = function (e, t, n) { - var c = this.__reactInternalSnapshotFlag - ? this.__reactInternalSnapshot - : n; - u.call(this, e, t, c); - }; - } - return e; - } - n.r(t), - n.d(t, { - polyfill: function () { - return o; - }, - }), - (c.__suppressDeprecationWarning = !0), - (r.__suppressDeprecationWarning = !0), - (a.__suppressDeprecationWarning = !0); - }, - 3381: function (e) { - e.exports = - Array.isArray || - function (e) { - return "[object Array]" == Object.prototype.toString.call(e); - }; - }, - 3813: function (e, t, n) { - var c = n(3381); - (e.exports = p), - (e.exports.parse = a), - (e.exports.compile = function (e, t) { - return l(a(e, t), t); - }), - (e.exports.tokensToFunction = l), - (e.exports.tokensToRegExp = f); - var r = new RegExp( - [ - "(\\\\.)", - "([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))", - ].join("|"), - "g" - ); - function a(e, t) { - for ( - var n, c = [], a = 0, o = 0, l = "", u = (t && t.delimiter) || "/"; - null != (n = r.exec(e)); - - ) { - var h = n[0], - f = n[1], - p = n.index; - if (((l += e.slice(o, p)), (o = p + h.length), f)) l += f[1]; - else { - var v = e[o], - d = n[2], - m = n[3], - z = n[4], - y = n[5], - g = n[6], - M = n[7]; - l && (c.push(l), (l = "")); - var H = null != d && null != v && v !== d, - b = "+" === g || "*" === g, - V = "?" === g || "*" === g, - L = n[2] || u, - w = z || y; - c.push({ - name: m || a++, - prefix: d || "", - delimiter: L, - optional: V, - repeat: b, - partial: H, - asterisk: !!M, - pattern: w ? s(w) : M ? ".*" : "[^" + i(L) + "]+?", - }); - } - } - return o < e.length && (l += e.substr(o)), l && c.push(l), c; - } - function o(e) { - return encodeURI(e).replace(/[\/?#]/g, function (e) { - return "%" + e.charCodeAt(0).toString(16).toUpperCase(); - }); - } - function l(e, t) { - for (var n = new Array(e.length), r = 0; r < e.length; r++) - "object" === typeof e[r] && - (n[r] = new RegExp("^(?:" + e[r].pattern + ")$", h(t))); - return function (t, r) { - for ( - var a = "", - l = t || {}, - i = (r || {}).pretty ? o : encodeURIComponent, - s = 0; - s < e.length; - s++ - ) { - var u = e[s]; - if ("string" !== typeof u) { - var h, - f = l[u.name]; - if (null == f) { - if (u.optional) { - u.partial && (a += u.prefix); - continue; - } - throw new TypeError( - 'Expected "' + u.name + '" to be defined' - ); - } - if (c(f)) { - if (!u.repeat) - throw new TypeError( - 'Expected "' + - u.name + - '" to not repeat, but received `' + - JSON.stringify(f) + - "`" - ); - if (0 === f.length) { - if (u.optional) continue; - throw new TypeError( - 'Expected "' + u.name + '" to not be empty' - ); - } - for (var p = 0; p < f.length; p++) { - if (((h = i(f[p])), !n[s].test(h))) - throw new TypeError( - 'Expected all "' + - u.name + - '" to match "' + - u.pattern + - '", but received `' + - JSON.stringify(h) + - "`" - ); - a += (0 === p ? u.prefix : u.delimiter) + h; - } - } else { - if ( - ((h = u.asterisk - ? encodeURI(f).replace(/[?#]/g, function (e) { - return ( - "%" + e.charCodeAt(0).toString(16).toUpperCase() - ); - }) - : i(f)), - !n[s].test(h)) - ) - throw new TypeError( - 'Expected "' + - u.name + - '" to match "' + - u.pattern + - '", but received "' + - h + - '"' - ); - a += u.prefix + h; - } - } else a += u; - } - return a; - }; - } - function i(e) { - return e.replace(/([.+*?=^!:${}()[\]|\/\\])/g, "\\$1"); - } - function s(e) { - return e.replace(/([=!:$\/()])/g, "\\$1"); - } - function u(e, t) { - return (e.keys = t), e; - } - function h(e) { - return e && e.sensitive ? "" : "i"; - } - function f(e, t, n) { - c(t) || ((n = t || n), (t = [])); - for ( - var r = (n = n || {}).strict, a = !1 !== n.end, o = "", l = 0; - l < e.length; - l++ - ) { - var s = e[l]; - if ("string" === typeof s) o += i(s); - else { - var f = i(s.prefix), - p = "(?:" + s.pattern + ")"; - t.push(s), - s.repeat && (p += "(?:" + f + p + ")*"), - (o += p = s.optional - ? s.partial - ? f + "(" + p + ")?" - : "(?:" + f + "(" + p + "))?" - : f + "(" + p + ")"); - } - } - var v = i(n.delimiter || "/"), - d = o.slice(-v.length) === v; - return ( - r || (o = (d ? o.slice(0, -v.length) : o) + "(?:" + v + "(?=$))?"), - (o += a ? "$" : r && d ? "" : "(?=" + v + "|$)"), - u(new RegExp("^" + o, h(n)), t) - ); - } - function p(e, t, n) { - return ( - c(t) || ((n = t || n), (t = [])), - (n = n || {}), - e instanceof RegExp - ? (function (e, t) { - var n = e.source.match(/\((?!\?)/g); - if (n) - for (var c = 0; c < n.length; c++) - t.push({ - name: c, - prefix: null, - delimiter: null, - optional: !1, - repeat: !1, - partial: !1, - asterisk: !1, - pattern: null, - }); - return u(e, t); - })(e, t) - : c(e) - ? (function (e, t, n) { - for (var c = [], r = 0; r < e.length; r++) - c.push(p(e[r], t, n).source); - return u(new RegExp("(?:" + c.join("|") + ")", h(n)), t); - })(e, t, n) - : (function (e, t, n) { - return f(a(e, n), t, n); - })(e, t, n) - ); - } - }, - 9195: function (e, t) { - "use strict"; - var n = "function" === typeof Symbol && Symbol.for, - c = n ? Symbol.for("react.element") : 60103, - r = n ? Symbol.for("react.portal") : 60106, - a = n ? Symbol.for("react.fragment") : 60107, - o = n ? Symbol.for("react.strict_mode") : 60108, - l = n ? Symbol.for("react.profiler") : 60114, - i = n ? Symbol.for("react.provider") : 60109, - s = n ? Symbol.for("react.context") : 60110, - u = n ? Symbol.for("react.async_mode") : 60111, - h = n ? Symbol.for("react.concurrent_mode") : 60111, - f = n ? Symbol.for("react.forward_ref") : 60112, - p = n ? Symbol.for("react.suspense") : 60113, - v = n ? Symbol.for("react.suspense_list") : 60120, - d = n ? Symbol.for("react.memo") : 60115, - m = n ? Symbol.for("react.lazy") : 60116, - z = n ? Symbol.for("react.block") : 60121, - y = n ? Symbol.for("react.fundamental") : 60117, - g = n ? Symbol.for("react.responder") : 60118, - M = n ? Symbol.for("react.scope") : 60119; - function H(e) { - if ("object" === typeof e && null !== e) { - var t = e.$$typeof; - switch (t) { - case c: - switch ((e = e.type)) { - case u: - case h: - case a: - case l: - case o: - case p: - return e; - default: - switch ((e = e && e.$$typeof)) { - case s: - case f: - case m: - case d: - case i: - return e; - default: - return t; - } - } - case r: - return t; - } - } - } - function b(e) { - return H(e) === h; - } - }, - 8228: function (e, t, n) { - "use strict"; - n(9195); - }, - 6664: function (e, t, n) { - "use strict"; - (t.__esModule = !0), (t.default = void 0); - !(function (e) { - if (e && e.__esModule) return e; - var t = {}; - if (null != e) - for (var n in e) - if (Object.prototype.hasOwnProperty.call(e, n)) { - var c = - Object.defineProperty && Object.getOwnPropertyDescriptor - ? Object.getOwnPropertyDescriptor(e, n) - : {}; - c.get || c.set ? Object.defineProperty(t, n, c) : (t[n] = e[n]); - } - t.default = e; - })(n(2007)); - var c = l(n(8354)), - r = l(n(2910)), - a = l(n(2791)), - o = l(n(119)); - n(5127); - function l(e) { - return e && e.__esModule ? e : { default: e }; - } - function i() { - return ( - (i = - Object.assign || - function (e) { - for (var t = 1; t < arguments.length; t++) { - var n = arguments[t]; - for (var c in n) - Object.prototype.hasOwnProperty.call(n, c) && (e[c] = n[c]); - } - return e; - }), - i.apply(this, arguments) - ); - } - var s = function (e, t) { - return ( - e && - t && - t.split(" ").forEach(function (t) { - return (0, c.default)(e, t); - }) - ); - }, - u = function (e, t) { - return ( - e && - t && - t.split(" ").forEach(function (t) { - return (0, r.default)(e, t); - }) - ); - }, - h = (function (e) { - var t, n; - function c() { - for ( - var t, n = arguments.length, c = new Array(n), r = 0; - r < n; - r++ - ) - c[r] = arguments[r]; - return ( - ((t = - e.call.apply(e, [this].concat(c)) || - this).onEnter = function (e, n) { - var c = t.getClassNames(n ? "appear" : "enter").className; - t.removeClasses(e, "exit"), - s(e, c), - t.props.onEnter && t.props.onEnter(e, n); - }), - (t.onEntering = function (e, n) { - var c = t.getClassNames(n ? "appear" : "enter") - .activeClassName; - t.reflowAndAddClass(e, c), - t.props.onEntering && t.props.onEntering(e, n); - }), - (t.onEntered = function (e, n) { - var c = t.getClassNames("appear").doneClassName, - r = t.getClassNames("enter").doneClassName, - a = n ? c + " " + r : r; - t.removeClasses(e, n ? "appear" : "enter"), - s(e, a), - t.props.onEntered && t.props.onEntered(e, n); - }), - (t.onExit = function (e) { - var n = t.getClassNames("exit").className; - t.removeClasses(e, "appear"), - t.removeClasses(e, "enter"), - s(e, n), - t.props.onExit && t.props.onExit(e); - }), - (t.onExiting = function (e) { - var n = t.getClassNames("exit").activeClassName; - t.reflowAndAddClass(e, n), - t.props.onExiting && t.props.onExiting(e); - }), - (t.onExited = function (e) { - var n = t.getClassNames("exit").doneClassName; - t.removeClasses(e, "exit"), - s(e, n), - t.props.onExited && t.props.onExited(e); - }), - (t.getClassNames = function (e) { - var n = t.props.classNames, - c = "string" === typeof n, - r = c ? (c && n ? n + "-" : "") + e : n[e]; - return { - className: r, - activeClassName: c ? r + "-active" : n[e + "Active"], - doneClassName: c ? r + "-done" : n[e + "Done"], - }; - }), - t - ); - } - (n = e), - ((t = c).prototype = Object.create(n.prototype)), - (t.prototype.constructor = t), - (t.__proto__ = n); - var r = c.prototype; - return ( - (r.removeClasses = function (e, t) { - var n = this.getClassNames(t), - c = n.className, - r = n.activeClassName, - a = n.doneClassName; - c && u(e, c), r && u(e, r), a && u(e, a); - }), - (r.reflowAndAddClass = function (e, t) { - t && (e && e.scrollTop, s(e, t)); - }), - (r.render = function () { - var e = i({}, this.props); - return ( - delete e.classNames, - a.default.createElement( - o.default, - i({}, e, { - onEnter: this.onEnter, - onEntered: this.onEntered, - onEntering: this.onEntering, - onExit: this.onExit, - onExiting: this.onExiting, - onExited: this.onExited, - }) - ) - ); - }), - c - ); - })(a.default.Component); - (h.defaultProps = { classNames: "" }), (h.propTypes = {}); - var f = h; - (t.default = f), (e.exports = t.default); - }, - 8162: function (e, t, n) { - "use strict"; - (t.__esModule = !0), (t.default = void 0); - o(n(2007)); - var c = o(n(2791)), - r = n(4164), - a = o(n(2326)); - function o(e) { - return e && e.__esModule ? e : { default: e }; - } - var l = (function (e) { - var t, n; - function o() { - for ( - var t, n = arguments.length, c = new Array(n), r = 0; - r < n; - r++ - ) - c[r] = arguments[r]; - return ( - ((t = - e.call.apply(e, [this].concat(c)) || - this).handleEnter = function () { - for ( - var e = arguments.length, n = new Array(e), c = 0; - c < e; - c++ - ) - n[c] = arguments[c]; - return t.handleLifecycle("onEnter", 0, n); - }), - (t.handleEntering = function () { - for ( - var e = arguments.length, n = new Array(e), c = 0; - c < e; - c++ - ) - n[c] = arguments[c]; - return t.handleLifecycle("onEntering", 0, n); - }), - (t.handleEntered = function () { - for ( - var e = arguments.length, n = new Array(e), c = 0; - c < e; - c++ - ) - n[c] = arguments[c]; - return t.handleLifecycle("onEntered", 0, n); - }), - (t.handleExit = function () { - for ( - var e = arguments.length, n = new Array(e), c = 0; - c < e; - c++ - ) - n[c] = arguments[c]; - return t.handleLifecycle("onExit", 1, n); - }), - (t.handleExiting = function () { - for ( - var e = arguments.length, n = new Array(e), c = 0; - c < e; - c++ - ) - n[c] = arguments[c]; - return t.handleLifecycle("onExiting", 1, n); - }), - (t.handleExited = function () { - for ( - var e = arguments.length, n = new Array(e), c = 0; - c < e; - c++ - ) - n[c] = arguments[c]; - return t.handleLifecycle("onExited", 1, n); - }), - t - ); - } - (n = e), - ((t = o).prototype = Object.create(n.prototype)), - (t.prototype.constructor = t), - (t.__proto__ = n); - var l = o.prototype; - return ( - (l.handleLifecycle = function (e, t, n) { - var a, - o = this.props.children, - l = c.default.Children.toArray(o)[t]; - l.props[e] && (a = l.props)[e].apply(a, n), - this.props[e] && this.props[e]((0, r.findDOMNode)(this)); - }), - (l.render = function () { - var e = this.props, - t = e.children, - n = e.in, - r = (function (e, t) { - if (null == e) return {}; - var n, - c, - r = {}, - a = Object.keys(e); - for (c = 0; c < a.length; c++) - (n = a[c]), t.indexOf(n) >= 0 || (r[n] = e[n]); - return r; - })(e, ["children", "in"]), - o = c.default.Children.toArray(t), - l = o[0], - i = o[1]; - return ( - delete r.onEnter, - delete r.onEntering, - delete r.onEntered, - delete r.onExit, - delete r.onExiting, - delete r.onExited, - c.default.createElement( - a.default, - r, - n - ? c.default.cloneElement(l, { - key: "first", - onEnter: this.handleEnter, - onEntering: this.handleEntering, - onEntered: this.handleEntered, - }) - : c.default.cloneElement(i, { - key: "second", - onEnter: this.handleExit, - onEntering: this.handleExiting, - onEntered: this.handleExited, - }) - ) - ); - }), - o - ); - })(c.default.Component); - l.propTypes = {}; - var i = l; - (t.default = i), (e.exports = t.default); - }, - 119: function (e, t, n) { - "use strict"; - (t.__esModule = !0), - (t.default = t.EXITING = t.ENTERED = t.ENTERING = t.EXITED = t.UNMOUNTED = void 0); - var c = (function (e) { - if (e && e.__esModule) return e; - var t = {}; - if (null != e) - for (var n in e) - if (Object.prototype.hasOwnProperty.call(e, n)) { - var c = - Object.defineProperty && Object.getOwnPropertyDescriptor - ? Object.getOwnPropertyDescriptor(e, n) - : {}; - c.get || c.set - ? Object.defineProperty(t, n, c) - : (t[n] = e[n]); - } - return (t.default = e), t; - })(n(2007)), - r = l(n(2791)), - a = l(n(4164)), - o = n(3688); - n(5127); - function l(e) { - return e && e.__esModule ? e : { default: e }; - } - var i = "unmounted"; - t.UNMOUNTED = i; - var s = "exited"; - t.EXITED = s; - var u = "entering"; - t.ENTERING = u; - var h = "entered"; - t.ENTERED = h; - var f = "exiting"; - t.EXITING = f; - var p = (function (e) { - var t, n; - function c(t, n) { - var c; - c = e.call(this, t, n) || this; - var r, - a = n.transitionGroup, - o = a && !a.isMounting ? t.enter : t.appear; - return ( - (c.appearStatus = null), - t.in - ? o - ? ((r = s), (c.appearStatus = u)) - : (r = h) - : (r = t.unmountOnExit || t.mountOnEnter ? i : s), - (c.state = { status: r }), - (c.nextCallback = null), - c - ); - } - (n = e), - ((t = c).prototype = Object.create(n.prototype)), - (t.prototype.constructor = t), - (t.__proto__ = n); - var o = c.prototype; - return ( - (o.getChildContext = function () { - return { transitionGroup: null }; - }), - (c.getDerivedStateFromProps = function (e, t) { - return e.in && t.status === i ? { status: s } : null; - }), - (o.componentDidMount = function () { - this.updateStatus(!0, this.appearStatus); - }), - (o.componentDidUpdate = function (e) { - var t = null; - if (e !== this.props) { - var n = this.state.status; - this.props.in - ? n !== u && n !== h && (t = u) - : (n !== u && n !== h) || (t = f); - } - this.updateStatus(!1, t); - }), - (o.componentWillUnmount = function () { - this.cancelNextCallback(); - }), - (o.getTimeouts = function () { - var e, - t, - n, - c = this.props.timeout; - return ( - (e = t = n = c), - null != c && - "number" !== typeof c && - ((e = c.exit), - (t = c.enter), - (n = void 0 !== c.appear ? c.appear : t)), - { exit: e, enter: t, appear: n } - ); - }), - (o.updateStatus = function (e, t) { - if ((void 0 === e && (e = !1), null !== t)) { - this.cancelNextCallback(); - var n = a.default.findDOMNode(this); - t === u ? this.performEnter(n, e) : this.performExit(n); - } else - this.props.unmountOnExit && - this.state.status === s && - this.setState({ status: i }); - }), - (o.performEnter = function (e, t) { - var n = this, - c = this.props.enter, - r = this.context.transitionGroup - ? this.context.transitionGroup.isMounting - : t, - a = this.getTimeouts(), - o = r ? a.appear : a.enter; - t || c - ? (this.props.onEnter(e, r), - this.safeSetState({ status: u }, function () { - n.props.onEntering(e, r), - n.onTransitionEnd(e, o, function () { - n.safeSetState({ status: h }, function () { - n.props.onEntered(e, r); - }); - }); - })) - : this.safeSetState({ status: h }, function () { - n.props.onEntered(e); - }); - }), - (o.performExit = function (e) { - var t = this, - n = this.props.exit, - c = this.getTimeouts(); - n - ? (this.props.onExit(e), - this.safeSetState({ status: f }, function () { - t.props.onExiting(e), - t.onTransitionEnd(e, c.exit, function () { - t.safeSetState({ status: s }, function () { - t.props.onExited(e); - }); - }); - })) - : this.safeSetState({ status: s }, function () { - t.props.onExited(e); - }); - }), - (o.cancelNextCallback = function () { - null !== this.nextCallback && - (this.nextCallback.cancel(), (this.nextCallback = null)); - }), - (o.safeSetState = function (e, t) { - (t = this.setNextCallback(t)), this.setState(e, t); - }), - (o.setNextCallback = function (e) { - var t = this, - n = !0; - return ( - (this.nextCallback = function (c) { - n && ((n = !1), (t.nextCallback = null), e(c)); - }), - (this.nextCallback.cancel = function () { - n = !1; - }), - this.nextCallback - ); - }), - (o.onTransitionEnd = function (e, t, n) { - this.setNextCallback(n); - var c = null == t && !this.props.addEndListener; - e && !c - ? (this.props.addEndListener && - this.props.addEndListener(e, this.nextCallback), - null != t && setTimeout(this.nextCallback, t)) - : setTimeout(this.nextCallback, 0); - }), - (o.render = function () { - var e = this.state.status; - if (e === i) return null; - var t = this.props, - n = t.children, - c = (function (e, t) { - if (null == e) return {}; - var n, - c, - r = {}, - a = Object.keys(e); - for (c = 0; c < a.length; c++) - (n = a[c]), t.indexOf(n) >= 0 || (r[n] = e[n]); - return r; - })(t, ["children"]); - if ( - (delete c.in, - delete c.mountOnEnter, - delete c.unmountOnExit, - delete c.appear, - delete c.enter, - delete c.exit, - delete c.timeout, - delete c.addEndListener, - delete c.onEnter, - delete c.onEntering, - delete c.onEntered, - delete c.onExit, - delete c.onExiting, - delete c.onExited, - "function" === typeof n) - ) - return n(e, c); - var a = r.default.Children.only(n); - return r.default.cloneElement(a, c); - }), - c - ); - })(r.default.Component); - function v() {} - (p.contextTypes = { transitionGroup: c.object }), - (p.childContextTypes = { transitionGroup: function () {} }), - (p.propTypes = {}), - (p.defaultProps = { - in: !1, - mountOnEnter: !1, - unmountOnExit: !1, - appear: !1, - enter: !0, - exit: !0, - onEnter: v, - onEntering: v, - onEntered: v, - onExit: v, - onExiting: v, - onExited: v, - }), - (p.UNMOUNTED = 0), - (p.EXITED = 1), - (p.ENTERING = 2), - (p.ENTERED = 3), - (p.EXITING = 4); - var d = (0, o.polyfill)(p); - t.default = d; - }, - 2326: function (e, t, n) { - "use strict"; - (t.__esModule = !0), (t.default = void 0); - var c = l(n(2007)), - r = l(n(2791)), - a = n(3688), - o = n(8546); - function l(e) { - return e && e.__esModule ? e : { default: e }; - } - function i() { - return ( - (i = - Object.assign || - function (e) { - for (var t = 1; t < arguments.length; t++) { - var n = arguments[t]; - for (var c in n) - Object.prototype.hasOwnProperty.call(n, c) && (e[c] = n[c]); - } - return e; - }), - i.apply(this, arguments) - ); - } - function s(e) { - if (void 0 === e) - throw new ReferenceError( - "this hasn't been initialised - super() hasn't been called" - ); - return e; - } - var u = - Object.values || - function (e) { - return Object.keys(e).map(function (t) { - return e[t]; - }); - }, - h = (function (e) { - var t, n; - function c(t, n) { - var c, - r = (c = e.call(this, t, n) || this).handleExited.bind(s(s(c))); - return (c.state = { handleExited: r, firstRender: !0 }), c; - } - (n = e), - ((t = c).prototype = Object.create(n.prototype)), - (t.prototype.constructor = t), - (t.__proto__ = n); - var a = c.prototype; - return ( - (a.getChildContext = function () { - return { transitionGroup: { isMounting: !this.appeared } }; - }), - (a.componentDidMount = function () { - (this.appeared = !0), (this.mounted = !0); - }), - (a.componentWillUnmount = function () { - this.mounted = !1; - }), - (c.getDerivedStateFromProps = function (e, t) { - var n = t.children, - c = t.handleExited; - return { - children: t.firstRender - ? (0, o.getInitialChildMapping)(e, c) - : (0, o.getNextChildMapping)(e, n, c), - firstRender: !1, - }; - }), - (a.handleExited = function (e, t) { - var n = (0, o.getChildMapping)(this.props.children); - e.key in n || - (e.props.onExited && e.props.onExited(t), - this.mounted && - this.setState(function (t) { - var n = i({}, t.children); - return delete n[e.key], { children: n }; - })); - }), - (a.render = function () { - var e = this.props, - t = e.component, - n = e.childFactory, - c = (function (e, t) { - if (null == e) return {}; - var n, - c, - r = {}, - a = Object.keys(e); - for (c = 0; c < a.length; c++) - (n = a[c]), t.indexOf(n) >= 0 || (r[n] = e[n]); - return r; - })(e, ["component", "childFactory"]), - a = u(this.state.children).map(n); - return ( - delete c.appear, - delete c.enter, - delete c.exit, - null === t ? a : r.default.createElement(t, c, a) - ); - }), - c - ); - })(r.default.Component); - (h.childContextTypes = { - transitionGroup: c.default.object.isRequired, - }), - (h.propTypes = {}), - (h.defaultProps = { - component: "div", - childFactory: function (e) { - return e; - }, - }); - var f = (0, a.polyfill)(h); - (t.default = f), (e.exports = t.default); - }, - 8267: function (e, t, n) { - "use strict"; - var c = l(n(6664)), - r = l(n(8162)), - a = l(n(2326)), - o = l(n(119)); - function l(e) { - return e && e.__esModule ? e : { default: e }; - } - e.exports = { - Transition: o.default, - TransitionGroup: a.default, - ReplaceTransition: r.default, - CSSTransition: c.default, - }; - }, - 8546: function (e, t, n) { - "use strict"; - (t.__esModule = !0), - (t.getChildMapping = r), - (t.mergeChildMappings = a), - (t.getInitialChildMapping = function (e, t) { - return r(e.children, function (n) { - return (0, - c.cloneElement)(n, { onExited: t.bind(null, n), in: !0, appear: o(n, "appear", e), enter: o(n, "enter", e), exit: o(n, "exit", e) }); - }); - }), - (t.getNextChildMapping = function (e, t, n) { - var l = r(e.children), - i = a(t, l); - return ( - Object.keys(i).forEach(function (r) { - var a = i[r]; - if ((0, c.isValidElement)(a)) { - var s = r in t, - u = r in l, - h = t[r], - f = (0, c.isValidElement)(h) && !h.props.in; - !u || (s && !f) - ? u || !s || f - ? u && - s && - (0, c.isValidElement)(h) && - (i[r] = (0, c.cloneElement)(a, { - onExited: n.bind(null, a), - in: h.props.in, - exit: o(a, "exit", e), - enter: o(a, "enter", e), - })) - : (i[r] = (0, c.cloneElement)(a, { in: !1 })) - : (i[r] = (0, c.cloneElement)(a, { - onExited: n.bind(null, a), - in: !0, - exit: o(a, "exit", e), - enter: o(a, "enter", e), - })); - } - }), - i - ); - }); - var c = n(2791); - function r(e, t) { - var n = Object.create(null); - return ( - e && - c.Children.map(e, function (e) { - return e; - }).forEach(function (e) { - n[e.key] = (function (e) { - return t && (0, c.isValidElement)(e) ? t(e) : e; - })(e); - }), - n - ); - } - function a(e, t) { - function n(n) { - return n in t ? t[n] : e[n]; - } - (e = e || {}), (t = t || {}); - var c, - r = Object.create(null), - a = []; - for (var o in e) - o in t ? a.length && ((r[o] = a), (a = [])) : a.push(o); - var l = {}; - for (var i in t) { - if (r[i]) - for (c = 0; c < r[i].length; c++) { - var s = r[i][c]; - l[r[i][c]] = n(s); - } - l[i] = n(i); - } - for (c = 0; c < a.length; c++) l[a[c]] = n(a[c]); - return l; - } - function o(e, t, n) { - return null != n[t] ? n[t] : e.props[t]; - } - }, - 5127: function (e, t, n) { - "use strict"; - (t.__esModule = !0), (t.classNamesShape = t.timeoutsShape = void 0); - var c; - (c = n(2007)) && c.__esModule; - t.timeoutsShape = null; - t.classNamesShape = null; - }, - 6374: function (e, t, n) { - "use strict"; - n(1725); - var c = n(2791), - r = 60103; - if ( - ((t.Fragment = 60107), "function" === typeof Symbol && Symbol.for) - ) { - var a = Symbol.for; - (r = a("react.element")), (t.Fragment = a("react.fragment")); - } - var o = - c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED - .ReactCurrentOwner, - l = Object.prototype.hasOwnProperty, - i = { key: !0, ref: !0, __self: !0, __source: !0 }; - function s(e, t, n) { - var c, - a = {}, - s = null, - u = null; - for (c in (void 0 !== n && (s = "" + n), - void 0 !== t.key && (s = "" + t.key), - void 0 !== t.ref && (u = t.ref), - t)) - l.call(t, c) && !i.hasOwnProperty(c) && (a[c] = t[c]); - if (e && e.defaultProps) - for (c in (t = e.defaultProps)) void 0 === a[c] && (a[c] = t[c]); - return { - $$typeof: r, - type: e, - key: s, - ref: u, - props: a, - _owner: o.current, - }; - } - (t.jsx = s), (t.jsxs = s); - }, - 9117: function (e, t, n) { - "use strict"; - var c = n(1725), - r = 60103, - a = 60106; - (t.Fragment = 60107), (t.StrictMode = 60108), (t.Profiler = 60114); - var o = 60109, - l = 60110, - i = 60112; - t.Suspense = 60113; - var s = 60115, - u = 60116; - if ("function" === typeof Symbol && Symbol.for) { - var h = Symbol.for; - (r = h("react.element")), - (a = h("react.portal")), - (t.Fragment = h("react.fragment")), - (t.StrictMode = h("react.strict_mode")), - (t.Profiler = h("react.profiler")), - (o = h("react.provider")), - (l = h("react.context")), - (i = h("react.forward_ref")), - (t.Suspense = h("react.suspense")), - (s = h("react.memo")), - (u = h("react.lazy")); - } - var f = "function" === typeof Symbol && Symbol.iterator; - function p(e) { - for ( - var t = - "https://reactjs.org/docs/error-decoder.html?invariant=" + e, - n = 1; - n < arguments.length; - n++ - ) - t += "&args[]=" + encodeURIComponent(arguments[n]); - return ( - "Minified React error #" + - e + - "; visit " + - t + - " for the full message or use the non-minified dev environment for full errors and additional helpful warnings." - ); - } - var v = { - isMounted: function () { - return !1; - }, - enqueueForceUpdate: function () {}, - enqueueReplaceState: function () {}, - enqueueSetState: function () {}, - }, - d = {}; - function m(e, t, n) { - (this.props = e), - (this.context = t), - (this.refs = d), - (this.updater = n || v); - } - function z() {} - function y(e, t, n) { - (this.props = e), - (this.context = t), - (this.refs = d), - (this.updater = n || v); - } - (m.prototype.isReactComponent = {}), - (m.prototype.setState = function (e, t) { - if ("object" !== typeof e && "function" !== typeof e && null != e) - throw Error(p(85)); - this.updater.enqueueSetState(this, e, t, "setState"); - }), - (m.prototype.forceUpdate = function (e) { - this.updater.enqueueForceUpdate(this, e, "forceUpdate"); - }), - (z.prototype = m.prototype); - var g = (y.prototype = new z()); - (g.constructor = y), c(g, m.prototype), (g.isPureReactComponent = !0); - var M = { current: null }, - H = Object.prototype.hasOwnProperty, - b = { key: !0, ref: !0, __self: !0, __source: !0 }; - function V(e, t, n) { - var c, - a = {}, - o = null, - l = null; - if (null != t) - for (c in (void 0 !== t.ref && (l = t.ref), - void 0 !== t.key && (o = "" + t.key), - t)) - H.call(t, c) && !b.hasOwnProperty(c) && (a[c] = t[c]); - var i = arguments.length - 2; - if (1 === i) a.children = n; - else if (1 < i) { - for (var s = Array(i), u = 0; u < i; u++) s[u] = arguments[u + 2]; - a.children = s; - } - if (e && e.defaultProps) - for (c in (i = e.defaultProps)) void 0 === a[c] && (a[c] = i[c]); - return { - $$typeof: r, - type: e, - key: o, - ref: l, - props: a, - _owner: M.current, - }; - } - function L(e) { - return "object" === typeof e && null !== e && e.$$typeof === r; - } - var w = /\/+/g; - function C(e, t) { - return "object" === typeof e && null !== e && null != e.key - ? (function (e) { - var t = { "=": "=0", ":": "=2" }; - return ( - "$" + - e.replace(/[=:]/g, function (e) { - return t[e]; - }) - ); - })("" + e.key) - : t.toString(36); - } - function E(e, t, n, c, o) { - var l = typeof e; - ("undefined" !== l && "boolean" !== l) || (e = null); - var i = !1; - if (null === e) i = !0; - else - switch (l) { - case "string": - case "number": - i = !0; - break; - case "object": - switch (e.$$typeof) { - case r: - case a: - i = !0; - } - } - if (i) - return ( - (o = o((i = e))), - (e = "" === c ? "." + C(i, 0) : c), - Array.isArray(o) - ? ((n = ""), - null != e && (n = e.replace(w, "$&/") + "/"), - E(o, t, n, "", function (e) { - return e; - })) - : null != o && - (L(o) && - (o = (function (e, t) { - return { - $$typeof: r, - type: e.type, - key: t, - ref: e.ref, - props: e.props, - _owner: e._owner, - }; - })( - o, - n + - (!o.key || (i && i.key === o.key) - ? "" - : ("" + o.key).replace(w, "$&/") + "/") + - e - )), - t.push(o)), - 1 - ); - if (((i = 0), (c = "" === c ? "." : c + ":"), Array.isArray(e))) - for (var s = 0; s < e.length; s++) { - var u = c + C((l = e[s]), s); - i += E(l, t, n, u, o); - } - else if ( - ((u = (function (e) { - return null === e || "object" !== typeof e - ? null - : "function" === typeof (e = (f && e[f]) || e["@@iterator"]) - ? e - : null; - })(e)), - "function" === typeof u) - ) - for (e = u.call(e), s = 0; !(l = e.next()).done; ) - i += E((l = l.value), t, n, (u = c + C(l, s++)), o); - else if ("object" === l) - throw ( - ((t = "" + e), - Error( - p( - 31, - "[object Object]" === t - ? "object with keys {" + Object.keys(e).join(", ") + "}" - : t - ) - )) - ); - return i; - } - function S(e, t, n) { - if (null == e) return e; - var c = [], - r = 0; - return ( - E(e, c, "", "", function (e) { - return t.call(n, e, r++); - }), - c - ); - } - function A(e) { - if (-1 === e._status) { - var t = e._result; - (t = t()), - (e._status = 0), - (e._result = t), - t.then( - function (t) { - 0 === e._status && - ((t = t.default), (e._status = 1), (e._result = t)); - }, - function (t) { - 0 === e._status && ((e._status = 2), (e._result = t)); - } - ); - } - if (1 === e._status) return e._result; - throw e._result; - } - var x = { current: null }; - function k() { - var e = x.current; - if (null === e) throw Error(p(321)); - return e; - } - var _ = { - ReactCurrentDispatcher: x, - ReactCurrentBatchConfig: { transition: 0 }, - ReactCurrentOwner: M, - IsSomeRendererActing: { current: !1 }, - assign: c, - }; - (t.Children = { - map: S, - forEach: function (e, t, n) { - S( - e, - function () { - t.apply(this, arguments); - }, - n - ); - }, - count: function (e) { - var t = 0; - return ( - S(e, function () { - t++; - }), - t - ); - }, - toArray: function (e) { - return ( - S(e, function (e) { - return e; - }) || [] - ); - }, - only: function (e) { - if (!L(e)) throw Error(p(143)); - return e; - }, - }), - (t.Component = m), - (t.PureComponent = y), - (t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = _), - (t.cloneElement = function (e, t, n) { - if (null === e || void 0 === e) throw Error(p(267, e)); - var a = c({}, e.props), - o = e.key, - l = e.ref, - i = e._owner; - if (null != t) { - if ( - (void 0 !== t.ref && ((l = t.ref), (i = M.current)), - void 0 !== t.key && (o = "" + t.key), - e.type && e.type.defaultProps) - ) - var s = e.type.defaultProps; - for (u in t) - H.call(t, u) && - !b.hasOwnProperty(u) && - (a[u] = void 0 === t[u] && void 0 !== s ? s[u] : t[u]); - } - var u = arguments.length - 2; - if (1 === u) a.children = n; - else if (1 < u) { - s = Array(u); - for (var h = 0; h < u; h++) s[h] = arguments[h + 2]; - a.children = s; - } - return { - $$typeof: r, - type: e.type, - key: o, - ref: l, - props: a, - _owner: i, - }; - }), - (t.createContext = function (e, t) { - return ( - void 0 === t && (t = null), - ((e = { - $$typeof: l, - _calculateChangedBits: t, - _currentValue: e, - _currentValue2: e, - _threadCount: 0, - Provider: null, - Consumer: null, - }).Provider = { $$typeof: o, _context: e }), - (e.Consumer = e) - ); - }), - (t.createElement = V), - (t.createFactory = function (e) { - var t = V.bind(null, e); - return (t.type = e), t; - }), - (t.createRef = function () { - return { current: null }; - }), - (t.forwardRef = function (e) { - return { $$typeof: i, render: e }; - }), - (t.isValidElement = L), - (t.lazy = function (e) { - return { - $$typeof: u, - _payload: { _status: -1, _result: e }, - _init: A, - }; - }), - (t.memo = function (e, t) { - return { $$typeof: s, type: e, compare: void 0 === t ? null : t }; - }), - (t.useCallback = function (e, t) { - return k().useCallback(e, t); - }), - (t.useContext = function (e, t) { - return k().useContext(e, t); - }), - (t.useDebugValue = function () {}), - (t.useEffect = function (e, t) { - return k().useEffect(e, t); - }), - (t.useImperativeHandle = function (e, t, n) { - return k().useImperativeHandle(e, t, n); - }), - (t.useLayoutEffect = function (e, t) { - return k().useLayoutEffect(e, t); - }), - (t.useMemo = function (e, t) { - return k().useMemo(e, t); - }), - (t.useReducer = function (e, t, n) { - return k().useReducer(e, t, n); - }), - (t.useRef = function (e) { - return k().useRef(e); - }), - (t.useState = function (e) { - return k().useState(e); - }), - (t.version = "17.0.2"); - }, - 2791: function (e, t, n) { - "use strict"; - e.exports = n(9117); - }, - 184: function (e, t, n) { - "use strict"; - e.exports = n(6374); - }, - 9727: function (e) { - var t = (function (e) { - "use strict"; - var t, - n = Object.prototype, - c = n.hasOwnProperty, - r = "function" === typeof Symbol ? Symbol : {}, - a = r.iterator || "@@iterator", - o = r.asyncIterator || "@@asyncIterator", - l = r.toStringTag || "@@toStringTag"; - function i(e, t, n) { - return ( - Object.defineProperty(e, t, { - value: n, - enumerable: !0, - configurable: !0, - writable: !0, - }), - e[t] - ); - } - try { - i({}, ""); - } catch (k) { - i = function (e, t, n) { - return (e[t] = n); - }; - } - function s(e, t, n, c) { - var r = t && t.prototype instanceof m ? t : m, - a = Object.create(r.prototype), - o = new S(c || []); - return ( - (a._invoke = (function (e, t, n) { - var c = h; - return function (r, a) { - if (c === p) throw new Error("Generator is already running"); - if (c === v) { - if ("throw" === r) throw a; - return x(); - } - for (n.method = r, n.arg = a; ; ) { - var o = n.delegate; - if (o) { - var l = w(o, n); - if (l) { - if (l === d) continue; - return l; - } - } - if ("next" === n.method) n.sent = n._sent = n.arg; - else if ("throw" === n.method) { - if (c === h) throw ((c = v), n.arg); - n.dispatchException(n.arg); - } else "return" === n.method && n.abrupt("return", n.arg); - c = p; - var i = u(e, t, n); - if ("normal" === i.type) { - if (((c = n.done ? v : f), i.arg === d)) continue; - return { value: i.arg, done: n.done }; - } - "throw" === i.type && - ((c = v), (n.method = "throw"), (n.arg = i.arg)); - } - }; - })(e, n, o)), - a - ); - } - function u(e, t, n) { - try { - return { type: "normal", arg: e.call(t, n) }; - } catch (k) { - return { type: "throw", arg: k }; - } - } - e.wrap = s; - var h = "suspendedStart", - f = "suspendedYield", - p = "executing", - v = "completed", - d = {}; - function m() {} - function z() {} - function y() {} - var g = {}; - i(g, a, function () { - return this; - }); - var M = Object.getPrototypeOf, - H = M && M(M(A([]))); - H && H !== n && c.call(H, a) && (g = H); - var b = (y.prototype = m.prototype = Object.create(g)); - function V(e) { - ["next", "throw", "return"].forEach(function (t) { - i(e, t, function (e) { - return this._invoke(t, e); - }); - }); - } - function L(e, t) { - function n(r, a, o, l) { - var i = u(e[r], e, a); - if ("throw" !== i.type) { - var s = i.arg, - h = s.value; - return h && "object" === typeof h && c.call(h, "__await") - ? t.resolve(h.__await).then( - function (e) { - n("next", e, o, l); - }, - function (e) { - n("throw", e, o, l); - } - ) - : t.resolve(h).then( - function (e) { - (s.value = e), o(s); - }, - function (e) { - return n("throw", e, o, l); - } - ); - } - l(i.arg); - } - var r; - this._invoke = function (e, c) { - function a() { - return new t(function (t, r) { - n(e, c, t, r); - }); - } - return (r = r ? r.then(a, a) : a()); - }; - } - function w(e, n) { - var c = e.iterator[n.method]; - if (c === t) { - if (((n.delegate = null), "throw" === n.method)) { - if ( - e.iterator.return && - ((n.method = "return"), - (n.arg = t), - w(e, n), - "throw" === n.method) - ) - return d; - (n.method = "throw"), - (n.arg = new TypeError( - "The iterator does not provide a 'throw' method" - )); - } - return d; - } - var r = u(c, e.iterator, n.arg); - if ("throw" === r.type) - return ( - (n.method = "throw"), (n.arg = r.arg), (n.delegate = null), d - ); - var a = r.arg; - return a - ? a.done - ? ((n[e.resultName] = a.value), - (n.next = e.nextLoc), - "return" !== n.method && ((n.method = "next"), (n.arg = t)), - (n.delegate = null), - d) - : a - : ((n.method = "throw"), - (n.arg = new TypeError("iterator result is not an object")), - (n.delegate = null), - d); - } - function C(e) { - var t = { tryLoc: e[0] }; - 1 in e && (t.catchLoc = e[1]), - 2 in e && ((t.finallyLoc = e[2]), (t.afterLoc = e[3])), - this.tryEntries.push(t); - } - function E(e) { - var t = e.completion || {}; - (t.type = "normal"), delete t.arg, (e.completion = t); - } - function S(e) { - (this.tryEntries = [{ tryLoc: "root" }]), - e.forEach(C, this), - this.reset(!0); - } - function A(e) { - if (e) { - var n = e[a]; - if (n) return n.call(e); - if ("function" === typeof e.next) return e; - if (!isNaN(e.length)) { - var r = -1, - o = function n() { - for (; ++r < e.length; ) - if (c.call(e, r)) - return (n.value = e[r]), (n.done = !1), n; - return (n.value = t), (n.done = !0), n; - }; - return (o.next = o); - } - } - return { next: x }; - } - function x() { - return { value: t, done: !0 }; - } - return ( - (z.prototype = y), - i(b, "constructor", y), - i(y, "constructor", z), - (z.displayName = i(y, l, "GeneratorFunction")), - (e.isGeneratorFunction = function (e) { - var t = "function" === typeof e && e.constructor; - return ( - !!t && - (t === z || "GeneratorFunction" === (t.displayName || t.name)) - ); - }), - (e.mark = function (e) { - return ( - Object.setPrototypeOf - ? Object.setPrototypeOf(e, y) - : ((e.__proto__ = y), i(e, l, "GeneratorFunction")), - (e.prototype = Object.create(b)), - e - ); - }), - (e.awrap = function (e) { - return { __await: e }; - }), - V(L.prototype), - i(L.prototype, o, function () { - return this; - }), - (e.AsyncIterator = L), - (e.async = function (t, n, c, r, a) { - void 0 === a && (a = Promise); - var o = new L(s(t, n, c, r), a); - return e.isGeneratorFunction(n) - ? o - : o.next().then(function (e) { - return e.done ? e.value : o.next(); - }); - }), - V(b), - i(b, l, "Generator"), - i(b, a, function () { - return this; - }), - i(b, "toString", function () { - return "[object Generator]"; - }), - (e.keys = function (e) { - var t = []; - for (var n in e) t.push(n); - return ( - t.reverse(), - function n() { - for (; t.length; ) { - var c = t.pop(); - if (c in e) return (n.value = c), (n.done = !1), n; - } - return (n.done = !0), n; - } - ); - }), - (e.values = A), - (S.prototype = { - constructor: S, - reset: function (e) { - if ( - ((this.prev = 0), - (this.next = 0), - (this.sent = this._sent = t), - (this.done = !1), - (this.delegate = null), - (this.method = "next"), - (this.arg = t), - this.tryEntries.forEach(E), - !e) - ) - for (var n in this) - "t" === n.charAt(0) && - c.call(this, n) && - !isNaN(+n.slice(1)) && - (this[n] = t); - }, - stop: function () { - this.done = !0; - var e = this.tryEntries[0].completion; - if ("throw" === e.type) throw e.arg; - return this.rval; - }, - dispatchException: function (e) { - if (this.done) throw e; - var n = this; - function r(c, r) { - return ( - (l.type = "throw"), - (l.arg = e), - (n.next = c), - r && ((n.method = "next"), (n.arg = t)), - !!r - ); - } - for (var a = this.tryEntries.length - 1; a >= 0; --a) { - var o = this.tryEntries[a], - l = o.completion; - if ("root" === o.tryLoc) return r("end"); - if (o.tryLoc <= this.prev) { - var i = c.call(o, "catchLoc"), - s = c.call(o, "finallyLoc"); - if (i && s) { - if (this.prev < o.catchLoc) return r(o.catchLoc, !0); - if (this.prev < o.finallyLoc) return r(o.finallyLoc); - } else if (i) { - if (this.prev < o.catchLoc) return r(o.catchLoc, !0); - } else { - if (!s) - throw new Error( - "try statement without catch or finally" - ); - if (this.prev < o.finallyLoc) return r(o.finallyLoc); - } - } - } - }, - abrupt: function (e, t) { - for (var n = this.tryEntries.length - 1; n >= 0; --n) { - var r = this.tryEntries[n]; - if ( - r.tryLoc <= this.prev && - c.call(r, "finallyLoc") && - this.prev < r.finallyLoc - ) { - var a = r; - break; - } - } - a && - ("break" === e || "continue" === e) && - a.tryLoc <= t && - t <= a.finallyLoc && - (a = null); - var o = a ? a.completion : {}; - return ( - (o.type = e), - (o.arg = t), - a - ? ((this.method = "next"), (this.next = a.finallyLoc), d) - : this.complete(o) - ); - }, - complete: function (e, t) { - if ("throw" === e.type) throw e.arg; - return ( - "break" === e.type || "continue" === e.type - ? (this.next = e.arg) - : "return" === e.type - ? ((this.rval = this.arg = e.arg), - (this.method = "return"), - (this.next = "end")) - : "normal" === e.type && t && (this.next = t), - d - ); - }, - finish: function (e) { - for (var t = this.tryEntries.length - 1; t >= 0; --t) { - var n = this.tryEntries[t]; - if (n.finallyLoc === e) - return this.complete(n.completion, n.afterLoc), E(n), d; - } - }, - catch: function (e) { - for (var t = this.tryEntries.length - 1; t >= 0; --t) { - var n = this.tryEntries[t]; - if (n.tryLoc === e) { - var c = n.completion; - if ("throw" === c.type) { - var r = c.arg; - E(n); - } - return r; - } - } - throw new Error("illegal catch attempt"); - }, - delegateYield: function (e, n, c) { - return ( - (this.delegate = { - iterator: A(e), - resultName: n, - nextLoc: c, - }), - "next" === this.method && (this.arg = t), - d - ); - }, - }), - e - ); - })(e.exports); - try { - regeneratorRuntime = t; - } catch (n) { - "object" === typeof globalThis - ? (globalThis.regeneratorRuntime = t) - : Function("r", "regeneratorRuntime = r")(t); - } - }, - 5844: function (e) { - "use strict"; - var t = Object, - n = TypeError; - e.exports = function () { - if (null != this && this !== t(this)) - throw new n("RegExp.prototype.flags getter called on non-object"); - var e = ""; - return ( - this.hasIndices && (e += "d"), - this.global && (e += "g"), - this.ignoreCase && (e += "i"), - this.multiline && (e += "m"), - this.dotAll && (e += "s"), - this.unicode && (e += "u"), - this.sticky && (e += "y"), - e - ); - }; - }, - 3535: function (e, t, n) { - "use strict"; - var c = n(9396), - r = n(9722), - a = n(5844), - o = n(1334), - l = n(7888), - i = r(o()); - c(i, { getPolyfill: o, implementation: a, shim: l }), (e.exports = i); - }, - 1334: function (e, t, n) { - "use strict"; - var c = n(5844), - r = n(9396).supportsDescriptors, - a = Object.getOwnPropertyDescriptor; - e.exports = function () { - if (r && "gim" === /a/gim.flags) { - var e = a(RegExp.prototype, "flags"); - if ( - e && - "function" === typeof e.get && - "boolean" === typeof /a/.dotAll - ) - return e.get; - } - return c; - }; - }, - 7888: function (e, t, n) { - "use strict"; - var c = n(9396).supportsDescriptors, - r = n(1334), - a = Object.getOwnPropertyDescriptor, - o = Object.defineProperty, - l = TypeError, - i = Object.getPrototypeOf, - s = /a/; - e.exports = function () { - if (!c || !i) - throw new l( - "RegExp.prototype.flags requires a true ES5 environment that supports property descriptors" - ); - var e = r(), - t = i(s), - n = a(t, "flags"); - return ( - (n && n.get === e) || - o(t, "flags", { configurable: !0, enumerable: !1, get: e }), - e - ); - }; - }, - 6813: function (e, t) { - "use strict"; - var n, c, r, a; - if ( - "object" === typeof performance && - "function" === typeof performance.now - ) { - var o = performance; - t.unstable_now = function () { - return o.now(); - }; - } else { - var l = Date, - i = l.now(); - t.unstable_now = function () { - return l.now() - i; - }; - } - if ( - "undefined" === typeof window || - "function" !== typeof MessageChannel - ) { - var s = null, - u = null, - h = function e() { - if (null !== s) - try { - var n = t.unstable_now(); - s(!0, n), (s = null); - } catch (c) { - throw (setTimeout(e, 0), c); - } - }; - (n = function (e) { - null !== s ? setTimeout(n, 0, e) : ((s = e), setTimeout(h, 0)); - }), - (c = function (e, t) { - u = setTimeout(e, t); - }), - (r = function () { - clearTimeout(u); - }), - (t.unstable_shouldYield = function () { - return !1; - }), - (a = t.unstable_forceFrameRate = function () {}); - } else { - var f = window.setTimeout, - p = window.clearTimeout; - if ("undefined" !== typeof console) { - var v = window.cancelAnimationFrame; - "function" !== typeof window.requestAnimationFrame && - console.error( - "This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills" - ), - "function" !== typeof v && - console.error( - "This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills" - ); - } - var d = !1, - m = null, - z = -1, - y = 5, - g = 0; - (t.unstable_shouldYield = function () { - return t.unstable_now() >= g; - }), - (a = function () {}), - (t.unstable_forceFrameRate = function (e) { - 0 > e || 125 < e - ? console.error( - "forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported" - ) - : (y = 0 < e ? Math.floor(1e3 / e) : 5); - }); - var M = new MessageChannel(), - H = M.port2; - (M.port1.onmessage = function () { - if (null !== m) { - var e = t.unstable_now(); - g = e + y; - try { - m(!0, e) ? H.postMessage(null) : ((d = !1), (m = null)); - } catch (n) { - throw (H.postMessage(null), n); - } - } else d = !1; - }), - (n = function (e) { - (m = e), d || ((d = !0), H.postMessage(null)); - }), - (c = function (e, n) { - z = f(function () { - e(t.unstable_now()); - }, n); - }), - (r = function () { - p(z), (z = -1); - }); - } - function b(e, t) { - var n = e.length; - e.push(t); - e: for (;;) { - var c = (n - 1) >>> 1, - r = e[c]; - if (!(void 0 !== r && 0 < w(r, t))) break e; - (e[c] = t), (e[n] = r), (n = c); - } - } - function V(e) { - return void 0 === (e = e[0]) ? null : e; - } - function L(e) { - var t = e[0]; - if (void 0 !== t) { - var n = e.pop(); - if (n !== t) { - e[0] = n; - e: for (var c = 0, r = e.length; c < r; ) { - var a = 2 * (c + 1) - 1, - o = e[a], - l = a + 1, - i = e[l]; - if (void 0 !== o && 0 > w(o, n)) - void 0 !== i && 0 > w(i, o) - ? ((e[c] = i), (e[l] = n), (c = l)) - : ((e[c] = o), (e[a] = n), (c = a)); - else { - if (!(void 0 !== i && 0 > w(i, n))) break e; - (e[c] = i), (e[l] = n), (c = l); - } - } - } - return t; - } - return null; - } - function w(e, t) { - var n = e.sortIndex - t.sortIndex; - return 0 !== n ? n : e.id - t.id; - } - var C = [], - E = [], - S = 1, - A = null, - x = 3, - k = !1, - _ = !1, - O = !1; - function P(e) { - for (var t = V(E); null !== t; ) { - if (null === t.callback) L(E); - else { - if (!(t.startTime <= e)) break; - L(E), (t.sortIndex = t.expirationTime), b(C, t); - } - t = V(E); - } - } - function N(e) { - if (((O = !1), P(e), !_)) - if (null !== V(C)) (_ = !0), n(T); - else { - var t = V(E); - null !== t && c(N, t.startTime - e); - } - } - function T(e, n) { - (_ = !1), O && ((O = !1), r()), (k = !0); - var a = x; - try { - for ( - P(n), A = V(C); - null !== A && - (!(A.expirationTime > n) || (e && !t.unstable_shouldYield())); - - ) { - var o = A.callback; - if ("function" === typeof o) { - (A.callback = null), (x = A.priorityLevel); - var l = o(A.expirationTime <= n); - (n = t.unstable_now()), - "function" === typeof l - ? (A.callback = l) - : A === V(C) && L(C), - P(n); - } else L(C); - A = V(C); - } - if (null !== A) var i = !0; - else { - var s = V(E); - null !== s && c(N, s.startTime - n), (i = !1); - } - return i; - } finally { - (A = null), (x = a), (k = !1); - } - } - var j = a; - (t.unstable_IdlePriority = 5), - (t.unstable_ImmediatePriority = 1), - (t.unstable_LowPriority = 4), - (t.unstable_NormalPriority = 3), - (t.unstable_Profiling = null), - (t.unstable_UserBlockingPriority = 2), - (t.unstable_cancelCallback = function (e) { - e.callback = null; - }), - (t.unstable_continueExecution = function () { - _ || k || ((_ = !0), n(T)); - }), - (t.unstable_getCurrentPriorityLevel = function () { - return x; - }), - (t.unstable_getFirstCallbackNode = function () { - return V(C); - }), - (t.unstable_next = function (e) { - switch (x) { - case 1: - case 2: - case 3: - var t = 3; - break; - default: - t = x; - } - var n = x; - x = t; - try { - return e(); - } finally { - x = n; - } - }), - (t.unstable_pauseExecution = function () {}), - (t.unstable_requestPaint = j), - (t.unstable_runWithPriority = function (e, t) { - switch (e) { - case 1: - case 2: - case 3: - case 4: - case 5: - break; - default: - e = 3; - } - var n = x; - x = e; - try { - return t(); - } finally { - x = n; - } - }), - (t.unstable_scheduleCallback = function (e, a, o) { - var l = t.unstable_now(); - switch ( - ("object" === typeof o && null !== o - ? (o = "number" === typeof (o = o.delay) && 0 < o ? l + o : l) - : (o = l), - e) - ) { - case 1: - var i = -1; - break; - case 2: - i = 250; - break; - case 5: - i = 1073741823; - break; - case 4: - i = 1e4; - break; - default: - i = 5e3; - } - return ( - (e = { - id: S++, - callback: a, - priorityLevel: e, - startTime: o, - expirationTime: (i = o + i), - sortIndex: -1, - }), - o > l - ? ((e.sortIndex = o), - b(E, e), - null === V(C) && - e === V(E) && - (O ? r() : (O = !0), c(N, o - l))) - : ((e.sortIndex = i), b(C, e), _ || k || ((_ = !0), n(T))), - e - ); - }), - (t.unstable_wrapCallback = function (e) { - var t = x; - return function () { - var n = x; - x = t; - try { - return e.apply(this, arguments); - } finally { - x = n; - } - }; - }); - }, - 5296: function (e, t, n) { - "use strict"; - e.exports = n(6813); - }, - 2391: function (e) { - "use strict"; - var t = function () {}; - e.exports = t; - }, - }, - t = {}; - function n(c) { - var r = t[c]; - if (void 0 !== r) return r.exports; - var a = (t[c] = { exports: {} }); - return e[c](a, a.exports, n), a.exports; - } - (n.n = function (e) { - var t = - e && e.__esModule - ? function () { - return e.default; - } - : function () { - return e; - }; - return n.d(t, { a: t }), t; - }), - (n.d = function (e, t) { - for (var c in t) - n.o(t, c) && - !n.o(e, c) && - Object.defineProperty(e, c, { enumerable: !0, get: t[c] }); - }), - (n.g = (function () { - if ("object" === typeof globalThis) return globalThis; - try { - return this || new Function("return this")(); - } catch (e) { - if ("object" === typeof window) return window; - } - })()), - (n.o = function (e, t) { - return Object.prototype.hasOwnProperty.call(e, t); - }), - (n.r = function (e) { - "undefined" !== typeof Symbol && - Symbol.toStringTag && - Object.defineProperty(e, Symbol.toStringTag, { value: "Module" }), - Object.defineProperty(e, "__esModule", { value: !0 }); - }), - (function () { - "use strict"; - var e = n(2791), - t = n(4164); - function c(e, t) { - return ( - (c = - Object.setPrototypeOf || - function (e, t) { - return (e.__proto__ = t), e; - }), - c(e, t) - ); - } - function r(e, t) { - (e.prototype = Object.create(t.prototype)), - (e.prototype.constructor = e), - c(e, t); - } - function a() { - return ( - (a = - Object.assign || - function (e) { - for (var t = 1; t < arguments.length; t++) { - var n = arguments[t]; - for (var c in n) - Object.prototype.hasOwnProperty.call(n, c) && (e[c] = n[c]); - } - return e; - }), - a.apply(this, arguments) - ); - } - function o(e) { - return "/" === e.charAt(0); - } - function l(e, t) { - for (var n = t, c = n + 1, r = e.length; c < r; n += 1, c += 1) - e[n] = e[c]; - e.pop(); - } - var i = function (e, t) { - void 0 === t && (t = ""); - var n, - c = (e && e.split("/")) || [], - r = (t && t.split("/")) || [], - a = e && o(e), - i = t && o(t), - s = a || i; - if ( - (e && o(e) ? (r = c) : c.length && (r.pop(), (r = r.concat(c))), - !r.length) - ) - return "/"; - if (r.length) { - var u = r[r.length - 1]; - n = "." === u || ".." === u || "" === u; - } else n = !1; - for (var h = 0, f = r.length; f >= 0; f--) { - var p = r[f]; - "." === p - ? l(r, f) - : ".." === p - ? (l(r, f), h++) - : h && (l(r, f), h--); - } - if (!s) for (; h--; h) r.unshift(".."); - !s || "" === r[0] || (r[0] && o(r[0])) || r.unshift(""); - var v = r.join("/"); - return n && "/" !== v.substr(-1) && (v += "/"), v; - }; - function s(e) { - return e.valueOf ? e.valueOf() : Object.prototype.valueOf.call(e); - } - var u = function e(t, n) { - if (t === n) return !0; - if (null == t || null == n) return !1; - if (Array.isArray(t)) - return ( - Array.isArray(n) && - t.length === n.length && - t.every(function (t, c) { - return e(t, n[c]); - }) - ); - if ("object" === typeof t || "object" === typeof n) { - var c = s(t), - r = s(n); - return c !== t || r !== n - ? e(c, r) - : Object.keys(Object.assign({}, t, n)).every(function (c) { - return e(t[c], n[c]); - }); - } - return !1; - }, - h = "Invariant failed"; - function f(e, t) { - if (!e) throw new Error(h); - } - function p(e) { - return "/" === e.charAt(0) ? e : "/" + e; - } - function v(e) { - return "/" === e.charAt(0) ? e.substr(1) : e; - } - function d(e, t) { - return (function (e, t) { - return ( - 0 === e.toLowerCase().indexOf(t.toLowerCase()) && - -1 !== "/?#".indexOf(e.charAt(t.length)) - ); - })(e, t) - ? e.substr(t.length) - : e; - } - function m(e) { - return "/" === e.charAt(e.length - 1) ? e.slice(0, -1) : e; - } - function z(e) { - var t = e.pathname, - n = e.search, - c = e.hash, - r = t || "/"; - return ( - n && "?" !== n && (r += "?" === n.charAt(0) ? n : "?" + n), - c && "#" !== c && (r += "#" === c.charAt(0) ? c : "#" + c), - r - ); - } - function y(e, t, n, c) { - var r; - "string" === typeof e - ? ((r = (function (e) { - var t = e || "/", - n = "", - c = "", - r = t.indexOf("#"); - -1 !== r && ((c = t.substr(r)), (t = t.substr(0, r))); - var a = t.indexOf("?"); - return ( - -1 !== a && ((n = t.substr(a)), (t = t.substr(0, a))), - { - pathname: t, - search: "?" === n ? "" : n, - hash: "#" === c ? "" : c, - } - ); - })(e)), - (r.state = t)) - : (void 0 === (r = a({}, e)).pathname && (r.pathname = ""), - r.search - ? "?" !== r.search.charAt(0) && (r.search = "?" + r.search) - : (r.search = ""), - r.hash - ? "#" !== r.hash.charAt(0) && (r.hash = "#" + r.hash) - : (r.hash = ""), - void 0 !== t && void 0 === r.state && (r.state = t)); - try { - r.pathname = decodeURI(r.pathname); - } catch (o) { - throw o instanceof URIError - ? new URIError( - 'Pathname "' + - r.pathname + - '" could not be decoded. This is likely caused by an invalid percent-encoding.' - ) - : o; - } - return ( - n && (r.key = n), - c - ? r.pathname - ? "/" !== r.pathname.charAt(0) && - (r.pathname = i(r.pathname, c.pathname)) - : (r.pathname = c.pathname) - : r.pathname || (r.pathname = "/"), - r - ); - } - function g() { - var e = null; - var t = []; - return { - setPrompt: function (t) { - return ( - (e = t), - function () { - e === t && (e = null); - } - ); - }, - confirmTransitionTo: function (t, n, c, r) { - if (null != e) { - var a = "function" === typeof e ? e(t, n) : e; - "string" === typeof a - ? "function" === typeof c - ? c(a, r) - : r(!0) - : r(!1 !== a); - } else r(!0); - }, - appendListener: function (e) { - var n = !0; - function c() { - n && e.apply(void 0, arguments); - } - return ( - t.push(c), - function () { - (n = !1), - (t = t.filter(function (e) { - return e !== c; - })); - } - ); - }, - notifyListeners: function () { - for (var e = arguments.length, n = new Array(e), c = 0; c < e; c++) - n[c] = arguments[c]; - t.forEach(function (e) { - return e.apply(void 0, n); - }); - }, - }; - } - var M = !( - "undefined" === typeof window || - !window.document || - !window.document.createElement - ); - function H(e, t) { - t(window.confirm(e)); - } - var b = "popstate", - V = "hashchange"; - function L() { - try { - return window.history.state || {}; - } catch (e) { - return {}; - } - } - function w(e) { - void 0 === e && (e = {}), M || f(!1); - var t = window.history, - n = (function () { - var e = window.navigator.userAgent; - return ( - ((-1 === e.indexOf("Android 2.") && - -1 === e.indexOf("Android 4.0")) || - -1 === e.indexOf("Mobile Safari") || - -1 !== e.indexOf("Chrome") || - -1 !== e.indexOf("Windows Phone")) && - window.history && - "pushState" in window.history - ); - })(), - c = !(-1 === window.navigator.userAgent.indexOf("Trident")), - r = e, - o = r.forceRefresh, - l = void 0 !== o && o, - i = r.getUserConfirmation, - s = void 0 === i ? H : i, - u = r.keyLength, - h = void 0 === u ? 6 : u, - v = e.basename ? m(p(e.basename)) : ""; - function w(e) { - var t = e || {}, - n = t.key, - c = t.state, - r = window.location, - a = r.pathname + r.search + r.hash; - return v && (a = d(a, v)), y(a, c, n); - } - function C() { - return Math.random().toString(36).substr(2, h); - } - var E = g(); - function S(e) { - a(F, e), - (F.length = t.length), - E.notifyListeners(F.location, F.action); - } - function A(e) { - (function (e) { - return ( - void 0 === e.state && -1 === navigator.userAgent.indexOf("CriOS") - ); - })(e) || _(w(e.state)); - } - function x() { - _(w(L())); - } - var k = !1; - function _(e) { - if (k) (k = !1), S(); - else { - E.confirmTransitionTo(e, "POP", s, function (t) { - t - ? S({ action: "POP", location: e }) - : (function (e) { - var t = F.location, - n = P.indexOf(t.key); - -1 === n && (n = 0); - var c = P.indexOf(e.key); - -1 === c && (c = 0); - var r = n - c; - r && ((k = !0), T(r)); - })(e); - }); - } - } - var O = w(L()), - P = [O.key]; - function N(e) { - return v + z(e); - } - function T(e) { - t.go(e); - } - var j = 0; - function R(e) { - 1 === (j += e) && 1 === e - ? (window.addEventListener(b, A), - c && window.addEventListener(V, x)) - : 0 === j && - (window.removeEventListener(b, A), - c && window.removeEventListener(V, x)); - } - var D = !1; - var F = { - length: t.length, - action: "POP", - location: O, - createHref: N, - push: function (e, c) { - var r = "PUSH", - a = y(e, c, C(), F.location); - E.confirmTransitionTo(a, r, s, function (e) { - if (e) { - var c = N(a), - o = a.key, - i = a.state; - if (n) - if ((t.pushState({ key: o, state: i }, null, c), l)) - window.location.href = c; - else { - var s = P.indexOf(F.location.key), - u = P.slice(0, s + 1); - u.push(a.key), (P = u), S({ action: r, location: a }); - } - else window.location.href = c; - } - }); - }, - replace: function (e, c) { - var r = "REPLACE", - a = y(e, c, C(), F.location); - E.confirmTransitionTo(a, r, s, function (e) { - if (e) { - var c = N(a), - o = a.key, - i = a.state; - if (n) - if ((t.replaceState({ key: o, state: i }, null, c), l)) - window.location.replace(c); - else { - var s = P.indexOf(F.location.key); - -1 !== s && (P[s] = a.key), S({ action: r, location: a }); - } - else window.location.replace(c); - } - }); - }, - go: T, - goBack: function () { - T(-1); - }, - goForward: function () { - T(1); - }, - block: function (e) { - void 0 === e && (e = !1); - var t = E.setPrompt(e); - return ( - D || (R(1), (D = !0)), - function () { - return D && ((D = !1), R(-1)), t(); - } - ); - }, - listen: function (e) { - var t = E.appendListener(e); - return ( - R(1), - function () { - R(-1), t(); - } - ); - }, - }; - return F; - } - var C = "hashchange", - E = { - hashbang: { - encodePath: function (e) { - return "!" === e.charAt(0) ? e : "!/" + v(e); - }, - decodePath: function (e) { - return "!" === e.charAt(0) ? e.substr(1) : e; - }, - }, - noslash: { encodePath: v, decodePath: p }, - slash: { encodePath: p, decodePath: p }, - }; - function S(e) { - var t = e.indexOf("#"); - return -1 === t ? e : e.slice(0, t); - } - function A() { - var e = window.location.href, - t = e.indexOf("#"); - return -1 === t ? "" : e.substring(t + 1); - } - function x(e) { - window.location.replace(S(window.location.href) + "#" + e); - } - function k(e) { - void 0 === e && {}, M || f(!1); - var t = window.history, - n = (window.navigator.userAgent.indexOf("Firefox"), e), - c = n.getUserConfirmation, - r = void 0 === c ? H : c, - o = n.hashType, - l = void 0 === o ? "slash" : o, - i = e.basename ? m(p(e.basename)) : "", - s = E[l], - u = s.encodePath, - h = s.decodePath; - function v() { - var e = h(A()); - return i && d(e, i), y(e); - } - var b = g(); - function V(e) { - a(F, e), - (F.length = t.length), - b.notifyListeners(F.location, F.action); - } - var L = !1, - w = null; - function k() { - var e, - t, - n = A(), - c = u(n); - if (n !== c) x(c); - else { - var a = v(), - o = F.location; - if ( - !L && - (a, - o.pathname === t.pathname && - e.search === t.search && - e.hash === t.hash) - ) - return; - if (w === z(a)) return; - null, - (function (e) { - if (L) !1, V(); - else { - var t = "POP"; - b.confirmTransitionTo(e, t, r, function (n) { - n - ? V({ action: t, location: e }) - : (function (e) { - var t = F.location, - n = N.lastIndexOf(z(t)); - -1 === n && 0; - var c = N.lastIndexOf(z(e)); - -1 === c && 0; - var r = n - c; - r && (!0, T(r)); - })(e); - }); - } - })(a); - } - } - var _ = A(), - O = u(_); - _ !== O && x(O); - var P = v(), - N = [z(P)]; - function T(e) { - t.go(e); - } - var j = 0; - function R(e) { - 1 === (j += e) && 1 === e - ? window.addEventListener(C, k) - : 0 === j && window.removeEventListener(C, k); - } - var D = !1; - var F = { - length: t.length, - action: "POP", - location: P, - createHref: function (e) { - var t = document.querySelector("base"), - n = ""; - return ( - t && t.getAttribute("href") && S(window.location.href), - n + "#" + u(i + z(e)) - ); - }, - push: function (e, t) { - var n = "PUSH", - c = y(e, void 0, void 0, F.location); - b.confirmTransitionTo(c, n, r, function (e) { - if (e) { - var t = z(c), - r = u(i + t); - if (A() !== r) { - t, - (function (e) { - window.location.hash = e; - })(r); - var a = N.lastIndexOf(z(F.location)), - o = N.slice(0, a + 1); - o.push(t), o, V({ action: n, location: c }); - } else V(); - } - }); - }, - replace: function (e, t) { - var n = "REPLACE", - c = y(e, void 0, void 0, F.location); - b.confirmTransitionTo(c, n, r, function (e) { - if (e) { - var t = z(c), - r = u(i + t); - A() !== r && (t, x(r)); - var a = N.indexOf(z(F.location)); - -1 !== a && (N[a] = t), V({ action: n, location: c }); - } - }); - }, - go: T, - goBack: function () { - T(-1); - }, - goForward: function () { - T(1); - }, - block: function (e) { - void 0 === e && !1; - var t = b.setPrompt(e); - return ( - D || (R(1), !0), - function () { - return D && (!1, R(-1)), t(); - } - ); - }, - listen: function (e) { - var t = b.appendListener(e); - return ( - R(1), - function () { - R(-1), t(); - } - ); - }, - }; - return F; - } - function _(e, t, n) { - return Math.min(Math.max(e, t), n); - } - function O(e) { - void 0 === e && {}; - var t = e, - n = t.getUserConfirmation, - c = t.initialEntries, - r = void 0 === c ? ["/"] : c, - o = t.initialIndex, - l = void 0 === o ? 0 : o, - i = t.keyLength, - s = void 0 === i ? 6 : i, - u = g(); - function h(e) { - a(M, e), - (M.length = M.entries.length), - u.notifyListeners(M.location, M.action); - } - function f() { - return Math.random().toString(36).substr(2, s); - } - var p = _(l, 0, r.length - 1), - v = r.map(function (e) { - return y(e, void 0, "string" === typeof e ? f() : e.key || f()); - }), - d = z; - function m(e) { - var t = _(M.index + e, 0, M.entries.length - 1), - c = M.entries[t]; - u.confirmTransitionTo(c, "POP", n, function (e) { - e ? h({ action: "POP", location: c, index: t }) : h(); - }); - } - var M = { - length: v.length, - action: "POP", - location: v[p], - index: p, - entries: v, - createHref: d, - push: function (e, t) { - var c = "PUSH", - r = y(e, t, f(), M.location); - u.confirmTransitionTo(r, c, n, function (e) { - if (e) { - var t = M.index + 1, - n = M.entries.slice(0); - n.length > t ? n.splice(t, n.length - t, r) : n.push(r), - h({ action: c, location: r, index: t, entries: n }); - } - }); - }, - replace: function (e, t) { - var c = "REPLACE", - r = y(e, t, f(), M.location); - u.confirmTransitionTo(r, c, n, function (e) { - e && ((M.entries[M.index] = r), h({ action: c, location: r })); - }); - }, - go: m, - goBack: function () { - m(-1); - }, - goForward: function () { - m(1); - }, - canGo: function (e) { - var t = M.index + e; - return t >= 0 && t < M.entries.length; - }, - block: function (e) { - return void 0 === e && !1, u.setPrompt(e); - }, - listen: function (e) { - return u.appendListener(e); - }, - }; - return M; - } - var P = n(2007), - N = n.n(P), - T = 1073741823, - j = - "undefined" !== typeof globalThis - ? globalThis - : "undefined" !== typeof window - ? window - : "undefined" !== typeof n.g - ? n.g - : {}; - function R(e) { - var t = []; - return { - on: function (e) { - t.push(e); - }, - off: function (e) { - t = t.filter(function (t) { - return t !== e; - }); - }, - get: function () { - return e; - }, - set: function (n, c) { - (e = n), - t.forEach(function (t) { - return t(e, c); - }); - }, - }; - } - var D = - e.createContext || - function (t, n) { - var c, - a, - o = - "__create-react-context-" + - (function () { - var e = "__global_unique_id__"; - return (j[e] = (j[e] || 0) + 1); - })() + - "__", - l = (function (e) { - function t() { - var t; - return ( - ((t = e.apply(this, arguments) || this).emitter = R( - t.props.value - )), - t - ); - } - r(t, e); - var c = t.prototype; - return ( - (c.getChildContext = function () { - var e; - return ((e = {})[o] = this.emitter), e; - }), - (c.componentWillReceiveProps = function (e) { - if (this.props.value !== e.value) { - var t, - c = this.props.value, - r = e.value; - ( - (a = c) === (o = r) - ? 0 !== a || 1 / a === 1 / o - : a !== a && o !== o - ) - ? (t = 0) - : ((t = "function" === typeof n ? n(c, r) : T), - 0 !== (t |= 0) && this.emitter.set(e.value, t)); - } - var a, o; - }), - (c.render = function () { - return this.props.children; - }), - t - ); - })(e.Component); - l.childContextTypes = (((c = {})[o] = N().object.isRequired), c); - var i = (function (e) { - function n() { - var t; - return ( - ((t = e.apply(this, arguments) || this).state = { - value: t.getValue(), - }), - (t.onUpdate = function (e, n) { - 0 !== ((0 | t.observedBits) & n) && - t.setState({ value: t.getValue() }); - }), - t - ); - } - r(n, e); - var c = n.prototype; - return ( - (c.componentWillReceiveProps = function (e) { - var t = e.observedBits; - this.observedBits = void 0 === t || null === t ? T : t; - }), - (c.componentDidMount = function () { - this.context[o] && this.context[o].on(this.onUpdate); - var e = this.props.observedBits; - this.observedBits = void 0 === e || null === e ? T : e; - }), - (c.componentWillUnmount = function () { - this.context[o] && this.context[o].off(this.onUpdate); - }), - (c.getValue = function () { - return this.context[o] ? this.context[o].get() : t; - }), - (c.render = function () { - return ((e = this.props.children), - Array.isArray(e) ? e[0] : e)(this.state.value); - var e; - }), - n - ); - })(e.Component); - return ( - (i.contextTypes = (((a = {})[o] = N().object), a)), - { Provider: l, Consumer: i } - ); - }, - F = D, - I = n(3813), - U = n.n(I); - n(8228); - function B(e, t) { - if (null == e) return {}; - var n, - c, - r = {}, - a = Object.keys(e); - for (c = 0; c < a.length; c++) - (n = a[c]), t.indexOf(n) >= 0 || (r[n] = e[n]); - return r; - } - n(2110); - var W = function (e) { - var t = F(); - return (t.displayName = e), t; - }, - $ = W("Router-History"), - K = W("Router"), - q = (function (t) { - function n(e) { - var n; - return ( - ((n = t.call(this, e) || this).state = { - location: e.history.location, - }), - (n._isMounted = !1), - (n._pendingLocation = null), - e.staticContext || - (n.unlisten = e.history.listen(function (e) { - n._isMounted - ? n.setState({ location: e }) - : (n._pendingLocation = e); - })), - n - ); - } - r(n, t), - (n.computeRootMatch = function (e) { - return { path: "/", url: "/", params: {}, isExact: "/" === e }; - }); - var c = n.prototype; - return ( - (c.componentDidMount = function () { - (this._isMounted = !0), - this._pendingLocation && - this.setState({ location: this._pendingLocation }); - }), - (c.componentWillUnmount = function () { - this.unlisten && - (this.unlisten(), - (this._isMounted = !1), - (this._pendingLocation = null)); - }), - (c.render = function () { - return e.createElement( - K.Provider, - { - value: { - history: this.props.history, - location: this.state.location, - match: n.computeRootMatch(this.state.location.pathname), - staticContext: this.props.staticContext, - }, - }, - e.createElement($.Provider, { - children: this.props.children || null, - value: this.props.history, - }) - ); - }), - n - ); - })(e.Component); - e.Component; - var G = (function (e) { - function t() { - return e.apply(this, arguments) || this; - } - r(t, e); - var n = t.prototype; - return ( - (n.componentDidMount = function () { - this.props.onMount && this.props.onMount.call(this, this); - }), - (n.componentDidUpdate = function (e) { - this.props.onUpdate && this.props.onUpdate.call(this, this, e); - }), - (n.componentWillUnmount = function () { - this.props.onUnmount && this.props.onUnmount.call(this, this); - }), - (n.render = function () { - return null; - }), - t - ); - })(e.Component); - var Q = {}, - Y = 0; - function X(e, t) { - return ( - void 0 === e && (e = "/"), - void 0 === t && (t = {}), - "/" === e - ? e - : (function (e) { - if (Q[e]) return Q[e]; - var t = U().compile(e); - return Y < 1e4 && ((Q[e] = t), Y++), t; - })(e)(t, { pretty: !0 }) - ); - } - function J(t) { - var n = t.computedMatch, - c = t.to, - r = t.push, - o = void 0 !== r && r; - return e.createElement(K.Consumer, null, function (t) { - t || f(!1); - var r = t.history, - l = t.staticContext, - i = o ? r.push : r.replace, - s = y( - n - ? "string" === typeof c - ? X(c, n.params) - : a({}, c, { pathname: X(c.pathname, n.params) }) - : c - ); - return l - ? (i(s), null) - : e.createElement(G, { - onMount: function () { - i(s); - }, - onUpdate: function (e, t) { - var n, - c, - r = y(t.to); - (n = r), - (c = a({}, s, { key: r.key })), - (n.pathname === c.pathname && - n.search === c.search && - n.hash === c.hash && - n.key === c.key && - u(n.state, c.state)) || - i(s); - }, - to: c, - }); - }); - } - var Z = {}, - ee = 0; - function te(e, t) { - void 0 === t && (t = {}), - ("string" === typeof t || Array.isArray(t)) && (t = { path: t }); - var n = t, - c = n.path, - r = n.exact, - a = void 0 !== r && r, - o = n.strict, - l = void 0 !== o && o, - i = n.sensitive, - s = void 0 !== i && i; - return [].concat(c).reduce(function (t, n) { - if (!n && "" !== n) return null; - if (t) return t; - var c = (function (e, t) { - var n = "" + t.end + t.strict + t.sensitive, - c = Z[n] || (Z[n] = {}); - if (c[e]) return c[e]; - var r = [], - a = { regexp: U()(e, r, t), keys: r }; - return ee < 1e4 && ((c[e] = a), ee++), a; - })(n, { end: a, strict: l, sensitive: s }), - r = c.regexp, - o = c.keys, - i = r.exec(e); - if (!i) return null; - var u = i[0], - h = i.slice(1), - f = e === u; - return a && !f - ? null - : { - path: n, - url: "/" === n && "" === u ? "/" : u, - isExact: f, - params: o.reduce(function (e, t, n) { - return (e[t.name] = h[n]), e; - }, {}), - }; - }, null); - } - var ne = (function (t) { - function n() { - return t.apply(this, arguments) || this; - } - return ( - r(n, t), - (n.prototype.render = function () { - var t = this; - return e.createElement(K.Consumer, null, function (n) { - n || f(!1); - var c = t.props.location || n.location, - r = a({}, n, { - location: c, - match: t.props.computedMatch - ? t.props.computedMatch - : t.props.path - ? te(c.pathname, t.props) - : n.match, - }), - o = t.props, - l = o.children, - i = o.component, - s = o.render; - return ( - Array.isArray(l) && - (function (t) { - return 0 === e.Children.count(t); - })(l) && - (l = null), - e.createElement( - K.Provider, - { value: r }, - r.match - ? l - ? "function" === typeof l - ? l(r) - : l - : i - ? e.createElement(i, r) - : s - ? s(r) - : null - : "function" === typeof l - ? l(r) - : null - ) - ); - }); - }), - n - ); - })(e.Component); - function ce(e) { - return "/" === e.charAt(0) ? e : "/" + e; - } - function re(e, t) { - if (!e) return t; - var n = ce(e); - return 0 !== t.pathname.indexOf(n) - ? t - : a({}, t, { pathname: t.pathname.substr(n.length) }); - } - function ae(e) { - return "string" === typeof e ? e : z(e); - } - function oe(e) { - return function () { - f(!1); - }; - } - function le() {} - e.Component; - var ie = (function (t) { - function n() { - return t.apply(this, arguments) || this; - } - return ( - r(n, t), - (n.prototype.render = function () { - var t = this; - return e.createElement(K.Consumer, null, function (n) { - n || f(!1); - var c, - r, - o = t.props.location || n.location; - return ( - e.Children.forEach(t.props.children, function (t) { - if (null == r && e.isValidElement(t)) { - c = t; - var l = t.props.path || t.props.from; - r = l - ? te(o.pathname, a({}, t.props, { path: l })) - : n.match; - } - }), - r ? e.cloneElement(c, { location: o, computedMatch: r }) : null - ); - }); - }), - n - ); - })(e.Component); - var se = e.useContext; - var ue = (function (t) { - function n() { - for (var e, n = arguments.length, c = new Array(n), r = 0; r < n; r++) - c[r] = arguments[r]; - return ( - ((e = t.call.apply(t, [this].concat(c)) || this).history = w( - e.props - )), - e - ); - } - return ( - r(n, t), - (n.prototype.render = function () { - return e.createElement(q, { - history: this.history, - children: this.props.children, - }); - }), - n - ); - })(e.Component); - e.Component; - var he = function (e, t) { - return "function" === typeof e ? e(t) : e; - }, - fe = function (e, t) { - return "string" === typeof e ? y(e, null, null, t) : e; - }, - pe = function (e) { - return e; - }, - ve = e.forwardRef; - "undefined" === typeof ve && (ve = pe); - var de = ve(function (t, n) { - var c = t.innerRef, - r = t.navigate, - o = t.onClick, - l = B(t, ["innerRef", "navigate", "onClick"]), - i = l.target, - s = a({}, l, { - onClick: function (e) { - try { - o && o(e); - } catch (t) { - throw (e.preventDefault(), t); - } - e.defaultPrevented || - 0 !== e.button || - (i && "_self" !== i) || - (function (e) { - return !!(e.metaKey || e.altKey || e.ctrlKey || e.shiftKey); - })(e) || - (e.preventDefault(), r()); - }, - }); - return (s.ref = (pe !== ve && n) || c), e.createElement("a", s); - }); - var me = ve(function (t, n) { - var c = t.component, - r = void 0 === c ? de : c, - o = t.replace, - l = t.to, - i = t.innerRef, - s = B(t, ["component", "replace", "to", "innerRef"]); - return e.createElement(K.Consumer, null, function (t) { - t || f(!1); - var c = t.history, - u = fe(he(l, t.location), t.location), - h = u ? c.createHref(u) : "", - p = a({}, s, { - href: h, - navigate: function () { - var e = he(l, t.location), - n = z(t.location) === z(fe(e)); - (o || n ? c.replace : c.push)(e); - }, - }); - return ( - pe !== ve ? (p.ref = n || i) : (p.innerRef = i), - e.createElement(r, p) - ); - }); - }), - ze = function (e) { - return e; - }, - ye = e.forwardRef; - "undefined" === typeof ye && (ye = ze); - ye(function (t, n) { - var c = t["aria-current"], - r = void 0 === c ? "page" : c, - o = t.activeClassName, - l = void 0 === o ? "active" : o, - i = t.activeStyle, - s = t.className, - u = t.exact, - h = t.isActive, - p = t.location, - v = t.sensitive, - d = t.strict, - m = t.style, - z = t.to, - y = t.innerRef, - g = B(t, [ - "aria-current", - "activeClassName", - "activeStyle", - "className", - "exact", - "isActive", - "location", - "sensitive", - "strict", - "style", - "to", - "innerRef", - ]); - return e.createElement(K.Consumer, null, function (t) { - t || f(!1); - var c = p || t.location, - o = fe(he(z, c), c), - M = o.pathname, - H = M && M.replace(/([.+*?=^!:${}()[\]|/\\])/g, "\\$1"), - b = H - ? te(c.pathname, { path: H, exact: u, sensitive: v, strict: d }) - : null, - V = !!(h ? h(b, c) : b), - L = "function" === typeof s ? s(V) : s, - w = "function" === typeof m ? m(V) : m; - V && - ((L = (function () { - for ( - var e = arguments.length, t = new Array(e), n = 0; - n < e; - n++ - ) - t[n] = arguments[n]; - return t - .filter(function (e) { - return e; - }) - .join(" "); - })(L, l)), - (w = a({}, w, i))); - var C = a( - { "aria-current": (V && r) || null, className: L, style: w, to: o }, - g - ); - return ( - ze !== ye ? (C.ref = n || y) : (C.innerRef = y), - e.createElement(me, C) - ); - }); - }); - function ge(e, t) { - (null == t || t > e.length) && (t = e.length); - for (var n = 0, c = new Array(t); n < t; n++) c[n] = e[n]; - return c; - } - function Me(e, t) { - return ( - (function (e) { - if (Array.isArray(e)) return e; - })(e) || - (function (e, t) { - var n = - null == e - ? null - : ("undefined" !== typeof Symbol && e[Symbol.iterator]) || - e["@@iterator"]; - if (null != n) { - var c, - r, - a = [], - o = !0, - l = !1; - try { - for ( - n = n.call(e); - !(o = (c = n.next()).done) && - (a.push(c.value), !t || a.length !== t); - o = !0 - ); - } catch (i) { - (l = !0), (r = i); - } finally { - try { - o || null == n.return || n.return(); - } finally { - if (l) throw r; - } - } - return a; - } - })(e, t) || - (function (e, t) { - if (e) { - if ("string" === typeof e) return ge(e, t); - var n = Object.prototype.toString.call(e).slice(8, -1); - return ( - "Object" === n && e.constructor && (n = e.constructor.name), - "Map" === n || "Set" === n - ? Array.from(e) - : "Arguments" === n || - /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) - ? ge(e, t) - : void 0 - ); - } - })(e, t) || - (function () { - throw new TypeError( - "Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method." - ); - })() - ); - } - var He = n(3920); - "undefined" !== typeof window && - "undefined" !== typeof document && - n(2137); - var be = function (e, t) { - return ( - (be = - 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]); - }), - be(e, t) - ); - }; - function Ve(e, t) { - function n() { - this.constructor = e; - } - be(e, t), - (e.prototype = - null === t - ? Object.create(t) - : ((n.prototype = t.prototype), new n())); - } - var Le = function () { - return ( - (Le = - Object.assign || - function (e) { - for (var t, n = 1, c = arguments.length; n < c; n++) - for (var r in (t = arguments[n])) - Object.prototype.hasOwnProperty.call(t, r) && (e[r] = t[r]); - return e; - }), - Le.apply(this, arguments) - ); - }; - function we(e, t) { - var n = {}; - for (var c in e) - Object.prototype.hasOwnProperty.call(e, c) && - t.indexOf(c) < 0 && - (n[c] = e[c]); - if (null != e && "function" === typeof Object.getOwnPropertySymbols) { - var r = 0; - for (c = Object.getOwnPropertySymbols(e); r < c.length; r++) - t.indexOf(c[r]) < 0 && - Object.prototype.propertyIsEnumerable.call(e, c[r]) && - (n[c[r]] = e[c[r]]); - } - return n; - } - function Ce(e, t, n, c) { - var r, - a = arguments.length, - o = - a < 3 - ? t - : null === c - ? (c = Object.getOwnPropertyDescriptor(t, n)) - : c; - if ( - "object" === typeof Reflect && - "function" === typeof Reflect.decorate - ) - o = Reflect.decorate(e, t, n, c); - else - for (var l = e.length - 1; l >= 0; l--) - (r = e[l]) && - (o = (a < 3 ? r(o) : a > 3 ? r(t, n, o) : r(t, n)) || o); - return a > 3 && o && Object.defineProperty(t, n, o), o; - } - function Ee() { - for (var e = 0, t = 0, n = arguments.length; t < n; t++) - e += arguments[t].length; - var c = Array(e), - r = 0; - for (t = 0; t < n; t++) - for (var a = arguments[t], o = 0, l = a.length; o < l; o++, r++) - c[r] = a[o]; - return c; - } - var Se = [ - "active", - "alignText", - "asyncControl", - "containerRef", - "current", - "elementRef", - "fill", - "icon", - "inputRef", - "intent", - "inline", - "large", - "loading", - "leftElement", - "leftIcon", - "minimal", - "onRemove", - "outlined", - "panel", - "panelClassName", - "popoverProps", - "rightElement", - "rightIcon", - "round", - "small", - "text", - ]; - function Ae(e, t, n) { - return ( - void 0 === t && (t = Se), - void 0 === n && (n = !1), - n && (t = t.concat(Se)), - t.reduce(function (e, t) { - return ( - -1 !== t.indexOf("-") || (e.hasOwnProperty(t) && delete e[t]), e - ); - }, Le({}, e)) - ); - } - function xe(e, t) { - var n; - null != (n = e) && "function" !== typeof n - ? (e.current = t) - : (function (e) { - return "function" === typeof e; - })(e) && e(t); - } - function ke(e, t, n) { - return function (c) { - (e[t] = c), xe(n, c); - }; - } - var _e = n(1694), - Oe = n.n(_e); - function Pe(e) { - return 13 === e || 32 === e; - } - var Ne, - Te, - je, - Re, - De = "left", - Fe = "right", - Ie = 0, - Ue = 1, - Be = 2, - We = 3, - $e = 4, - Ke = { - NONE: "none", - PRIMARY: "primary", - SUCCESS: "success", - WARNING: "warning", - DANGER: "danger", - }, - qe = "bottom", - Ge = "bottom-left", - Qe = "bottom-right", - Ye = "left", - Xe = "left-bottom", - Je = "left-top", - Ze = "right", - et = "right-bottom", - tt = "right-top", - nt = "top", - ct = "top-left", - rt = "top-right"; - var at = "bp3"; - "undefined" !== typeof process && - (at = - null !== - (Re = - null !== - (Te = - null === - (Ne = { - NODE_ENV: "production", - PUBLIC_URL: "", - WDS_SOCKET_HOST: void 0, - WDS_SOCKET_PATH: void 0, - WDS_SOCKET_PORT: void 0, - FAST_REFRESH: !0, - }) || void 0 === Ne - ? void 0 - : Ne.BLUEPRINT_NAMESPACE) && void 0 !== Te - ? Te - : null === - (je = { - NODE_ENV: "production", - PUBLIC_URL: "", - WDS_SOCKET_HOST: void 0, - WDS_SOCKET_PATH: void 0, - WDS_SOCKET_PORT: void 0, - FAST_REFRESH: !0, - }) || void 0 === je - ? void 0 - : je.REACT_APP_BLUEPRINT_NAMESPACE) && void 0 !== Re - ? Re - : at); - var ot = at + "-active", - lt = at + "-align-left", - it = at + "-align-right", - st = at + "-dark", - ut = at + "-disabled", - ht = at + "-fill", - ft = at + "-fixed-top", - pt = at + "-interactive", - vt = at + "-large", - dt = at + "-loading", - mt = at + "-minimal", - zt = at + "-outlined", - yt = at + "-round", - gt = at + "-small", - Mt = at + "-vertical", - Ht = - (Mn(nt), - Mn(qe), - Mn(Ye), - Mn(Ze), - yn(Ie), - yn(Ue), - yn(Be), - yn(We), - yn($e), - gn(Ke.PRIMARY), - gn(Ke.SUCCESS), - gn(Ke.WARNING), - gn(Ke.DANGER), - at + "-blockquote"), - bt = at + "-code", - Vt = at + "-code-block", - Lt = at + "-heading", - wt = at + "-list", - Ct = at + "-button", - Et = Ct + "-group", - St = Ct + "-spinner", - At = Ct + "-text", - xt = at + "-card", - kt = at + "-input", - _t = kt + "-group", - Ot = kt + "-left-container", - Pt = kt + "-action", - Nt = at + "-label", - Tt = at + "-navbar", - jt = Tt + "-group", - Rt = Tt + "-heading", - Dt = Tt + "-divider", - Ft = at + "-overlay", - It = Ft + "-backdrop", - Ut = Ft + "-content", - Bt = Ft + "-inline", - Wt = Ft + "-open", - $t = Ft + "-start-focus-trap", - Kt = Ft + "-end-focus-trap", - qt = at + "-popover", - Gt = qt + "-arrow", - Qt = qt + "-backdrop", - Yt = qt + "-capturing-dismiss", - Xt = qt + "-content", - Jt = qt + "-dismiss", - Zt = Jt + "-override", - en = qt + "-open", - tn = qt + "-out-of-boundaries", - nn = qt + "-target", - cn = qt + "-wrapper", - rn = at + "-transition-container", - an = at + "-portal", - on = at + "-spinner", - ln = on + "-animation", - sn = on + "-head", - un = at + "-no-spin", - hn = on + "-track", - fn = at + "-toast", - pn = fn + "-container", - vn = fn + "-message", - dn = at + "-tooltip", - mn = at + "-icon"; - function zn(e) { - switch (e) { - case De: - return lt; - case Fe: - return it; - default: - return; - } - } - function yn(e) { - if (void 0 !== e) return at + "-elevation-" + e; - } - function gn(e) { - if (null != e && e !== Ke.NONE) - return at + "-intent-" + e.toLowerCase(); - } - function Mn(e) { - if (void 0 !== e) return at + "-position-" + e; - } - function Hn(e) { - return ( - "undefined" !== typeof process && { - NODE_ENV: "production", - PUBLIC_URL: "", - WDS_SOCKET_HOST: void 0, - WDS_SOCKET_PATH: void 0, - WDS_SOCKET_PORT: void 0, - FAST_REFRESH: !0, - } && - "production" === e - ); - } - new Map(); - var bn = (function (e) { - function t(t, n) { - var c = e.call(this, t, n) || this; - return ( - (c.timeoutIds = []), - (c.requestIds = []), - (c.clearTimeouts = function () { - if (c.timeoutIds.length > 0) { - for (var e = 0, t = c.timeoutIds; e < t.length; e++) { - var n = t[e]; - window.clearTimeout(n); - } - c.timeoutIds = []; - } - }), - (c.cancelAnimationFrames = function () { - if (c.requestIds.length > 0) { - for (var e = 0, t = c.requestIds; e < t.length; e++) { - var n = t[e]; - window.cancelAnimationFrame(n); - } - c.requestIds = []; - } - }), - Hn("production") || c.validateProps(c.props), - c - ); - } - return ( - Ve(t, e), - (t.prototype.componentDidUpdate = function (e, t, n) { - Hn("production") || this.validateProps(this.props); - }), - (t.prototype.componentWillUnmount = function () { - this.clearTimeouts(), this.cancelAnimationFrames(); - }), - (t.prototype.requestAnimationFrame = function (e) { - var t = window.requestAnimationFrame(e); - return ( - this.requestIds.push(t), - function () { - return window.cancelAnimationFrame(t); - } - ); - }), - (t.prototype.setTimeout = function (e, t) { - var n = window.setTimeout(e, t); - return ( - this.timeoutIds.push(n), - function () { - return window.clearTimeout(n); - } - ); - }), - (t.prototype.validateProps = function (e) {}), - t - ); - })(e.PureComponent); - function Vn(e, t) { - return ( - void 0 === t && (t = !1), - null == e || - "" === e || - !1 === e || - (!t && - Array.isArray(e) && - (0 === e.length || - e.every(function (e) { - return Vn(e, !0); - }))) - ); - } - function Ln(t, n) { - return ( - void 0 === n && (n = "span"), - null == t || "boolean" === typeof t - ? void 0 - : "string" === typeof t - ? t.trim().length > 0 - ? e.createElement(n, {}, t) - : void 0 - : "number" === typeof t || - "symbol" === typeof t.type || - Array.isArray(t) - ? e.createElement(n, {}, t) - : (function (e) { - return ( - "object" === typeof e && - "undefined" !== typeof e.type && - "undefined" !== typeof e.props - ); - })(t) - ? t - : void 0 - ); - } - function wn(e, t) { - return ( - null != e && - null != e.type && - null != e.type.displayName && - e.type.displayName === t.displayName - ); - } - function Cn() { - return "undefined" !== typeof e.createRef - ? e.createRef() - : { current: null }; - } - var En, - Sn = n(3688), - An = { - add: [ - "M10.99 6.99h-2v-2c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1zm-3-7c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.68 6-6 6z", - ], - "add-clip": [ - "M12 0a1 1 0 00-1 1v2H9a1 1 0 000 2h2v2a1 1 0 102 0V5h2a1 1 0 100-2h-2V1a1 1 0 00-1-1zM0 4a1 1 0 011-1h3.5a1 1 0 010 2H2v2a1 1 0 01-2 0V4zm1 12a1 1 0 01-1-1v-3a1 1 0 112 0v2h2.5a1 1 0 110 2H1zm11 0a1 1 0 001-1v-3a1 1 0 10-2 0v2H9a1 1 0 100 2h3zm-5.5-4a2.5 2.5 0 100-5 2.5 2.5 0 000 5z", - ], - "add-column-left": [ - "M15 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-5 14H2V2h8v12zm4 0h-3V2h3v12zM4 9h1v1c0 .55.45 1 1 1s1-.45 1-1V9h1c.55 0 1-.45 1-1s-.45-1-1-1H7V6c0-.55-.45-1-1-1s-1 .45-1 1v1H4c-.55 0-1 .45-1 1s.45 1 1 1z", - ], - "add-column-right": [ - "M8 9h1v1c0 .55.45 1 1 1s1-.45 1-1V9h1c.55 0 1-.45 1-1s-.45-1-1-1h-1V6c0-.55-.45-1-1-1s-1 .45-1 1v1H8c-.55 0-1 .45-1 1s.45 1 1 1zm7-9H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM5 14H2V2h3v12zm9 0H6V2h8v12z", - ], - "add-location": [ - "M8 0a1 1 0 110 2 6 6 0 106 6 1 1 0 012 0 8 8 0 11-8-8zm0 5a3 3 0 110 6 3 3 0 010-6zm5-5a1 1 0 011 1v.999L15 2a1 1 0 010 2h-1v1a1 1 0 01-2 0V4h-1a1 1 0 010-2h1V1a1 1 0 011-1z", - ], - "add-row-bottom": [ - "M6 11h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1H9V8c0-.55-.45-1-1-1s-1 .45-1 1v1H6c-.55 0-1 .45-1 1s.45 1 1 1zm9-11H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14H2V6h12v8zm0-9H2V2h12v3z", - ], - "add-row-top": [ - "M15 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14H2v-3h12v3zm0-4H2V2h12v8zM6 7h1v1c0 .55.45 1 1 1s1-.45 1-1V7h1c.55 0 1-.45 1-1s-.45-1-1-1H9V4c0-.55-.45-1-1-1s-1 .45-1 1v1H6c-.55 0-1 .45-1 1s.45 1 1 1z", - ], - "add-to-artifact": [ - "M14 4.01h-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1 0-.56-.45-1-1-1zm-13 2h6c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm8 6H1c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1 0-.56-.45-1-1-1zm0-4H1c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1 0-.56-.45-1-1-1z", - ], - "add-to-folder": [ - "M.01 7V5H16v7c0 .55-.45 1-1 1H9.005v-2.99C8.974 8.332 7.644 7 5.996 7H.01zM15 2H7.416L5.706.29a.996.996 0 00-.71-.29H1C.45 0 0 .45 0 1v3h15.99V3c.01-.55-.44-1-.99-1zM5.997 9H2c-.55 0-1 .45-1 1s.45 1 1 1h1.589L.3 14.29a1.003 1.003 0 001.42 1.42l3.287-3.29v1.59c0 .55.45 1 1 1 .549 0 .999-.45.999-1v-4A1.02 1.02 0 005.996 9z", - ], - airplane: [ - "M16 1.5A1.498 1.498 0 0013.44.44L9.91 3.97 2 1 1 3l5.93 3.95L3.88 10H1l-1 1 3 2 2 3 1-1v-2.88l3.05-3.05L13 15l2-1-2.97-7.91 3.53-3.53c.27-.27.44-.65.44-1.06z", - ], - "align-center": [ - "M4 4c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H4zM1 3h14c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm13 10H2c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm1-6H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm-5 5c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1h4z", - ], - "align-justify": [ - "M15 12.98H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm-14-10h14c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1 0 .56.45 1 1 1zm14 4H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm0-3H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm0 6H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "align-left": [ - "M13 13H1c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zM1 3h14c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm0 3h8c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm14 1H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM1 12h4c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1z", - ], - "align-right": [ - "M15 12.98H3c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm-14-10h14c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1 0 .56.45 1 1 1zm14 1H7c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1zm0 6h-4c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1zm0-3H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "alignment-bottom": [ - "M10 12h3c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm5 2H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM3 12h3c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1z", - ], - "alignment-horizontal-center": [ - "M15 7h-1V6c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v1H7V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4H1c-.55 0-1 .45-1 1s.45 1 1 1h1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V9h2v1c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V9h1c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "alignment-left": [ - "M9 9H5c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zM1 0C.45 0 0 .45 0 1v14c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm13 2H5c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z", - ], - "alignment-right": [ - "M11 9H7c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm4-9c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm-4 2H2c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z", - ], - "alignment-top": [ - "M15 0H1C.45 0 0 .45 0 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM6 4H3c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm7 0h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1z", - ], - "alignment-vertical-center": [ - "M13 2H9V1c0-.55-.45-1-1-1S7 .45 7 1v1H3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4v2H6c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1H9V7h4c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z", - ], - annotation: [ - "M15.52 2.77c.3-.29.48-.7.48-1.15C16 .73 15.27 0 14.38 0c-.45 0-.85.18-1.15.48l-1.34 1.34 2.3 2.3 1.33-1.35zM7.4 10.9l6.21-6.21-2.3-2.3L5.1 8.6l2.3 2.3zM14 14H2V2h6.34l2-2H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V5.66l-2 2V14zM3 13l3.58-1.29-2.29-2.27L3 13z", - ], - antenna: [ - "M2.673 10.758a1.396 1.396 0 01.093.234c.127.442.012.932-.362 1.212-.441.332-1.075.246-1.349-.233a8 8 0 1114.014-.225c-.259.488-.889.594-1.341.277-.382-.269-.513-.755-.4-1.2a1.259 1.259 0 01.085-.238 6 6 0 10-10.74.173zm2.464-1.862a1.783 1.783 0 01.076.404c.03.415-.096.831-.43 1.078-.444.328-1.08.237-1.314-.264a5.003 5.003 0 01-.24-.62l-.004-.011a5 5 0 119.574-.08l-.003.011c-.063.213-.14.422-.23.625-.226.504-.861.606-1.31.285-.338-.241-.47-.654-.448-1.07a1.737 1.737 0 01.07-.405 2.99 2.99 0 00-.216-2.233 3 3 0 00-5.525 2.28zM8 7a1 1 0 011 1v3.586l2.707 2.707a1 1 0 01-1.414 1.414L8 13.414l-2.293 2.293a1 1 0 01-1.414-1.414L7 11.586V8a1 1 0 011-1z", - ], - "app-header": [ - "M15 0a1 1 0 011 1v14a1 1 0 01-1 1H1a1 1 0 01-1-1V1a1 1 0 011-1h14zM6 4a1 1 0 00-1.993-.117L4 4v8a1 1 0 001.993.117L6 12V9h4v3a1 1 0 001.993.117L12 12V4a1 1 0 00-1.993-.117L10 4v3H6V4z", - ], - application: [ - "M3.5 7h7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-7c-.28 0-.5.22-.5.5s.22.5.5.5zM15 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm-1 12H2V5h12v8zM3.5 9h4c.28 0 .5-.22.5-.5S7.78 8 7.5 8h-4c-.28 0-.5.22-.5.5s.22.5.5.5zm0 2h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5s.22.5.5.5z", - ], - applications: [ - "M3.5 11h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-2c-.28 0-.5.22-.5.5s.22.5.5.5zm0-2h5c.28 0 .5-.22.5-.5S8.78 8 8.5 8h-5c-.28 0-.5.22-.5.5s.22.5.5.5zM11 4H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 10H2V7h8v7zm5-14H5c-.55 0-1 .45-1 1v2h2V2h8v7h-1v2h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM3.5 13h3c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-3c-.28 0-.5.22-.5.5s.22.5.5.5z", - ], - archive: [ - "M13.382 0a1 1 0 01.894.553L16 4v11a1 1 0 01-1 1H1a1 1 0 01-1-1V4L1.724.553A1 1 0 012.618 0h10.764zM8 6c-.55 0-1 .45-1 1v2.59l-.29-.29-.081-.076A.97.97 0 006 9a1.003 1.003 0 00-.71 1.71l2 2 .096.084c.168.13.38.206.614.206.28 0 .53-.11.71-.29l2-2 .084-.096A1.003 1.003 0 009.29 9.29l-.29.3V7l-.007-.116A1.004 1.004 0 008 6zm5-4H3L2 4h12l-1-2z", - ], - "area-of-interest": [ - "M4 3.664C4 1.644 5.793 0 8 0s3.993 1.643 4 3.664C12 5.692 8 11 8 11S4 5.692 4 3.664zM6 4a2 2 0 104.001-.001A2 2 0 006 4zm7.504 6.269l-2.68-1.609.021-.033c.34-.538.688-1.115 1-1.687l3.67 2.202a1 1 0 01.266 1.482l-4 5A1 1 0 0111 16H5a1 1 0 01-.78-.376l-4-5a1 1 0 01.266-1.482l3.67-2.202a30.46 30.46 0 00.999 1.687l.021.033-2.68 1.609 2.985 3.73h5.038l2.985-3.73z", - ], - array: [ - "M15 0a1 1 0 01.993.883L16 1v14a1 1 0 01-.883.993L15 16h-3a1 1 0 01-.117-1.993L12 14h2V2h-2a1 1 0 01-.993-.883L11 1a1 1 0 01.883-.993L12 0h3zM4 0a1 1 0 01.117 1.993L4 2H2v12h2a1 1 0 01.993.883L5 15a1 1 0 01-.883.993L4 16H1a1 1 0 01-.993-.883L0 15V1A1 1 0 01.883.007L1 0h3zm4 7a1 1 0 110 2 1 1 0 010-2zM5 7a1 1 0 110 2 1 1 0 010-2zm6 0a1 1 0 110 2 1 1 0 010-2z", - ], - "array-boolean": [ - "M15 0a1 1 0 01.993.883L16 1v14a1 1 0 01-.883.993L15 16h-3a1 1 0 01-.117-1.993L12 14h2V2h-2a1 1 0 01-.993-.883L11 1a1 1 0 01.883-.993L12 0h3zM4 0a1 1 0 01.117 1.993L4 2H2v12h2a1 1 0 01.993.883L5 15a1 1 0 01-.883.993L4 16H1a1 1 0 01-.993-.883L0 15V1A1 1 0 01.883.007L1 0h3zm7 6a1 1 0 01.993.883L12 7v2a1 1 0 01-.883.993L11 10H5a1 1 0 01-.993-.883L4 9V7a1 1 0 01.883-.993L5 6h6zm0 1H8v2h3V7z", - ], - "array-date": [ - "M15 0a1 1 0 01.993.883L16 1v14a1 1 0 01-.883.993L15 16h-3a1 1 0 01-.117-1.993L12 14h2V2h-2a1 1 0 01-.993-.883L11 1a1 1 0 01.883-.993L12 0h3zM4 0a1 1 0 01.117 1.993L4 2H2v12h2a1 1 0 01.993.883L5 15a1 1 0 01-.883.993L4 16H1a1 1 0 01-.993-.883L0 15V1A1 1 0 01.883.007L1 0h3zm6.5 4a.5.5 0 01.5.5V5a1 1 0 01.993.883L12 6v5a1 1 0 01-.883.993L11 12H5a1 1 0 01-.993-.883L4 11V6a1 1 0 01.883-.993L5 5v-.5a.5.5 0 011 0V5h4v-.5a.5.5 0 01.5-.5zm.5 3H5v4h6V7z", - ], - "array-numeric": [ - "M15 0a1 1 0 01.993.883L16 1v14a1 1 0 01-.883.993L15 16h-3a1 1 0 01-.117-1.993L12 14h2V2h-2a1 1 0 01-.993-.883L11 1a1 1 0 01.883-.993L12 0h3zM4 0a1 1 0 01.117 1.993L4 2H2v12h2a1 1 0 01.993.883L5 15a1 1 0 01-.883.993L4 16H1a1 1 0 01-.993-.883L0 15V1A1 1 0 01.883.007L1 0h3zm6.904 5c.256 0 .483.037.68.112a1.343 1.343 0 01.812.788c.072.184.108.385.108.604 0 .23-.05.441-.152.636a1.314 1.314 0 01-.456.492v.016l.08.04c.055.031.111.072.168.124.085.077.163.172.232.284a1.673 1.673 0 01.24.872c0 .25-.043.477-.128.68a1.518 1.518 0 01-.896.852 1.937 1.937 0 01-.68.116c-.427 0-.792-.101-1.096-.304a1.362 1.362 0 01-.584-.864c-.01-.053.01-.088.064-.104l.696-.16.033-.002c.03.002.051.022.063.058.059.16.155.296.288.408.133.112.312.168.536.168.256 0 .453-.076.592-.228a.827.827 0 00.208-.58c0-.277-.08-.495-.24-.652-.16-.157-.376-.236-.648-.236h-.232l-.035-.005c-.03-.01-.045-.035-.045-.075v-.632l.005-.035c.01-.03.035-.045.075-.045h.216l.138-.009a.734.734 0 00.438-.207c.144-.144.216-.336.216-.576a.745.745 0 00-.192-.532c-.128-.136-.307-.204-.536-.204-.203 0-.363.05-.48.152a.815.815 0 00-.248.408c-.016.048-.048.067-.096.056l-.68-.16-.034-.012c-.028-.016-.038-.044-.03-.084a1.347 1.347 0 01.516-.828c.136-.104.296-.185.48-.244A1.98 1.98 0 0110.904 5zm-6.152.088l.035.005c.03.01.045.035.045.075v5.28l-.005.035c-.01.03-.035.045-.075.045h-.736l-.035-.005c-.03-.01-.045-.035-.045-.075V6.16H3.92l-.832.584-.032.016C3.02 6.773 3 6.751 3 6.696V5.88l.006-.04a.157.157 0 01.05-.072l.872-.632.04-.027a.236.236 0 01.104-.021h.68zM7.344 5c.256 0 .483.04.68.12.197.08.364.188.5.324s.24.296.312.48c.072.184.108.383.108.596 0 .245-.045.47-.136.676-.09.205-.216.404-.376.596l-1.584 1.92v.016h2.016l.035.005c.03.01.045.035.045.075v.64l-.005.035c-.01.03-.035.045-.075.045H5.808l-.035-.005c-.03-.01-.045-.035-.045-.075v-.6l.004-.04a.132.132 0 01.036-.064l1.92-2.392.1-.133a1.95 1.95 0 00.156-.267.985.985 0 00.096-.432.736.736 0 00-.188-.512c-.125-.139-.303-.208-.532-.208-.219 0-.39.061-.512.184a.826.826 0 00-.224.496c-.01.053-.04.075-.088.064L5.792 6.4l-.034-.012c-.028-.016-.038-.044-.03-.084a1.425 1.425 0 01.94-1.192A1.88 1.88 0 017.344 5z", - ], - "array-string": [ - "M15 0a1 1 0 01.993.883L16 1v14a1 1 0 01-.883.993L15 16h-3a1 1 0 01-.117-1.993L12 14h2V2h-2a1 1 0 01-.993-.883L11 1a1 1 0 01.883-.993L12 0h3zM4 0a1 1 0 01.117 1.993L4 2H2v12h2a1 1 0 01.993.883L5 15a1 1 0 01-.883.993L4 16H1a1 1 0 01-.993-.883L0 15V1A1 1 0 01.883.007L1 0h3zm1.61 5c.514 0 .962.212 1.343.637.382.425.573.997.573 1.716 0 .838-.258 1.588-.773 2.252-.514.663-1.327 1.2-2.437 1.609v-.465l.233-.095a3.09 3.09 0 001.274-1.017c.366-.505.55-1.03.55-1.577a.478.478 0 00-.057-.26c-.018-.037-.043-.056-.074-.056s-.08.025-.149.075c-.198.142-.446.214-.744.214-.36 0-.675-.145-.944-.433A1.453 1.453 0 014 6.572c0-.422.155-.79.465-1.102.31-.313.692-.47 1.144-.47zm4.474 0c.514 0 .963.212 1.344.637.381.425.572.997.572 1.716 0 .838-.257 1.588-.772 2.252-.515.663-1.327 1.2-2.437 1.609v-.465l.233-.095a3.09 3.09 0 001.274-1.017c.366-.505.549-1.03.549-1.577a.478.478 0 00-.056-.26c-.019-.037-.044-.056-.075-.056-.03 0-.08.025-.149.075-.198.142-.446.214-.744.214-.36 0-.674-.145-.944-.433a1.453 1.453 0 01-.405-1.028c0-.422.155-.79.466-1.102.31-.313.691-.47 1.144-.47z", - ], - "array-timestamp": [ - "M15 0a1 1 0 01.993.883L16 1v14a1 1 0 01-.883.993L15 16h-3a1 1 0 01-.117-1.993L12 14h2V2h-2a1 1 0 01-.993-.883L11 1a1 1 0 01.883-.993L12 0h3zM4 0a1 1 0 01.117 1.993L4 2H2v12h2a1 1 0 01.993.883L5 15a1 1 0 01-.883.993L4 16H1a1 1 0 01-.993-.883L0 15V1A1 1 0 01.883.007L1 0h3zm4 3a5 5 0 110 10A5 5 0 018 3zm0 1a4 4 0 100 8 4 4 0 000-8zm2.354 1.646a.5.5 0 01.057.638l-.057.07-2 2a.5.5 0 01-.638.057l-.07-.057-1-1a.5.5 0 01.638-.765l.07.057.646.647 1.646-1.647a.5.5 0 01.708 0z", - ], - "arrow-bottom-left": [ - "M14 3a1.003 1.003 0 00-1.71-.71L4 10.59V6c0-.55-.45-1-1-1s-1 .45-1 1v7c0 .55.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1H5.41l8.29-8.29c.19-.18.3-.43.3-.71z", - ], - "arrow-bottom-right": [ - "M13 5c-.55 0-1 .45-1 1v4.59l-8.29-8.3a1.003 1.003 0 00-1.42 1.42l8.3 8.29H6c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1z", - ], - "arrow-down": [ - "M13 8c-.3 0-.5.1-.7.3L9 11.6V2c0-.5-.4-1-1-1s-1 .5-1 1v9.6L3.7 8.3C3.5 8.1 3.3 8 3 8c-.5 0-1 .5-1 1 0 .3.1.5.3.7l5 5c.2.2.4.3.7.3s.5-.1.7-.3l5-5c.2-.2.3-.4.3-.7 0-.6-.4-1-1-1z", - ], - "arrow-left": [ - "M13.99 6.99H4.41L7.7 3.7a1.003 1.003 0 00-1.42-1.42l-5 5a1.014 1.014 0 000 1.42l5 5a1.003 1.003 0 001.42-1.42L4.41 8.99H14c.55 0 1-.45 1-1s-.46-1-1.01-1z", - ], - "arrow-right": [ - "M14.7 7.29l-5-5a.965.965 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l3.29 3.29H1.99c-.55 0-1 .45-1 1s.45 1 1 1h9.59l-3.29 3.29a1.003 1.003 0 001.42 1.42l5-5c.18-.18.29-.43.29-.71s-.12-.52-.3-.7z", - ], - "arrow-top-left": [ - "M13.71 12.29L5.41 4H10c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1s1-.45 1-1V5.41l8.29 8.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z", - ], - "arrow-top-right": [ - "M13 2H6c-.55 0-1 .45-1 1s.45 1 1 1h4.59L2.3 12.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L12 5.41V10c0 .55.45 1 1 1s1-.45 1-1V3c0-.55-.45-1-1-1z", - ], - "arrow-up": [ - "M13.7 6.3l-5-5C8.5 1.1 8.3 1 8 1s-.5.1-.7.3l-5 5c-.2.2-.3.4-.3.7 0 .6.5 1 1 1 .3 0 .5-.1.7-.3L7 4.4V14c0 .6.4 1 1 1s1-.4 1-1V4.4l3.3 3.3c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7z", - ], - "arrows-horizontal": [ - "M15.7 7.3l-4-4c-.2-.2-.4-.3-.7-.3-.6 0-1 .5-1 1 0 .3.1.5.3.7L12.6 7H3.4l2.3-2.3c.2-.2.3-.4.3-.7 0-.5-.4-1-1-1-.3 0-.5.1-.7.3l-4 4c-.2.2-.3.4-.3.7s.1.5.3.7l4 4c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7L3.4 9h9.2l-2.3 2.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3l4-4c.2-.2.3-.4.3-.7s-.1-.5-.3-.7z", - ], - "arrows-vertical": [ - "M12 10c-.3 0-.5.1-.7.3L9 12.6V3.4l2.3 2.3c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7l-4-4C8.5.1 8.3 0 8 0s-.5.1-.7.3l-4 4c-.2.2-.3.4-.3.7 0 .6.5 1 1 1 .3 0 .5-.1.7-.3L7 3.4v9.2l-2.3-2.3c-.2-.2-.4-.3-.7-.3-.5 0-1 .4-1 1 0 .3.1.5.3.7l4 4c.2.2.4.3.7.3s.5-.1.7-.3l4-4c.2-.2.3-.4.3-.7 0-.6-.4-1-1-1z", - ], - asterisk: [ - "M14.54 11.18l.01-.02L9.8 8l4.75-3.17-.01-.02c.27-.17.46-.46.46-.81 0-.55-.45-1-1-1-.21 0-.39.08-.54.18l-.01-.02L9 6.13V1c0-.55-.45-1-1-1S7 .45 7 1v5.13L2.55 3.17l-.01.01A.969.969 0 002 3c-.55 0-1 .45-1 1 0 .35.19.64.46.82l-.01.01L6.2 8l-4.75 3.17.01.02c-.27.17-.46.46-.46.81 0 .55.45 1 1 1 .21 0 .39-.08.54-.18l.01.02L7 9.87V15c0 .55.45 1 1 1s1-.45 1-1V9.87l4.45 2.96.01-.02c.15.11.33.19.54.19.55 0 1-.45 1-1 0-.35-.19-.64-.46-.82z", - ], - "automatic-updates": [ - "M8 14c-3.31 0-6-2.69-6-6 0-1.77.78-3.36 2-4.46V5c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1s.45 1 1 1h1.74A7.95 7.95 0 000 8c0 4.42 3.58 8 8 8 .55 0 1-.45 1-1s-.45-1-1-1zM8 2a5.9 5.9 0 012.95.81l1.47-1.47A7.893 7.893 0 008 0c-.55 0-1 .45-1 1s.45 1 1 1zm2.71 6.71l5-5a1.003 1.003 0 00-1.42-1.42L10 6.59l-1.29-1.3a1.003 1.003 0 00-1.42 1.42l2 2c.18.18.43.29.71.29s.53-.11.71-.29zM16 8c0-.55-.06-1.08-.16-1.6l-1.87 1.87A5.966 5.966 0 0112 12.45V11c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-1.74A7.95 7.95 0 0016 8z", - ], - backlink: [ - "M14 10a1 1 0 110 2h-.585l2.292 2.293a1 1 0 01-1.32 1.497l-.094-.083L12 13.415V14a1 1 0 11-2 0l.003-3.075.012-.1.012-.059.033-.108.034-.081.052-.098.067-.096.08-.09a1.01 1.01 0 01.112-.097l.11-.071.143-.065.076-.024.091-.02.116-.014L14 10zM6.036 6.136l-3.45 3.45-.117.127a2 2 0 002.818 2.818l.127-.117 3.45-3.449a4 4 0 01-.885 3.704l-.15.16-1 1A4 4 0 011.02 8.33l.15-.16 1-1a3.998 3.998 0 013.865-1.035zm4.671-1.843a1 1 0 01.083 1.32l-.083.094-5 5a1 1 0 01-1.497-1.32l.083-.094 5-5a1 1 0 011.414 0zm3.121-3.121a4 4 0 01.151 5.497l-.15.16-1 1a3.998 3.998 0 01-3.864 1.036l3.45-3.45.116-.128a2 2 0 00-2.818-2.818l-.127.117-3.45 3.45A4 4 0 017.02 2.33l.15-.16 1-1a4 4 0 015.657 0z", - ], - badge: [ - "M13.36 4.59c-.15-1.13.5-2.01 1.1-2.87L13.43.53c-1.72.88-4.12.65-5.63-.53-1.51 1.18-3.91 1.41-5.63.52l-1.03 1.2c.61.86 1.25 1.74 1.1 2.87-.3 2.29-2.45 4.17-1.32 6.68.45 1.14 1.44 1.9 2.72 2.2 1.56.36 3.52.72 4.16 2.53.64-1.81 2.6-2.16 4.16-2.54 1.28-.3 2.27-1.06 2.72-2.2 1.12-2.5-1.03-4.38-1.32-6.67z", - ], - "ban-circle": [ - "M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3 9H5c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1z", - ], - "bank-account": [ - "M15.36 6.46l-.62-.14c-.31-1.12-.98-2.15-1.87-2.99l.4-1.77a.438.438 0 00-.49-.56c-.85.09-1.6.42-2.14.98-.84-.32-1.87-.51-2.85-.51-2.49 0-4.63 1.17-5.92 2.89-.18-.04-.36-.09-.53-.09-.76 0-1.34.61-1.34 1.4 0 .56.31 1.03.76 1.26-.05.33-.09.7-.09 1.07 0 1.68.71 3.17 1.83 4.34l-.27 1.59c-.09.56.35 1.07.89 1.07h.58c.45 0 .8-.33.89-.79l.04-.37c.94.42 2 .7 3.16.7 1.11 0 2.23-.23 3.16-.7l.05.37c.09.47.45.79.89.79h.58c.53 0 .98-.51.89-1.07l-.27-1.54c.62-.61 1.07-1.35 1.38-2.15l.8-.19c.4-.09.71-.47.71-.93V7.4c.09-.47-.22-.84-.62-.94zM12 8c-.6 0-1-.7-1-1.5S11.4 5 12 5s1 .7 1 1.5S12.6 8 12 8zM6.21 4.92c-.41.2-.91.04-1.12-.36-.21-.4-.04-.88.37-1.07 1.35-.65 2.73-.65 4.08 0 .41.2.58.68.37 1.07-.21.4-.71.56-1.12.36-.87-.43-1.71-.43-2.58 0z", - ], - barcode: [ - "M0 14h2V2H0v12zm6 0h1V2H6v12zm2 0h1V2H8v12zm-5 0h2V2H3v12zM15 2v12h1V2h-1zm-5 12h1V2h-1v12zm2 0h2V2h-2v12z", - ], - blank: [], - "blocked-person": [ - "M9.39 12.69c-1.2-.53-1.04-.85-1.08-1.29-.01-.07-.01-.13-.02-.2.41-.37.75-.87.97-1.44 0 0 .01-.03.01-.04.05-.13.09-.26.13-.39.27-.06.43-.36.5-.63.01-.03.03-.08.05-.12C8.18 7.8 6.94 6.04 6.94 4c0-.32.04-.62.09-.92-.17-.03-.35-.08-.51-.08-.65 0-1.37.2-1.88.59-.5.38-.87.92-1.05 1.51-.04.14-.07.27-.09.41-.09.48-.14 1.23-.14 1.74v.06c-.19.08-.36.27-.4.68-.03.31.1.59.16.7.06.28.23.59.51.64.04.14.08.27.13.39 0 .01.01.02.01.02v.01c.22.59.57 1.1.99 1.46 0 .06-.01.12-.01.17-.04.44.08.76-1.12 1.29-1.2.53-3.01 1.1-3.38 1.95C-.12 15.5.03 16 .03 16h12.96s.15-.5-.22-1.36c-.37-.85-2.18-1.42-3.38-1.95zM11.97 0C9.75 0 7.94 1.79 7.94 4s1.8 4 4.03 4S16 6.21 16 4s-1.8-4-4.03-4zM9.96 4c0-1.1.9-2 2.01-2 .37 0 .72.11 1.02.28l-2.75 2.73c-.17-.3-.28-.64-.28-1.01zm2.01 2c-.37 0-.72-.11-1.02-.28l2.75-2.73c.18.3.28.64.28 1.01.01 1.1-.9 2-2.01 2z", - ], - bold: [ - "M11.7 7c.2-.4.3-1 .3-1.5v-.4V5c0-.1 0-.2-.1-.3v-.1C11.4 3.1 10.1 2 8.5 2H4c-.5 0-1 .4-1 1v10c0 .5.4 1 1 1h5c2.2 0 4-1.8 4-4 0-1.2-.5-2.3-1.3-3zM6 5h2c.6 0 1 .4 1 1s-.4 1-1 1H6V5zm3 6H6V9h3c.6 0 1 .4 1 1s-.4 1-1 1z", - ], - book: [ - "M2 1v14c0 .55.45 1 1 1h1V0H3c-.55 0-1 .45-1 1zm11-1h-1v7l-2-2-2 2V0H5v16h8c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - bookmark: [ - "M11.2.01h-.15C11.03.01 11.02 0 11 0H5c-.02 0-.03.01-.05.01H4.8c-.44 0-.8.37-.8.82v14.75c0 .45.25.56.57.24l2.87-2.94c.31-.32.82-.32 1.13 0l2.87 2.94c.31.32.57.21.57-.24V.83C12 .38 11.64.01 11.2.01z", - ], - box: [ - "M6 10h4c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm9.93-4.37v-.02L13.94.63C13.78.26 13.42 0 13 0H3c-.42 0-.78.26-.93.63L.08 5.61l-.01.02C.03 5.74 0 5.87 0 6v9c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V6c0-.13-.03-.26-.07-.37zM9 2h3.32l1.2 3H9V2zM3.68 2H7v3H2.48l1.2-3zM14 14H2V7h12v7z", - ], - briefcase: [ - "M15 3.98h-3v-2c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v2H1c-.55 0-1 .45-1 1v4h3v-1h2v1h6v-1h2v1h3v-4c0-.55-.45-1-1-1zm-5 0H6v-1h4v1zm3 7h-2v-1H5v1H3v-1H0v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-4h-3v1z", - ], - "bring-data": [ - "M14 14a1 1 0 010 2H2a1 1 0 010-2h12zM7.995 3.005c.55 0 1 .45 1 .999v5.584l1.29-1.288a1.002 1.002 0 011.42 1.419l-3 2.996a1.015 1.015 0 01-1.42 0l-3-2.997A1.002 1.002 0 015.705 8.3l1.29 1.29V4.013c0-.55.45-1.009 1-1.009zM14 0a1 1 0 110 2 1 1 0 010-2zm-3 0a1 1 0 110 2 1 1 0 010-2zM8 0a1 1 0 110 2 1 1 0 010-2zM5 0a1 1 0 110 2 1 1 0 010-2zM2 0a1 1 0 110 2 1 1 0 010-2z", - ], - buggy: [ - "M13.928.629A1 1 0 0012.89.006l-9 1a1 1 0 00-.747.48L.431 6.005A.5.5 0 000 6.5v3a.5.5 0 00.5.5h2.798c.341 0 .672.116.938.329l1.952 1.561A.5.5 0 006.5 12H10a.5.5 0 00.4-.2l.9-1.2a1.5 1.5 0 011.2-.6h3a.5.5 0 00.5-.5v-4a.5.5 0 00-.308-.462L13.928.628zM12.36 2.094l-.006-.016-3.166.352 1.121 3.083 2.052-3.419zm.467 1.166l-1.649 2.748 2.51-.594-.861-2.154zM9.603 6.496L8.166 2.543l-3.563.396L2.766 6H3.5a.5.5 0 01.367.16L6.218 8.7h1.914l1.452-2.177a.5.5 0 01.019-.027zM2.5 16a2.5 2.5 0 100-5 2.5 2.5 0 000 5zm11 0a2.5 2.5 0 100-5 2.5 2.5 0 000 5z", - ], - build: [ - "M15.39 12.41L7.7 6l1.07-1.1c.34-.34-.12-.63.12-1.26.88-2.17 3.41-2.35 3.41-2.35s.36-.37.71-.72C9.74-.81 7.53.53 6.54 1.4L3.12 4.9l-.71.72c-.39.4-.39 1.05 0 1.45l-.7.72c-.39-.4-1.02-.4-1.41 0s-.39 1.05 0 1.45l1.41 1.45c.39.4 1.02.4 1.41 0s.39-1.05 0-1.45l.71-.72c.39.4 1.02.4 1.41 0l.8-.82 6.39 7.67c.82.82 2.14.82 2.96 0 .81-.82.81-2.15 0-2.96z", - ], - calculator: [ - "M13 0H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM6 14H4v-2h2v2zm0-3H4V9h2v2zm0-3H4V6h2v2zm3 6H7v-2h2v2zm0-3H7V9h2v2zm0-3H7V6h2v2zm3 6h-2V9h2v5zm0-6h-2V6h2v2zm0-3H4V2h8v3z", - ], - calendar: [ - "M11 3c.6 0 1-.5 1-1V1c0-.6-.4-1-1-1s-1 .4-1 1v1c0 .5.4 1 1 1zm3-2h-1v1c0 1.1-.9 2-2 2s-2-.9-2-2V1H6v1c0 1.1-.9 2-2 2s-2-.9-2-2V1H1c-.6 0-1 .5-1 1v12c0 .6.4 1 1 1h13c.6 0 1-.4 1-1V2c0-.6-.5-1-1-1zM5 13H2v-3h3v3zm0-4H2V6h3v3zm4 4H6v-3h3v3zm0-4H6V6h3v3zm4 4h-3v-3h3v3zm0-4h-3V6h3v3zM4 3c.6 0 1-.5 1-1V1c0-.6-.4-1-1-1S3 .4 3 1v1c0 .5.4 1 1 1z", - ], - camera: [ - "M15 3h-2.59L10.7 1.29A.956.956 0 0010 1H6c-.28 0-.53.11-.71.29L3.59 3H1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h2.56c1.1 1.22 2.67 2 4.44 2s3.34-.78 4.44-2H15c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM3 6H1V5h2v1zm5 6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", - ], - "caret-down": [ - "M12 6.5c0-.28-.22-.5-.5-.5h-7a.495.495 0 00-.37.83l3.5 4c.09.1.22.17.37.17s.28-.07.37-.17l3.5-4c.08-.09.13-.2.13-.33z", - ], - "caret-left": [ - "M9.5 4c-.13 0-.24.05-.33.13l-4 3.5c-.1.09-.17.22-.17.37s.07.28.17.37l4 3.5a.495.495 0 00.83-.37v-7c0-.28-.22-.5-.5-.5z", - ], - "caret-right": [ - "M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z", - ], - "caret-up": [ - "M11.87 9.17s.01 0 0 0l-3.5-4C8.28 5.07 8.15 5 8 5s-.28.07-.37.17l-3.5 4a.495.495 0 00.37.83h7a.495.495 0 00.37-.83z", - ], - "cargo-ship": [ - "M10 1h3a1 1 0 011 1v2h-4V1zM2.25 4a.25.25 0 00-.25.25V9H.883a.5.5 0 00-.429.757l1.072 1.787c.207.344.477.638.791.87A9.76 9.76 0 011 12.5a.5.5 0 000 1c2.067 0 3.414-.543 4.161-.917.55.373 1.505.917 2.839.917 1.32 0 2.27-.533 2.822-.905l.004.002c.196.105.48.24.856.374.75.268 1.857.529 3.318.529a.5.5 0 000-1c-.326 0-.63-.014-.916-.039.47-.328.848-.79 1.07-1.347l.572-1.428A.5.5 0 0015.26 9H4V4.25A.25.25 0 003.75 4h-1.5zm2.714 9.56a.5.5 0 01.527.033c.455.325 1.277.907 2.509.907s2.054-.582 2.51-.907a.5.5 0 01.579-.001l.006.004.036.023c.034.022.09.055.168.097.154.082.394.197.72.313.649.232 1.642.471 2.981.471a.5.5 0 010 1c-1.46 0-2.568-.261-3.318-.53a6.316 6.316 0 01-.856-.373l-.004-.002c-.552.372-1.502.905-2.822.905-1.334 0-2.289-.544-2.839-.917-.747.374-2.094.917-4.161.917a.5.5 0 010-1c2.129 0 3.384-.63 3.964-.94zM14 5h-4v3h3a1 1 0 001-1V5zM5 2a1 1 0 011-1h3v3H5V2zm4 3H5v2a1 1 0 001 1h3V5z", - ], - "cell-tower": [ - "M8.97 6.76c-.01-.05-.04-.08-.06-.13-.02-.05-.03-.1-.05-.15.08-.14.14-.3.14-.48 0-.55-.45-1-1-1s-1 .45-1 1c0 .18.06.34.14.48-.03.05-.03.1-.05.15-.02.05-.05.08-.06.13l-2 8c-.13.54.19 1.08.73 1.21a.995.995 0 001.21-.73L7.53 13h.94l.56 2.24a1 1 0 001.94-.48l-2-8zM3.72 1.7C4.1 1.3 4.09.67 3.7.28S2.67-.09 2.28.3c-3.05 3.12-3.05 8.28 0 11.4a.996.996 0 101.43-1.39c-2.28-2.35-2.28-6.27.01-8.61zM11.6 3.2c-.44-.33-1.07-.24-1.4.2-.33.44-.24 1.07.2 1.4.43.32.53 1.96-.04 2.43-.42.35-.48.98-.13 1.41.35.42.98.48 1.41.13 1.59-1.33 1.39-4.5-.04-5.57z", - "M13.72.3c-.39-.4-1.02-.4-1.41-.02s-.41 1.02-.03 1.42c2.29 2.34 2.29 6.26 0 8.6-.39.39-.38 1.03.02 1.41s1.03.38 1.41-.02c3.05-3.11 3.05-8.27.01-11.39zM5.4 7.23c-.57-.47-.47-2.11-.04-2.43.44-.33.53-.96.2-1.4s-.96-.53-1.4-.2c-1.44 1.07-1.63 4.24-.04 5.57.42.35 1.05.3 1.41-.13.35-.42.29-1.06-.13-1.41z", - ], - changes: [ - "M8.29 7.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3a1.003 1.003 0 00-1.42-1.42L13 7.59V1c0-.55-.45-1-1-1s-1 .45-1 1v6.59l-1.29-1.3a1.003 1.003 0 00-1.42 1.42zM14.5 13h-13c-.83 0-1.5.67-1.5 1.5S.67 16 1.5 16h13c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5zM1 5c.28 0 .53-.11.71-.29L3 3.41V10c0 .55.45 1 1 1s1-.45 1-1V3.41L6.29 4.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-3-3C4.53.11 4.28 0 4 0s-.53.11-.71.29l-3 3A1.003 1.003 0 001 5z", - ], - chart: [ - "M0 15c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V9.4L0 11v4zm6-5.5V15c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-5l-1 1-3-1.5zM13 7l-1 1v7c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V7.88c-.26.07-.58.12-1 .12-1.96 0-2-1-2-1zm2-6h-3c-.55 0-1 .45-1 1s.45 1 1 1h.59L8.8 6.78 5.45 5.11v.01C5.31 5.05 5.16 5 5 5s-.31.05-.44.11V5.1l-4 2v.01C.23 7.28 0 7.61 0 8c0 .55.45 1 1 1 .16 0 .31-.05.44-.11v.01L5 7.12 8.55 8.9v-.01c.14.06.29.11.45.11.28 0 .53-.11.71-.29L14 4.41V5c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1z", - ], - chat: [ - "M6 10c-1.1 0-2-.9-2-2V3H1c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1v2a1.003 1.003 0 001.71.71L5.41 13H10c.55 0 1-.45 1-1v-1.17l-.83-.83H6zm9-10H6c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h4.59l2.71 2.71c.17.18.42.29.7.29.55 0 1-.45 1-1V9c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - "chevron-backward": [ - "M7.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L6 6.59V4c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1s1-.45 1-1V9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L7.41 8z", - ], - "chevron-down": [ - "M12 5c-.28 0-.53.11-.71.29L8 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29s.53-.11.71-.29l4-4A1.003 1.003 0 0012 5z", - ], - "chevron-forward": [ - "M10 3c-.55 0-1 .45-1 1v2.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L7.59 8 4.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L9 9.41V12c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - "chevron-left": [ - "M7.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-4 4C5.11 7.47 5 7.72 5 8c0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L7.41 8z", - ], - "chevron-right": [ - "M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z", - ], - "chevron-up": [ - "M12.71 9.29l-4-4C8.53 5.11 8.28 5 8 5s-.53.11-.71.29l-4 4a1.003 1.003 0 001.42 1.42L8 7.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z", - ], - circle: [ - "M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 14c-3.3 0-6-2.7-6-6s2.7-6 6-6 6 2.7 6 6-2.7 6-6 6z", - ], - "circle-arrow-down": [ - "M11 7c-.28 0-.53.11-.71.29L9 8.59V5c0-.55-.45-1-1-1s-1 .45-1 1v3.59l-1.29-1.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 7zM8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z", - ], - "circle-arrow-left": [ - "M11 7H7.41L8.7 5.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3C4.11 7.47 4 7.72 4 8c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L7.41 9H11c.55 0 1-.45 1-1s-.45-1-1-1zM8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z", - ], - "circle-arrow-right": [ - "M8.71 4.29a1.003 1.003 0 00-1.42 1.42L8.59 7H5c-.55 0-1 .45-1 1s.45 1 1 1h3.59L7.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-3-3zM8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z", - ], - "circle-arrow-up": [ - "M8.71 4.29C8.53 4.11 8.28 4 8 4s-.53.11-.71.29l-3 3a1.003 1.003 0 001.42 1.42L7 7.41V11c0 .55.45 1 1 1s1-.45 1-1V7.41l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-3-3zM8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z", - ], - citation: [ - "M15.02 5c0-1.66-1.34-3-3-3s-3 1.34-3 3a2.996 2.996 0 003.6 2.94C12.1 9.76 11.14 11 10.02 11c-.55 0-1 .45-1 1s.45 1 1 1c2.76 0 5-3.13 5-7 0-.2-.02-.39-.04-.58.01-.14.04-.28.04-.42zm-11-3c-1.66 0-3 1.34-3 3a2.996 2.996 0 003.6 2.94C4.1 9.76 3.14 11 2.02 11c-.55 0-1 .45-1 1s.45 1 1 1c2.76 0 5-3.13 5-7 0-.2-.02-.39-.04-.58.01-.14.04-.28.04-.42 0-1.66-1.35-3-3-3z", - ], - clean: [ - "M12 8l-1.2 2.796-2.8 1.2 2.8 1.197L12 16l1.2-2.807L16 12l-2.8-1.204zM5 0L3.5 3.5 0 4.995 3.5 6.5 5 10l1.5-3.5L10 5 6.5 3.5z", - ], - clip: [ - "M0 1a1 1 0 011-1h4a1 1 0 010 2H2v3a1 1 0 01-2 0V1zm1 15a1 1 0 01-1-1v-4a1 1 0 112 0v3h3a1 1 0 110 2H1zm14 0a1 1 0 001-1v-4a1 1 0 10-2 0v3h-3a1 1 0 100 2h4zm0-16a1 1 0 011 1v4a1 1 0 11-2 0V2h-3a1 1 0 110-2h4zM8 11a3 3 0 100-6 3 3 0 000 6z", - ], - clipboard: [ - "M11 2c0-.55-.45-1-1-1h.22C9.88.4 9.24 0 8.5 0S7.12.4 6.78 1H7c-.55 0-1 .45-1 1v1h5V2zm2 0h-1v2H5V2H4c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z", - ], - cloud: [ - "M12 6c-.03 0-.07 0-.1.01A5 5 0 002 7c0 .11.01.22.02.33A3.51 3.51 0 000 10.5C0 12.43 1.57 14 3.5 14H12c2.21 0 4-1.79 4-4s-1.79-4-4-4z", - ], - "cloud-download": [ - "M11 11c-.28 0-.53.11-.71.29L9 12.59V8c0-.55-.45-1-1-1s-1 .45-1 1v4.59L5.71 11.3A.965.965 0 005 11a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 11zm1-7c-.03 0-.07 0-.1.01A5 5 0 002 5c0 .11.01.22.02.33A3.51 3.51 0 000 8.5c0 1.41.84 2.61 2.03 3.17C2.2 10.17 3.46 9 5 9c.06 0 .13.02.19.02C5.07 8.7 5 8.36 5 8c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .36-.07.7-.19 1.02.06 0 .13-.02.19-.02 1.48 0 2.7 1.07 2.95 2.47A3.964 3.964 0 0016 8c0-2.21-1.79-4-4-4z", - ], - "cloud-upload": [ - "M8.71 7.29C8.53 7.11 8.28 7 8 7s-.53.11-.71.29l-3 3a1.003 1.003 0 001.42 1.42L7 10.41V15c0 .55.45 1 1 1s1-.45 1-1v-4.59l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-3-3zM12 4c-.03 0-.07 0-.1.01A5 5 0 002 5c0 .11.01.22.02.33a3.495 3.495 0 00.07 6.37c-.05-.23-.09-.46-.09-.7 0-.83.34-1.58.88-2.12l3-3a2.993 2.993 0 014.24 0l3 3c.54.54.88 1.29.88 2.12 0 .16-.02.32-.05.47C15.17 10.78 16 9.5 16 8c0-2.21-1.79-4-4-4z", - ], - code: [ - "M15.71 7.29l-3-3a1.003 1.003 0 00-1.42 1.42L13.59 8l-2.29 2.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71zM5 5a1.003 1.003 0 00-1.71-.71l-3 3C.11 7.47 0 7.72 0 8c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L2.41 8 4.7 5.71c.19-.18.3-.43.3-.71zm4-3c-.48 0-.87.35-.96.81l-2 10c-.01.06-.04.12-.04.19 0 .55.45 1 1 1 .48 0 .87-.35.96-.81l2-10c.01-.06.04-.12.04-.19 0-.55-.45-1-1-1z", - ], - "code-block": [ - "M15 3h-2V2c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H7V2c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-8.29 8.29a1.003 1.003 0 01-1.42 1.42l-3-3C2.11 9.53 2 9.28 2 9s.11-.53.29-.71l3-3a1.003 1.003 0 011.42 1.42L4.41 9l2.3 2.29zm7-1.58l-3 3a1.003 1.003 0 01-1.42-1.42L11.59 9l-2.3-2.29a1.003 1.003 0 011.42-1.42l3 3c.18.18.29.43.29.71s-.11.53-.29.71z", - ], - cog: [ - "M15.19 6.39h-1.85c-.11-.37-.27-.71-.45-1.04l1.36-1.36c.31-.31.31-.82 0-1.13l-1.13-1.13a.803.803 0 00-1.13 0l-1.36 1.36c-.33-.17-.67-.33-1.04-.44V.79c0-.44-.36-.8-.8-.8h-1.6c-.44 0-.8.36-.8.8v1.86c-.39.12-.75.28-1.1.47l-1.3-1.3c-.3-.3-.79-.3-1.09 0L1.82 2.91c-.3.3-.3.79 0 1.09l1.3 1.3c-.2.34-.36.7-.48 1.09H.79c-.44 0-.8.36-.8.8v1.6c0 .44.36.8.8.8h1.85c.11.37.27.71.45 1.04l-1.36 1.36c-.31.31-.31.82 0 1.13l1.13 1.13c.31.31.82.31 1.13 0l1.36-1.36c.33.18.67.33 1.04.44v1.86c0 .44.36.8.8.8h1.6c.44 0 .8-.36.8-.8v-1.86c.39-.12.75-.28 1.1-.47l1.3 1.3c.3.3.79.3 1.09 0l1.09-1.09c.3-.3.3-.79 0-1.09l-1.3-1.3c.19-.35.36-.71.48-1.1h1.85c.44 0 .8-.36.8-.8v-1.6a.816.816 0 00-.81-.79zm-7.2 4.6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", - ], - "collapse-all": [ - "M7.29 6.71c.18.18.43.29.71.29s.53-.11.71-.29l4-4a1.003 1.003 0 00-1.42-1.42L8 4.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4zm1.42 2.58C8.53 9.11 8.28 9 8 9s-.53.11-.71.29l-4 4a1.003 1.003 0 001.42 1.42L8 11.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-4-4z", - ], - "column-layout": [ - "M15 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM4 13H2V3h2v10zm3 0H5V3h2v10zm7 0H8V3h6v10z", - ], - comment: [ - "M14 1H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h2v3a1.003 1.003 0 001.71.71L8.41 12H14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM3.5 8C2.67 8 2 7.33 2 6.5S2.67 5 3.5 5 5 5.67 5 6.5 4.33 8 3.5 8zm4 0C6.67 8 6 7.33 6 6.5S6.67 5 7.5 5 9 5.67 9 6.5 8.33 8 7.5 8zm4 0c-.83 0-1.5-.67-1.5-1.5S10.67 5 11.5 5s1.5.67 1.5 1.5S12.33 8 11.5 8z", - ], - comparison: [ - "M7.99-.01c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1v-14c0-.55-.45-1-1-1zm-3 3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm10 0h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-4v-2h4v2zm0 3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-4v-2h4v2zm-10-3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1z", - ], - compass: [ - "M12 8c0 .14-.03.27-.08.39l-3 6.99c-.15.37-.51.62-.92.62s-.77-.25-.92-.61l-3-6.99a1.006 1.006 0 010-.79l3-6.99C7.23.25 7.59 0 8 0s.77.25.92.61l3 6.99c.05.13.08.26.08.4zM8 3.54L6.09 8h3.82L8 3.54z", - ], - compressed: [ - "M15.93 5.63v-.02L13.94.63C13.78.26 13.42 0 13 0H3c-.42 0-.78.26-.93.63L.08 5.61l-.01.02C.03 5.74 0 5.87 0 6v9c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V6c0-.13-.03-.26-.07-.37zM9 2h3.32l1.2 3H9V2zM3.68 2H7v3H2.48l1.2-3zM14 14H2V7h5v2.59l-1.29-1.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3a1.003 1.003 0 00-1.42-1.42L9 9.59V7h5v7z", - ], - confirm: [ - "M8.7 4.29a.965.965 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l5-5a1.003 1.003 0 00-1.42-1.42l-4.29 4.3L8.7 4.29zm5.22 3.01c.03.23.07.45.07.69 0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6c.81 0 1.59.17 2.3.46l1.5-1.5A7.998 7.998 0 00-.01 7.99c0 4.42 3.58 8 8 8s8-3.58 8-8c0-.83-.13-1.64-.36-2.39l-1.71 1.7z", - ], - console: [ - "M15 15H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM14 5H2v8h12V5zM4 6c.28 0 .53.11.71.29l2 2c.18.18.29.43.29.71s-.11.53-.29.71l-2 2a1.003 1.003 0 01-1.42-1.42L4.59 9l-1.3-1.29A1.003 1.003 0 014 6zm5 4h3c.55 0 1 .45 1 1s-.45 1-1 1H9c-.55 0-1-.45-1-1s.45-1 1-1z", - ], - contrast: [ - "M15.2 6.4h-1.44c-.13-.47-.32-.92-.56-1.34L14.26 4c.31-.31.31-.82 0-1.13l-1.13-1.13a.803.803 0 00-1.13 0L10.94 2.8c-.42-.24-.86-.42-1.34-.56V.8c0-.44-.36-.8-.8-.8H7.2c-.44 0-.8.36-.8.8v1.44c-.5.14-.96.34-1.4.59l-1-1c-.3-.3-.79-.3-1.09 0L1.83 2.91c-.3.3-.3.79 0 1.09l1 1c-.25.44-.45.9-.59 1.4H.8c-.44 0-.8.36-.8.8v1.6c0 .44.36.8.8.8h1.44c.13.47.32.92.56 1.34L1.74 12c-.31.31-.31.82 0 1.13l1.13 1.13c.31.31.82.31 1.13 0l1.06-1.06c.42.24.86.42 1.34.56v1.44c0 .44.36.8.8.8h1.6c.44 0 .8-.36.8-.8v-1.44c.5-.14.96-.33 1.4-.59l1 1c.3.3.79.3 1.09 0l1.09-1.09c.3-.3.3-.79 0-1.09l-1-1c.25-.43.45-.9.59-1.4h1.44c.44 0 .8-.36.8-.8V7.2a.818.818 0 00-.81-.8zM8 12c-2.21 0-4-1.79-4-4s1.79-4 4-4v8z", - ], - control: [ - "M13 8H8v5h5V8zm0-5H8v4h5V3zm2-3H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14H2V2h12v12zM7 3H3v10h4V3z", - ], - "credit-card": [ - "M14.99 2.95h-14c-.55 0-1 .45-1 1v1h16v-1c0-.55-.45-1-1-1zm-15 10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-6h-16v6zm5.5-2h5c.28 0 .5.22.5.5s-.22.5-.5.5h-5c-.28 0-.5-.22-.5-.5s.23-.5.5-.5zm-3 0h1c.28 0 .5.22.5.5s-.22.5-.5.5h-1c-.28 0-.5-.22-.5-.5s.23-.5.5-.5z", - ], - cross: [ - "M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z", - ], - crown: [ - "M2 6l3 2 3-4 3 4 3-2-1 6H3L2 6zm6-5a1 1 0 110 2 1 1 0 010-2zM1 3a1 1 0 110 2 1 1 0 010-2zm14 0a1 1 0 110 2 1 1 0 010-2zM3 13h10v2H3v-2z", - ], - cube: [ - "M14.194 3.54L8 7.41 1.806 3.54 7.504.283a1 1 0 01.992 0l5.698 3.255zm.75.71a1 1 0 01.056.33v6.84a1 1 0 01-.504.868L8.5 15.714V8.277l6.444-4.027zm-13.888 0L7.5 8.277v7.437l-5.996-3.426A1 1 0 011 11.42V4.58a1 1 0 01.056-.33z", - ], - "cube-add": [ - "M14 2h1a1 1 0 010 2h-1v1a1 1 0 01-2 0V4h-1a1 1 0 010-2h1V1a1 1 0 012 0v1zM9.136.65a3.001 3.001 0 00.992 5.222c.018.058.038.115.059.172L8 7.41 1.806 3.54 7.504.283a1 1 0 01.992 0l.64.365zM15 7.235v4.184a1 1 0 01-.504.868L8.5 15.714V8.277l2.187-1.367A2.994 2.994 0 0013 8c.768 0 1.47-.289 2-.764zM1.056 4.25L7.5 8.277v7.437l-5.996-3.426A1 1 0 011 11.42V4.58a1 1 0 01.056-.33z", - ], - "cube-remove": [ - "M10.365 5.933L8 7.41 1.806 3.54 7.504.283a1 1 0 01.992 0l.64.365a3.001 3.001 0 001.228 5.283zM15 6v5.42a1 1 0 01-.504.868L8.5 15.714V8.277L12.143 6H15zM1.056 4.25L7.5 8.277v7.437l-5.996-3.426A1 1 0 011 11.42V4.58a1 1 0 01.056-.33zM11 2h4a1 1 0 010 2h-4a1 1 0 010-2z", - ], - "curved-range-chart": [ - "M15 12H3.12l1.81-1.39c1.73 1.01 5.53-.03 9.08-2.61l-1.22-1.5C10.3 8.3 7.86 9.37 6.65 9.29L14.3 3.4l-.6-.8-7.83 6.03c-.01-1.07 1.8-3.19 4.47-5.13L9.12 2C5.38 4.7 3.34 8.1 4.25 9.87L2 11.6V3c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - cut: [ - "M13 2s.71-1.29 0-2L8.66 5.07l1.05 1.32L13 2zm.07 8c-.42 0-.82.09-1.18.26L3.31 0c-.69.71 0 2 0 2l3.68 5.02-2.77 3.24A2.996 2.996 0 000 13c0 1.66 1.34 3 3 3s3-1.34 3-3c0-.46-.11-.89-.29-1.27L8.1 8.54l2.33 3.19c-.18.39-.29.82-.29 1.27 0 1.66 1.31 3 2.93 3S16 14.66 16 13s-1.31-3-2.93-3zM3 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm10.07 0c-.54 0-.98-.45-.98-1s.44-1 .98-1 .98.45.98 1-.44 1-.98 1z", - ], - cycle: [ - "M13 9a3 3 0 110 6 3 3 0 010-6zM3 9a3 3 0 110 6 3 3 0 010-6zm6.169-5.27l.087.09 1.51 1.746 1.589.549a1 1 0 01.65 1.16l-.032.112a1 1 0 01-1.159.65l-.112-.032-1.843-.636a1 1 0 01-.337-.198l-.092-.093-.959-1.109L7.041 7.5l1.691 1.819a1 1 0 01.26.556L9 10v3a1 1 0 01-1.993.117L7 13l-.001-2.608-2.056-2.211a1 1 0 01-.081-1.264l.082-.1 2.825-3.026a1 1 0 011.4-.061zM13 10.5a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm-10 0a1.5 1.5 0 100 3 1.5 1.5 0 000-3zM11 1a1.5 1.5 0 110 3 1.5 1.5 0 010-3z", - ], - dashboard: [ - "M5 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM4 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-2c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-2 6c0 1.1.9 2 2 2s2-.9 2-2c0-.53-2-5-2-5s-2 4.47-2 5zM8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm4-9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z", - ], - "data-connection": [ - "M1 9.52c.889.641 2.308 1.133 4.003 1.354L5 11a5.994 5.994 0 002.664 4.988c-.217.008-.44.012-.664.012-3.215 0-5.846-.85-5.993-1.906L1 14V9.52zM11 6c2.762 0 5 2.238 5 5s-2.238 5-5 5-5-2.238-5-5 2.238-5 5-5zm1 1l-4 5h2.5l-.5 3 4-5h-2.5l.5-3zm1-3.48v1.822a6.002 6.002 0 00-7.9 4.556l-.248-.03c-2.168-.28-3.733-.966-3.845-1.774L1 8V3.52C2.22 4.4 4.44 5 7 5s4.78-.6 6-1.48zM7 0c3.31 0 6 .9 6 2s-2.69 2-6 2c-3.32 0-6-.9-6-2s2.68-2 6-2z", - ], - "data-lineage": [ - "M1.067 0C.477 0 0 .478 0 1.067V3.2c0 .59.478 1.067 1.067 1.067h2.24a5.342 5.342 0 002.9 3.734 5.337 5.337 0 00-2.9 3.733h-2.24C.477 11.733 0 12.21 0 12.8v2.133C0 15.523.478 16 1.067 16H6.4c.59 0 1.067-.478 1.067-1.067V12.8c0-.59-.478-1.067-1.067-1.067H4.401a4.27 4.27 0 013.92-3.194l.212-.006V9.6c0 .59.478 1.067 1.067 1.067h5.333c.59 0 1.067-.478 1.067-1.067V6.4c0-.59-.478-1.067-1.067-1.067H9.6c-.59 0-1.067.478-1.067 1.067v1.067a4.268 4.268 0 01-4.132-3.2H6.4c.59 0 1.067-.478 1.067-1.067V1.067C7.467.477 6.989 0 6.4 0H1.067z", - ], - database: [ - "M8 4c3.31 0 6-.9 6-2s-2.69-2-6-2C4.68 0 2 .9 2 2s2.68 2 6 2zm-6-.48V8c0 1.1 2.69 2 6 2s6-.9 6-2V3.52C12.78 4.4 10.56 5 8 5s-4.78-.6-6-1.48zm0 6V14c0 1.1 2.69 2 6 2s6-.9 6-2V9.52C12.78 10.4 10.56 11 8 11s-4.78-.6-6-1.48z", - ], - delete: [ - "M11.99 4.99a1.003 1.003 0 00-1.71-.71l-2.29 2.3L5.7 4.29a.965.965 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l2.29 2.29-2.29 2.29A1.003 1.003 0 005.7 11.7l2.29-2.29 2.29 2.29a1.003 1.003 0 001.42-1.42L9.41 7.99 11.7 5.7c.18-.18.29-.43.29-.71zm-4-5c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.68 6-6 6z", - ], - delta: ["M8 0L0 16h16L8 0zM7 5l5 10H2L7 5z"], - "derive-column": [ - "M6.08 6.67h-.84c.24-.92.56-1.6.96-2.03.24-.27.48-.4.71-.4.05 0 .08.01.11.04s.04.06.04.1c0 .04-.03.11-.1.21-.06.1-.1.2-.1.29 0 .13.05.24.15.33.1.09.23.14.39.14.17 0 .31-.06.42-.17A.58.58 0 008 4.73c0-.22-.09-.39-.26-.53-.17-.13-.44-.2-.81-.2-.59 0-1.12.16-1.59.48-.48.32-.93.85-1.36 1.59-.15.26-.29.42-.42.49s-.35.11-.64.1l-.19.65h.81l-1.19 4.37c-.2.72-.33 1.16-.4 1.33-.1.24-.26.45-.46.62-.08.07-.18.1-.3.1-.03 0-.06-.01-.08-.03l-.03-.04c0-.02.03-.06.09-.11.06-.06.09-.14.09-.26 0-.13-.05-.23-.14-.32a.6.6 0 00-.4-.13c-.21 0-.38.05-.51.16s-.21.25-.21.4c0 .16.08.3.23.42.16.12.4.18.74.18.53 0 .99-.13 1.4-.39.41-.26.76-.65 1.07-1.19.3-.54.62-1.4.94-2.59l.68-2.53h.82l.2-.63zM15 0H8c-.55 0-1 .45-1 1v2h2V2h5v12H9v-1H7v2c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM8.3 9.94c.18.52.33.89.46 1.13.13.24.28.4.44.51.17.1.37.16.62.16.24 0 .49-.08.74-.25.33-.21.66-.58 1.01-1.09l-.21-.11c-.23.31-.41.5-.52.57a.44.44 0 01-.26.07c-.12 0-.24-.07-.36-.21-.2-.24-.46-.91-.8-2 .3-.49.55-.81.75-.96.15-.11.3-.16.47-.16.06 0 .17.02.34.06.16.04.31.06.43.06.17 0 .31-.06.43-.17.1-.11.16-.25.16-.43 0-.19-.06-.33-.17-.44-.12-.11-.28-.16-.49-.16-.19 0-.37.04-.54.13-.17.09-.39.27-.65.56-.2.21-.48.58-.87 1.11-.15-.66-.41-1.26-.78-1.81l-2.05.33-.04.21c.15-.03.28-.04.39-.04.2 0 .37.08.5.25.21.26.5 1.03.88 2.33-.29.37-.49.61-.6.72-.18.18-.33.3-.44.36-.09.04-.19.07-.3.07-.09 0-.23-.04-.42-.13a.866.866 0 00-.36-.09c-.2 0-.36.06-.49.18a.59.59 0 00-.19.46c0 .17.06.32.18.43.12.11.28.16.48.16.2 0 .38-.04.55-.11.17-.08.39-.24.65-.49.24-.27.6-.66 1.06-1.21z", - ], - desktop: [ - "M15 0H1C.45 0 0 .45 0 1v10c0 .55.45 1 1 1h4.75l-.5 2H4c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1h-1.25l-.5-2H15c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 10H2V2h12v8z", - ], - diagnosis: [ - "M3.2 1a1 1 0 01.117 1.993L3.2 3H3v3a2 2 0 001.85 1.995L5 8a2 2 0 001.995-1.85L7 6V3h-.2a1 1 0 01-.993-.883L5.8 2a1 1 0 01.883-.993L6.8 1H8a1 1 0 01.993.883L9 2v4a4.002 4.002 0 01-3.007 3.876v.007L6 10a3 3 0 005.995.176L12 10V7.792a2.5 2.5 0 112 0V10a5 5 0 01-10 0c0-.042.003-.084.008-.125A4 4 0 011.005 6.2L1 6V2a1 1 0 01.883-.993L2 1h1.2z", - ], - "diagram-tree": [ - "M15 8v3h-2V9H9v2H7V9H3v2H1V8a1 1 0 011-1h5V5h2v2h5a1 1 0 011 1zM1 12h2a1 1 0 011 1v2a1 1 0 01-1 1H1a1 1 0 01-1-1v-2a1 1 0 011-1zm12 0h2a1 1 0 011 1v2a1 1 0 01-1 1h-2a1 1 0 01-1-1v-2a1 1 0 011-1zm-6 0h2a1 1 0 011 1v2a1 1 0 01-1 1H7a1 1 0 01-1-1v-2a1 1 0 011-1zM7 0h2a1 1 0 011 1v2a1 1 0 01-1 1H7a1 1 0 01-1-1V1a1 1 0 011-1z", - ], - "direction-left": ["M16 1.99l-16 6 16 6-4-6z"], - "direction-right": ["M16 7.99l-16-6 4 6-4 6z"], - disable: [ - "M7.99-.01c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm-6 8c0-3.31 2.69-6 6-6 1.3 0 2.49.42 3.47 1.12l-8.35 8.35c-.7-.98-1.12-2.17-1.12-3.47zm6 6c-1.3 0-2.49-.42-3.47-1.12l8.35-8.35c.7.98 1.12 2.17 1.12 3.47 0 3.32-2.68 6-6 6z", - ], - document: [ - "M9 0H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V5L9 0zm3 14H4V2h4v4h4v8z", - ], - "document-open": [ - "M6 12c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1h1.59L1.3 12.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L6 10.41V12zm4-12H4c-.55 0-1 .45-1 1v4h2V2h4v4h4v8H5.24l-1.8 1.8c.16.12.35.2.56.2h10c.55 0 1-.45 1-1V5l-5-5z", - ], - "document-share": [ - "M10 14H2V2h4v4h1c0-.83.36-1.55.91-2.09l-.03-.03.9-.9C8.3 2.45 8 1.77 8 1L7 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V8.22c-.53.48-1.23.78-2 .78v5zm5-14h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.59l-3.3 3.29a1.003 1.003 0 001.42 1.42L14 3.41V5c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - dollar: [ - "M12.83 9.51c-.1-.3-.25-.58-.45-.84s-.45-.49-.75-.7c-.3-.2-.65-.36-1.05-.48-.16-.04-.43-.11-.8-.2-.35-.09-.73-.18-1.12-.28-.39-.1-.74-.19-1.06-.27-.31-.08-.49-.12-.54-.13-.43-.12-.78-.29-1.05-.52-.27-.23-.4-.55-.4-.95 0-.29.07-.53.21-.72.14-.19.32-.34.54-.46.22-.11.46-.19.72-.24.26-.05.52-.08.77-.08.74 0 1.35.15 1.83.46.48.3.75.83.81 1.56h2.14c0-.6-.13-1.13-.38-1.58-.25-.45-.59-.84-1.02-1.15-.43-.31-.93-.54-1.49-.7-.24-.06-.49-.1-.75-.14V1c0-.55-.45-1-1-1s-1 .45-1 1v1.08c-.23.03-.46.07-.68.13-.54.13-1.02.34-1.44.61-.42.28-.76.63-1.02 1.05-.26.43-.39.93-.39 1.5 0 .3.04.59.13.88.09.29.23.56.44.82.21.26.48.49.83.7.35.21.79.38 1.31.51.85.21 1.56.38 2.14.52.58.13 1.08.28 1.52.42.25.09.48.23.69.44.21.21.32.53.32.97 0 .21-.05.42-.14.63-.09.21-.24.39-.45.55-.21.16-.47.29-.81.39-.33.1-.73.15-1.2.15-.43 0-.84-.05-1.21-.14-.37-.09-.7-.24-.99-.43-.29-.2-.51-.45-.67-.76-.16-.31-.24-.68-.24-1.12H3c.01.71.15 1.32.43 1.84.27.52.64.94 1.1 1.27.46.33.99.58 1.61.74.27.07.56.12.85.16V15c0 .55.45 1 1 1s1-.45 1-1v-1.05c.3-.03.61-.08.9-.15.58-.13 1.1-.34 1.56-.63.46-.29.83-.66 1.11-1.11.28-.45.42-1 .42-1.64 0-.31-.05-.61-.15-.91z", - ], - dot: ["M8 5a3 3 0 100 6 3 3 0 100-6z"], - "double-caret-horizontal": [ - "M13.71 7.29l-3-3A1.003 1.003 0 009 5v6a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71zM6 4c-.28 0-.53.11-.71.29l-3 3C2.11 7.47 2 7.72 2 8c0 .28.11.53.29.71l3 3A1.003 1.003 0 007 11V5c0-.55-.45-1-1-1z", - ], - "double-caret-vertical": [ - "M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z", - ], - "double-chevron-down": [ - "M7.29 8.71c.18.18.43.29.71.29s.53-.11.71-.29l4-4a1.003 1.003 0 00-1.42-1.42L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4zM12 8c-.28 0-.53.11-.71.29L8 11.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29s.53-.11.71-.29l4-4A1.003 1.003 0 0012 8z", - ], - "double-chevron-left": [ - "M4.41 8L7.7 4.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-4 4C2.11 7.47 2 7.72 2 8c0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L4.41 8zm5 0l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-4 4C7.11 7.47 7 7.72 7 8c0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L9.41 8z", - ], - "double-chevron-right": [ - "M9 8c0-.28-.11-.53-.29-.71l-4-4a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4C8.89 8.53 9 8.28 9 8zm4.71-.71l-4-4a1.003 1.003 0 00-1.42 1.42L11.59 8 8.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z", - ], - "double-chevron-up": [ - "M4 8c.28 0 .53-.11.71-.29L8 4.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-4-4C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-4 4A1.003 1.003 0 004 8zm4.71-.71C8.53 7.11 8.28 7 8 7s-.53.11-.71.29l-4 4a1.003 1.003 0 001.42 1.42L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-4-4z", - ], - "doughnut-chart": [ - "M11.86 7h4.05C15.45 3.39 12.61.52 9 .07v4.07A4 4 0 0111.86 7zM12 8c0 2.21-1.79 4-4 4s-4-1.79-4-4 1.79-4 4-4V0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8h-4z", - ], - download: [ - "M7.99-.01c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM11.7 9.7l-3 3c-.18.18-.43.29-.71.29s-.53-.11-.71-.29l-3-3A1.003 1.003 0 015.7 8.28l1.29 1.29V3.99c0-.55.45-1 1-1s1 .45 1 1v5.59l1.29-1.29a1.003 1.003 0 011.71.71c0 .27-.11.52-.29.7z", - ], - "drag-handle-horizontal": [ - "M2 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm8-2c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-4-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z", - ], - "drag-handle-vertical": [ - "M6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-6c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4 8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z", - ], - draw: [ - "M14.9 11c-.3 0-.5.1-.7.3l-3 3c-.2.2-.3.4-.3.7 0 .6.5 1 1 1 .3 0 .5-.1.7-.3l3-3c.2-.2.3-.4.3-.7 0-.5-.4-1-1-1zm-1-1v-.2l-1-5c-.1-.3-.3-.6-.6-.7l-11-4-.3.3 5.8 5.8c.2-.1.4-.2.6-.2.8 0 1.5.7 1.5 1.5S8.3 9 7.4 9s-1.5-.7-1.5-1.5c0-.2.1-.4.2-.6L.3 1.1l-.3.3 4 11c.1.3.4.6.7.6l5 1h.2c.3 0 .5-.1.7-.3l3-3c.2-.2.3-.4.3-.7z", - ], - "drawer-left": [ - "M7 0a1 1 0 011 1v14a1 1 0 01-1 1H1a1 1 0 01-1-1V1a1 1 0 011-1h6zM6 2H2v12h4V2zm2 5h4.59L11.3 5.71A.965.965 0 0111 5a1.003 1.003 0 011.71-.71l3 3c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-3 3a1.003 1.003 0 01-1.42-1.42L12.59 9H8V7z", - ], - "drawer-left-filled": [ - "M1 0h6a1 1 0 011 1v14a1 1 0 01-1 1H1a1 1 0 01-1-1V1a1 1 0 011-1zm7 7h4.59L11.3 5.71A.965.965 0 0111 5a1.003 1.003 0 011.71-.71l3 3c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-3 3a1.003 1.003 0 01-1.42-1.42L12.59 9H8V7z", - ], - "drawer-right": [ - "M15 0a1 1 0 011 1v14a1 1 0 01-1 1H9a1 1 0 01-1-1V1a1 1 0 011-1h6zm-1 2h-4v12h4V2zM8 7H3.41L4.7 5.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3C.11 7.47 0 7.72 0 8c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L3.41 9H8V7z", - ], - "drawer-right-filled": [ - "M9 0h6a1 1 0 011 1v14a1 1 0 01-1 1H9a1 1 0 01-1-1V1a1 1 0 011-1zM8 7H3.41L4.7 5.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3C.11 7.47 0 7.72 0 8c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L3.41 9H8V7z", - ], - "drive-time": [ - "M15.12 4.76h-1.05l-.76-2.12c-.19-.53-.76-1.08-1.27-1.24 0 0-1.32-.4-4.04-.4-2.72 0-4.04.4-4.04.4-.5.16-1.07.71-1.26 1.24l-.77 2.12H.88c-.48 0-.88.42-.88.94s.4.94.88.94h.38L1 7c-.03.69 0 1.44 0 2v5c0 .66.38 1 1 1s1-.34 1-1v-1h10v1c0 .66.38 1 1 1s1-.34 1-1V9c0-.56-.01-1.37 0-2l-.26-.37h.38c.48 0 .88-.42.88-.93 0-.52-.4-.94-.88-.94zM5 10H3V8h2v2zm8 0h-2V8h2v2zm0-4H3c-.18 0-.06-.82 0-1l.73-1.63C3.79 3.19 3.82 3 4 3h8c.18 0 .21.19.27.37L13 5c.06.18.18 1 0 1z", - ], - duplicate: [ - "M15 0H5c-.55 0-1 .45-1 1v2h2V2h8v7h-1v2h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-4 4H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 10H2V6h8v8z", - ], - edit: [ - "M3.25 10.26l2.47 2.47 6.69-6.69-2.46-2.48-6.7 6.7zM.99 14.99l3.86-1.39-2.46-2.44-1.4 3.83zm12.25-14c-.48 0-.92.2-1.24.51l-1.44 1.44 2.47 2.47 1.44-1.44c.32-.32.51-.75.51-1.24.01-.95-.77-1.74-1.74-1.74z", - ], - eject: [ - "M4 9h8a1.003 1.003 0 00.71-1.71l-4-4C8.53 3.11 8.28 3 8 3s-.53.11-.71.29l-4 4A1.003 1.003 0 004 9zm8 1H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1z", - ], - emoji: [ - "M8 0a8 8 0 110 16A8 8 0 018 0zm0 1a7 7 0 100 14A7 7 0 008 1zM4 8c.228 2.262 2 4 4 4 1.938 0 3.77-1.738 3.984-3.8L12 8h1c-.128 2.888-2.317 5-5 5a5 5 0 01-4.995-4.783L3 8h1zm2-3a1 1 0 110 2 1 1 0 010-2zm4 0a1 1 0 110 2 1 1 0 010-2z", - ], - endorsed: [ - "M15.86 7.5l-.81-1.42V4.5c0-.36-.19-.68-.49-.87l-1.37-.8-.81-1.41c-.19-.31-.51-.49-.86-.49H9.89L8.5.14a.948.948 0 00-1 0l-1.39.8H4.52a1 1 0 00-.86.49l-.8 1.37-1.44.83c-.3.19-.49.51-.49.87v1.65l-.8 1.37c-.08.15-.13.32-.13.49s.05.34.14.49l.8 1.37v1.65c0 .36.19.68.49.87l1.42.81.8 1.37c.19.31.51.49.86.49H6.1l1.39.8c.15.09.32.14.48.14s.34-.05.49-.14l1.39-.8h1.63a1 1 0 00.86-.49l.81-1.41 1.37-.8c.3-.19.49-.51.49-.87V9.93l.81-1.42a.89.89 0 00.04-1.01zm-4.12-.82l-4.01 4.01c-.18.18-.43.29-.71.29s-.53-.11-.71-.29l-2-2c-.18-.19-.3-.44-.3-.71a1.003 1.003 0 011.71-.71l1.3 1.3 3.3-3.3a1.003 1.003 0 011.71.71.95.95 0 01-.29.7z", - ], - envelope: [ - "M0 3.06v9.88L4.94 8 0 3.06zM14.94 2H1.06L8 8.94 14.94 2zm-6.41 8.53c-.14.14-.32.22-.53.22s-.39-.08-.53-.22L6 9.06 1.06 14h13.88L10 9.06l-1.47 1.47zM11.06 8L16 12.94V3.06L11.06 8z", - ], - equals: [ - "M3 5h10a1 1 0 010 2H3a1 1 0 110-2zm0 4h10a1 1 0 010 2H3a1 1 0 010-2z", - ], - eraser: [ - "M8.06 13.91l7.63-7.44c.41-.4.41-1.05 0-1.45L10.86.3c-.41-.4-1.08-.4-1.49 0L.31 9.13c-.41.4-.41 1.05 0 1.45l5.58 5.44h8.12v-.01c.55 0 1-.45 1-1s-.45-1-1-1H7.96l.1-.1zm-2.17.06L1.67 9.85l4.22-4.11 4.22 4.11-4.22 4.12z", - ], - error: [ - "M7.99-.01c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 13h-2v-2h2v2zm0-3h-2v-7h2v7z", - ], - euro: [ - "M6.52 3.18c.51-.27 1.12-.4 1.83-.4.48 0 .91.06 1.27.18.37.12.68.29.96.51.18.14.3.33.44.51l1.53-1.53c-.12-.11-.23-.22-.36-.32a5.61 5.61 0 00-1.74-.83c-.66-.2-1.36-.3-2.1-.3-.99 0-1.88.18-2.66.53-.79.35-1.45.82-2 1.41-.55.58-.96 1.27-1.26 2.06H2c-.55 0-1 .45-1 1s.45 1 1 1h.04c-.01.17-.04.33-.04.5 0 .17.03.33.04.5H2c-.55 0-1 .45-1 1s.45 1 1 1h.43c0 .01 0 .02.01.02a6.2 6.2 0 001.25 2.07 5.77 5.77 0 002 1.4c.78.34 1.67.51 2.66.51.81 0 1.54-.12 2.21-.36.67-.24 1.25-.59 1.75-1.03l.03-.03-1.55-1.33c-.01.01-.02.03-.03.04-.29.3-.63.53-1.02.69-.4.17-.85.25-1.37.25-.71 0-1.32-.13-1.83-.4s-.93-.62-1.25-1.07c-.19-.24-.34-.49-.46-.76H9c.55 0 1-.45 1-1s-.45-1-1-1H4.35c-.01-.17-.03-.33-.03-.5 0-.17.02-.34.03-.5H10c.55 0 1-.45 1-1s-.45-1-1-1H4.83c.13-.27.27-.52.44-.76.32-.44.74-.8 1.25-1.06zM14 8.98v0z", - ], - exchange: [ - "M1.99 5.99c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.89-2-2-2zm4.15 1.86a.495.495 0 10.7-.7L5.7 5.99h5.79c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H5.7l1.15-1.15a.495.495 0 10-.7-.7l-2 2c-.1.09-.16.21-.16.35s.06.26.15.35l2 2.01zm7.85-1.86c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.89-2-2-2zM9.85 8.14a.533.533 0 00-.36-.15.495.495 0 00-.35.85l1.15 1.15h-5.8c-.28 0-.5.22-.5.5s.22.5.5.5h5.79l-1.15 1.15a.495.495 0 10.7.7l2-2c.09-.09.15-.22.15-.35s-.06-.26-.15-.35l-1.98-2z", - ], - "exclude-row": [ - "M0 10a1.003 1.003 0 001.71.71L3 9.41l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L4.41 8 5.7 6.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L3 6.59l-1.29-1.3A1.003 1.003 0 00.29 6.71L1.59 8 .29 9.29C.11 9.47 0 9.72 0 10zm1-7h14c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm14 10H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm-1-7H9c-1.1 0-2 .9-2 2s.9 2 2 2h5c1.1 0 2-.9 2-2s-.9-2-2-2z", - ], - "expand-all": [ - "M4 7c.28 0 .53-.11.71-.29L8 3.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-4-4C8.53 1.11 8.28 1 8 1s-.53.11-.71.29l-4 4A1.003 1.003 0 004 7zm8 2c-.28 0-.53.11-.71.29L8 12.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29s.53-.11.71-.29l4-4A1.003 1.003 0 0012 9z", - ], - export: [ - "M4 6c.28 0 .53-.11.71-.29L7 3.41V11c0 .55.45 1 1 1s1-.45 1-1V3.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-4-4C8.53.11 8.28 0 8 0s-.53.11-.71.29l-4 4A1.003 1.003 0 004 6zm11 5c-.55 0-1 .45-1 1v2H2v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1z", - ], - "eye-off": [ - "M16 7.97v-.02-.01-.02-.02a.672.672 0 00-.17-.36c-.49-.63-1.07-1.2-1.65-1.72l-3.16 2.26a2.978 2.978 0 01-2.98 2.9c-.31 0-.6-.06-.88-.15L5.09 12.3c.44.19.9.36 1.37.47.97.23 1.94.24 2.92.05.88-.17 1.74-.54 2.53-.98 1.25-.7 2.39-1.67 3.38-2.75.18-.2.37-.41.53-.62.09-.1.15-.22.17-.36v-.02-.02-.01-.02-.03c.01-.02.01-.03.01-.04zm-.43-4.17c.25-.18.43-.46.43-.8 0-.55-.45-1-1-1-.22 0-.41.08-.57.2l-.01-.01-2.67 1.91c-.69-.38-1.41-.69-2.17-.87a6.8 6.8 0 00-2.91-.05c-.88.18-1.74.54-2.53.99-1.25.7-2.39 1.67-3.38 2.75-.18.2-.37.41-.53.62-.23.29-.23.63-.01.92.51.66 1.11 1.25 1.73 1.79.18.16.38.29.56.44l-2.09 1.5.01.01c-.25.18-.43.46-.43.8 0 .55.45 1 1 1 .22 0 .41-.08.57-.2l.01.01 14-10-.01-.01zm-10.41 5a3.03 3.03 0 01-.11-.8 2.99 2.99 0 012.99-2.98c.62 0 1.19.21 1.66.53L5.16 8.8z", - ], - "eye-on": [ - "M10.29 6.7c.18.18.43.29.71.29s.53-.11.71-.29l4-4c.17-.18.29-.43.29-.7a1.003 1.003 0 00-1.71-.71L11 4.58 9.71 3.29A.997.997 0 009 3c-.55 0-1 .44-1 1a1 1 0 00.3.7l1.99 2zM16 7.96v-.02-.01-.02-.02a.64.64 0 00-.17-.36c-.3-.4-.65-.76-1-1.12l-1.7 1.7c-.55.55-1.3.88-2.13.88-.06 0-.11-.01-.17-.02C10.42 10.15 9.32 11 8.01 11A3.005 3.005 0 016.4 5.46c-.24-.43-.39-.93-.39-1.46 0-.26.04-.5.1-.74-.7.2-1.37.5-2.01.86-1.26.7-2.4 1.68-3.4 2.77-.18.21-.36.41-.53.63-.22.29-.22.64 0 .93.51.67 1.12 1.27 1.73 1.81 1.33 1.17 2.85 2.15 4.53 2.55.97.23 1.95.24 2.92.05.89-.18 1.74-.54 2.54-.99 1.25-.71 2.4-1.69 3.39-2.78.18-.2.37-.41.54-.63.09-.1.15-.23.17-.37v-.02-.02-.01-.02-.03c.01-.01.01-.02.01-.03zM8.01 9c.48 0 .87-.35.96-.81a.55.55 0 01-.07-.09l-.02.01L7.8 7.03c-.45.1-.79.48-.79.96 0 .56.45 1.01 1 1.01z", - ], - "eye-open": [ - "M8.002 7.003a1.003 1.003 0 000 2.005 1.003 1.003 0 000-2.005zm7.988.972v-.02-.01-.02-.02a.675.675 0 00-.17-.36c-.509-.673-1.118-1.264-1.737-1.806-1.328-1.173-2.846-2.155-4.523-2.546a6.702 6.702 0 00-2.925-.06c-.889.18-1.738.541-2.546.992C2.84 4.837 1.692 5.81.694 6.902c-.18.211-.36.411-.53.632a.742.742 0 000 .932c.51.672 1.119 1.264 1.738 1.805 1.328 1.173 2.846 2.156 4.523 2.547.968.23 1.947.24 2.925.04.889-.18 1.738-.542 2.546-.993 1.248-.712 2.397-1.684 3.395-2.777.18-.2.37-.411.54-.632.09-.1.149-.23.169-.36v-.02-.02-.01-.02-.03c0-.01-.01-.01-.01-.02zm-7.988 3.038a2.998 2.998 0 01-2.995-3.008 2.998 2.998 0 012.995-3.008 2.998 2.998 0 012.996 3.008 2.998 2.998 0 01-2.996 3.008z", - ], - "fast-backward": [ - "M14 3c-.24 0-.44.09-.62.23l-.01-.01L9 6.72V4c0-.55-.45-1-1-1-.24 0-.44.09-.62.23v-.01l-5 4 .01.01C2.16 7.41 2 7.68 2 8s.16.59.38.77v.01l5 4 .01-.01c.17.14.37.23.61.23.55 0 1-.45 1-1V9.28l4.38 3.5.01-.01c.17.14.37.23.61.23.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - "fast-forward": [ - "M15 8c0-.32-.16-.59-.38-.77l.01-.01-5-4-.01.01A.987.987 0 009 3c-.55 0-1 .45-1 1v2.72l-4.38-3.5v.01A.987.987 0 003 3c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1 .24 0 .44-.09.62-.23l.01.01L8 9.28V12c0 .55.45 1 1 1 .24 0 .44-.09.62-.23l.01.01 5-4-.01-.01c.22-.18.38-.45.38-.77z", - ], - feed: [ - "M1.99 11.99c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.89-2-2-2zm1-4c-.55 0-1 .45-1 1s.45 1 1 1c1.66 0 3 1.34 3 3 0 .55.45 1 1 1s1-.45 1-1c0-2.76-2.24-5-5-5zm0-4c-.55 0-1 .45-1 1s.45 1 1 1c3.87 0 7 3.13 7 7 0 .55.45 1 1 1s1-.45 1-1a9 9 0 00-9-9zm0-4c-.55 0-1 .45-1 1s.45 1 1 1c6.08 0 11 4.92 11 11 0 .55.45 1 1 1s1-.45 1-1c0-7.18-5.82-13-13-13z", - ], - "feed-subscribed": [ - "M3 2c1.06 0 2.08.16 3.06.45.13-.71.52-1.32 1.05-1.76C5.82.25 4.44 0 3 0c-.55 0-1 .45-1 1s.45 1 1 1zM2 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8.32-6.33a.99.99 0 001.4 0l3.98-3.98c.19-.18.3-.42.3-.7 0-.55-.45-.99-1-.99-.28 0-.52.11-.7.29l-3.28 3.28-1.29-1.29a.99.99 0 00-.7-.29 1 1 0 00-1 .99c0 .27.11.52.29.7l2 1.99zm3.73.53l-.93.93-.02-.02c-.17.17-.35.33-.56.45C13.47 9.16 14 11.02 14 13c0 .55.45 1 1 1s1-.45 1-1c0-2.5-.73-4.82-1.95-6.8zM3 8c-.55 0-1 .45-1 1s.45 1 1 1c1.66 0 3 1.34 3 3 0 .55.45 1 1 1s1-.45 1-1c0-2.76-2.24-5-5-5zm5.91-.91l-.03.03-2-2 .03-.03c-.11-.11-.23-.2-.33-.33A8.9 8.9 0 003 4c-.55 0-1 .45-1 1s.45 1 1 1c3.87 0 7 3.13 7 7 0 .55.45 1 1 1s1-.45 1-1c0-1.87-.57-3.61-1.55-5.06-.61-.11-1.13-.42-1.54-.85z", - ], - film: [ - "M15 1h-5v2H6V1H1c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h5v-2h4v2h5c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM4 13H2v-2h2v2zm0-3H2V8h2v2zm0-3H2V5h2v2zm0-3H2V2h2v2zm6 6H6V5h4v5zm4 3h-2v-2h2v2zm0-3h-2V8h2v2zm0-3h-2V5h2v2zm0-3h-2V2h2v2z", - ], - filter: [ - "M13.99.99h-12a1.003 1.003 0 00-.71 1.71l4.71 4.71V14a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71V7.41L14.7 2.7a1.003 1.003 0 00-.71-1.71z", - ], - "filter-keep": [ - "M15 10c-.28 0-.53.11-.71.29L12 12.59l-1.29-1.29A.965.965 0 0010 11a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0015 10zm-3-8c0-.55-.45-1-1-1H1a1.003 1.003 0 00-.71 1.71L4 6.41V12a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71V6.41l3.71-3.71c.18-.17.29-.42.29-.7z", - ], - "filter-list": [ - "M9 8c0 .55.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1h-5c-.55 0-1 .45-1 1zm3-6c0-.55-.45-1-1-1H1a1.003 1.003 0 00-.71 1.71L4 6.41V12a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71V6.41l3.71-3.71c.18-.17.29-.42.29-.7zm3 8h-5c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm0 3h-5c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "filter-open": [ - "M15.707 10.293a1 1 0 010 1.414l-3 3c-.63.63-1.707.184-1.707-.707V8c0-.89 1.077-1.337 1.707-.707l3 3zM12 2c0 .28-.11.53-.29.7L8 6.41V10c0 .28-.11.53-.29.71l-2 2A1.003 1.003 0 014 12V6.41L.29 2.71A1.003 1.003 0 011 1h10c.55 0 1 .45 1 1z", - ], - "filter-remove": [ - "M12 2c0-.55-.45-1-1-1H1a1.003 1.003 0 00-.71 1.71L4 6.41V12a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71V6.41l3.71-3.71c.18-.17.29-.42.29-.7zm2.41 10l1.29-1.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L13 10.59 11.71 9.3A.965.965 0 0011 9a1.003 1.003 0 00-.71 1.71l1.3 1.29-1.29 1.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l1.29-1.3 1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L14.41 12z", - ], - flag: [ - "M2.99 2.99c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1s1-.45 1-1v-11c0-.55-.45-1-1-1zm0-3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm2 3.03v7.23c2.07-2.11 5.92 1.75 9 0V3.02c-3 2.07-6.94-2.03-9 0z", - ], - flame: [ - "M9.217 0c0 1.368.368 2.462 1.104 3.282C12.774 5.197 14 7.385 14 9.846c0 2.735-1.472 4.786-4.415 6.154 2.165-2.4 1.84-3.385-.368-6.4-2.342 1.2-1.967 2-1.592 3.6-.786 0-1.5 0-1.875-.4 0 .547.898 2 1.464 3.2-2.943-.82-6.092-5.744-4.988-6.154.736-.273 1.594-.137 2.575.41C3.575 5.333 5.047 1.915 9.217 0z", - ], - flash: [ - "M4 8c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1-.45 1-1zm4-4c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1S7 .45 7 1v2c0 .55.45 1 1 1zM3.79 5.21a1.003 1.003 0 001.42-1.42l-1.5-1.5a1.003 1.003 0 00-1.42 1.42l1.5 1.5zm.71 5.29c-.28 0-.53.11-.71.29l-1.5 1.5a1.003 1.003 0 001.42 1.42l1.5-1.5a1.003 1.003 0 00-.71-1.71zm7-5c.28 0 .53-.11.71-.29l1.5-1.5a1.003 1.003 0 00-1.42-1.42l-1.5 1.5a1.003 1.003 0 00.71 1.71zm.71 5.29a1.003 1.003 0 00-1.42 1.42l1.5 1.5a1.003 1.003 0 001.42-1.42l-1.5-1.5zM15 7h-2c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1-.45 1-1s-.45-1-1-1zM8 5C6.34 5 5 6.34 5 8s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0 3c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1z", - ], - "floppy-disk": [ - "M15.71 2.29l-2-2A.997.997 0 0013 0h-1v6H4V0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V3c0-.28-.11-.53-.29-.71zM14 15H2V9c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v6zM11 1H9v4h2V1z", - ], - "flow-branch": [ - "M10.643 6.595c.22.418.344.894.344 1.399 0 .439-.094.855-.263 1.231l3.265 3.462-.002-1.75a.973.973 0 01.314-.68.99.99 0 011.388.048c.186.2.316.46.3.715l-.009 4.03a.959.959 0 01-.3.68.972.972 0 01-.698.266l-4.053.002a.97.97 0 01-.679-.314 1.031 1.031 0 01.05-1.42.972.972 0 01.698-.266l1.7-.001-3.305-3.35a2.998 2.998 0 01-4.228-1.653H.999a1 1 0 010-2h4.166a2.998 2.998 0 014.06-1.735l3.449-3.268-1.745.002a.979.979 0 01-.631-1.692c.199-.186.459-.316.713-.3l4.025.009c.247.008.493.1.679.3.186.2.274.451.265.7l.002 4.046a.972.972 0 01-.313.68 1.03 1.03 0 01-1.42-.05.973.973 0 01-.266-.7V3.295l-3.34 3.301z", - ], - "flow-end": [ - "M9.702 7.31c.176.176.293.41.293.684a.976.976 0 01-.283.695c-1.888 1.91-2.892 2.918-3.011 3.027-.179.164-.42.284-.693.284a.995.995 0 01-.997-.985c0-.274.112-.541.292-.72.12-.12.624-.551 1.514-1.293H.98c-.536 0-.975-.47-.975-1.008 0-.537.439-.996.975-.996h5.837c-.895-.752-1.4-1.187-1.514-1.304a1.03 1.03 0 01-.292-.705C5.01 4.45 5.464 4 6 4c.272 0 .52.108.695.294A535.7 535.7 0 009.702 7.31zM13 11.002c-1.657 0-3-1.347-3-3.008a3.004 3.004 0 013-3.007c1.657 0 3 1.346 3 3.007a3.004 3.004 0 01-3 3.008z", - ], - "flow-linear": [ - "M4.16 9.002H.977C.44 9.002 0 8.532 0 7.994c0-.537.44-.99.978-.99h3.18A3.01 3.01 0 016.995 5a3.01 3.01 0 012.839 2.004h2.98c-.898-.756-1.404-1.193-1.518-1.31a1.03 1.03 0 01-.293-.705c0-.538.454-.989.992-.989.274 0 .521.108.697.294.118.124 1.122 1.13 3.014 3.016a.96.96 0 01.293.684.975.975 0 01-.284.695l-3.018 3.027a.974.974 0 01-.694.284c-.553 0-1-.447-1-.985 0-.274.117-.545.293-.72l1.518-1.293H9.833A3.01 3.01 0 016.996 11 3.01 3.01 0 014.16 9.002z", - ], - "flow-review": [ - "M5.175 7.004a3.003 3.003 0 012.83-2.001c1.305 0 2.416.835 2.83 2.001h1.985c-.896-.756-1.401-1.193-1.515-1.31a1.03 1.03 0 01-.292-.705c0-.538.453-.989.99-.989a.95.95 0 01.696.294c.117.124 1.12 1.13 3.008 3.016.176.176.293.41.293.684a.976.976 0 01-.283.695l-3.013 3.027a.995.995 0 01-1.691-.702c0-.273.116-.544.292-.72l1.515-1.292h-1.98a3.003 3.003 0 01-2.835 2.016A3.003 3.003 0 015.17 9.002H3.18l1.515 1.292c.176.176.292.447.292.72a.995.995 0 01-1.69.702L.282 8.69A.976.976 0 010 7.994c0-.273.117-.508.293-.684A535.858 535.858 0 003.3 4.294.95.95 0 013.997 4c.537 0 .99.45.99.989 0 .273-.12.528-.292.705-.114.117-.62.554-1.515 1.31h1.995z", - ], - "flow-review-branch": [ - "M10.392 10.647A3.002 3.002 0 016.16 8.995H3.37l1.338 1.318c.172.178.287.41.282.683-.01.536-.524.995-.99.995-.465 0-.63-.187-.747-.294L.281 8.682A.956.956 0 010 7.994a.971.971 0 01.294-.687l3.01-3.028a.973.973 0 01.697-.27c.536.01.998.485.989 1.021a.971.971 0 01-.295.687L3.37 6.997h2.79a3.002 3.002 0 014.106-1.716l2.416-2.277-1.732.004a.99.99 0 01-.679-.329.978.978 0 01.05-1.378c.199-.186.459-.315.714-.3l4.012.005c.248.009.493.1.68.3.185.2.273.45.264.699L15.99 6.05a.973.973 0 01-.314.679 1.03 1.03 0 01-1.421-.048.971.971 0 01-.265-.699V4.29L11.65 6.602c.219.416.343.89.343 1.394 0 .451-.1.88-.279 1.263L14 11.68l-.004-1.73a.982.982 0 01.323-.68.978.978 0 011.378.049c.187.2.316.46.3.714l-.004 4.011a.983.983 0 01-.3.691.972.972 0 01-.7.265l-4.046-.001a.987.987 0 01-.679-.326 1.017 1.017 0 01.048-1.41.972.972 0 01.699-.265h1.693l-2.315-2.35z", - ], - flows: [ - "M13.5 6a2.5 2.5 0 00-2.45 2h-1.3L5.74 4l-.75.75L8.25 8h-3.3a2.5 2.5 0 100 1h3.3l-3.26 3.25.75.75 4.01-4h1.3a2.5 2.5 0 102.45-3z", - ], - "folder-close": [ - "M-.01 14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V7h-16v7zm15-10H7.41L5.7 2.3a.965.965 0 00-.71-.3h-4c-.55 0-1 .45-1 1v3h16V5c0-.55-.45-1-1-1z", - ], - "folder-new": [ - "M10.165 7a3.003 3.003 0 002.827 2 3.003 3.003 0 002.827-2H16v7c0 .55-.45 1-1 1H1.01c-.55 0-1-.45-1-1V7h10.155zM8.76 6H0V3c0-.55.45-1 1-1h1.998c.28 0 .53.11.71.29L5.417 4h2.578c0 .768.29 1.469.765 2zm6.23-3c.55 0 1 .45 1 1s-.45 1-1 1h-.999v1c0 .55-.45 1-1 1-.549 0-.998-.45-.998-1V5h-1c-.55 0-1-.45-1-1s.45-1 1-1h1V2c0-.55.45-1 .999-1 .55 0 1 .45 1 1v1h.999z", - ], - "folder-open": [ - "M2.06 6.69c.14-.4.5-.69.94-.69h11V5c0-.55-.45-1-1-1H6.41l-1.7-1.71A.997.997 0 004 2H1c-.55 0-1 .45-1 1v9.84l2.05-6.15h.01zM16 8c0-.55-.45-1-1-1H4a.99.99 0 00-.94.69l-2 6c-.04.09-.06.2-.06.31 0 .55.45 1 1 1h11c.44 0 .81-.29.94-.69l2-6c.04-.09.06-.2.06-.31z", - ], - "folder-shared": [ - "M8.76 5.98c-.47-.53-.77-1.22-.77-1.99h-.58L5.7 2.29a.965.965 0 00-.71-.3h-4c-.55 0-1 .45-1 1v3h8.76l.01-.01zm6.23-2.99h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.59l-3.3 3.3a.99.99 0 00-.29.7 1.003 1.003 0 001.71.71l3.29-3.29V8c0 .55.45 1 1 1s1-.45 1-1V4c0-.56-.45-1.01-1-1.01zm-1.98 7.23l-.9.9-.01-.01c-.54.55-1.28.89-2.11.89-1.66 0-3-1.34-3-3 0-.77.3-1.47.78-2H-.01v7c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.18c-.31.11-.65.18-1 .18-.76-.01-1.45-.31-1.98-.78z", - ], - "folder-shared-open": [ - "M13.02 10.22l-.9.9-.01-.01c-.54.55-1.28.89-2.11.89-1.66 0-3-1.34-3-3 0-.77.3-1.47.78-2H4a.99.99 0 00-.94.69l-2 6c-.04.09-.06.2-.06.31 0 .55.45 1 1 1h11c.44 0 .81-.29.94-.69l1.11-3.32c-.01 0-.03.01-.05.01-.77 0-1.45-.3-1.98-.78zM2.06 6.69c.14-.4.5-.69.94-.69h5.76l.01-.01C8.3 5.46 8 4.77 8 4H6.41l-1.7-1.71A.997.997 0 004 2H1c-.55 0-1 .45-1 1v9.84l2.05-6.15h.01zM15 3h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.59l-3.3 3.29a1.003 1.003 0 001.42 1.42L14 6.41V8c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - follower: [ - "M9.37 12.69c-1.2-.53-1.04-.85-1.08-1.29-.01-.06-.01-.12-.01-.19.41-.37.75-.87.97-1.44 0 0 .01-.03.01-.04.05-.13.09-.26.12-.39.28-.06.44-.36.5-.63.06-.11.19-.39.16-.7-.04-.4-.2-.59-.38-.67v-.07c0-.52-.05-1.26-.14-1.74a2.72 2.72 0 00-.09-.43 3.02 3.02 0 00-1.04-1.51C7.87 3.2 7.15 3 6.5 3c-.64 0-1.36.2-1.87.59-.5.38-.87.92-1.05 1.51-.04.13-.07.27-.09.4-.09.49-.14 1.24-.14 1.75v.06c-.19.07-.36.26-.4.68-.03.31.1.59.16.7.06.28.23.59.51.64.04.14.08.27.13.39 0 .01.01.02.01.02v.01c.22.59.57 1.1.99 1.46 0 .06-.01.12-.01.17-.04.44.08.76-1.12 1.29-1.2.53-3.01 1.1-3.38 1.95C-.13 15.5.02 16 .02 16h12.96s.15-.5-.22-1.36c-.38-.85-2.19-1.42-3.39-1.95zm6.33-10.4l-2-2a1.003 1.003 0 00-1.42 1.42l.3.29H9.99c-.55 0-1 .45-1 1s.45 1 1 1h2.58l-.29.29a1.003 1.003 0 001.42 1.42l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z", - ], - following: [ - "M9.37 12.69c-1.2-.53-1.04-.85-1.08-1.29-.01-.06-.01-.12-.01-.19.41-.37.75-.87.97-1.44 0 0 .01-.03.01-.04.05-.13.09-.26.12-.39.28-.06.44-.36.5-.63.06-.11.19-.39.16-.7-.04-.4-.2-.59-.38-.67v-.07c0-.52-.05-1.26-.14-1.74a2.72 2.72 0 00-.09-.43 3.02 3.02 0 00-1.04-1.51C7.87 3.2 7.15 3 6.5 3c-.64 0-1.36.2-1.87.59-.5.38-.87.92-1.05 1.51-.04.13-.07.27-.09.4-.09.49-.14 1.24-.14 1.75v.06c-.19.07-.36.26-.4.68-.03.31.1.59.16.7.06.28.23.59.51.64.04.14.08.27.13.39 0 .01.01.02.01.02v.01c.22.59.57 1.1.99 1.46 0 .06-.01.12-.01.17-.04.44.08.76-1.12 1.29-1.2.53-3.01 1.1-3.38 1.95C-.13 15.5.02 16 .02 16h12.96s.15-.5-.22-1.36c-.38-.85-2.19-1.42-3.39-1.95zM14.99 2h-2.58l.29-.29A1.003 1.003 0 0011.28.29l-2 2c-.17.18-.29.43-.29.71 0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L12.41 4h2.58c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - font: [ - "M13.93 14.67L8.94.67h-.01C8.79.28 8.43 0 8 0s-.79.28-.93.67h-.01l-5 14h.01c-.04.1-.07.21-.07.33 0 .55.45 1 1 1 .43 0 .79-.28.93-.67h.01L5.49 11h5.02l1.55 4.34h.01c.14.38.5.66.93.66.55 0 1-.45 1-1 0-.12-.03-.23-.07-.33zM6.2 9L8 3.97 9.8 9H6.2z", - ], - fork: [ - "M13.7 9.29a1.003 1.003 0 00-1.42 1.42l.29.29H11.4l-5-5h6.17l-.29.29a1.003 1.003 0 001.42 1.42l2-2c.18-.18.29-.43.29-.71s-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42l.29.29H.99c-.55 0-1 .45-1 1s.45 1 1 1h2.59l6.71 6.71c.18.18.43.29.71.29h1.59l-.29.29a1.003 1.003 0 001.42 1.42l2-2c.18-.18.29-.43.29-.71s-.11-.53-.29-.71l-2.02-2z", - ], - form: [ - "M2 11v2h2v-2H2zM1 9h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1zm9-6h5c.55 0 1 .45 1 1s-.45 1-1 1h-5c-.55 0-1-.45-1-1s.45-1 1-1zM6 1a1.003 1.003 0 01.71 1.71l-3 4C3.53 6.89 3.28 7 3 7s-.53-.11-.71-.29l-2-2a1.003 1.003 0 011.42-1.42L3 4.59l2.29-3.3C5.47 1.11 5.72 1 6 1zm4 10h5c.55 0 1 .45 1 1s-.45 1-1 1h-5c-.55 0-1-.45-1-1s.45-1 1-1z", - ], - "full-circle": ["M8 0a8 8 0 100 16A8 8 0 108 0z"], - "full-stacked-chart": [ - "M13 12h1c.55 0 1-.45 1-1V8h-3v3c0 .55.45 1 1 1zM10 2c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v3h3V2zm0 4H7v3h3V6zm5-4c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v2h3V2zm0 3h-3v2h3V5zM5 5H2v3h3V5zm-2 7h1c.55 0 1-.45 1-1V9H2v2c0 .55.45 1 1 1zm12 1H2c-.55 0-1 .45-1 1s.45 1 1 1h13c.55 0 1-.45 1-1s-.45-1-1-1zM5 2c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v2h3V2zm3 10h1c.55 0 1-.45 1-1v-1H7v1c0 .55.45 1 1 1z", - ], - fullscreen: [ - "M3.41 2H5c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v4c0 .55.45 1 1 1s1-.45 1-1V3.41L5.29 6.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L3.41 2zM6 9c-.28 0-.53.11-.71.29L2 12.59V11c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H3.41l3.29-3.29c.19-.18.3-.43.3-.71 0-.55-.45-1-1-1zm9 1c-.55 0-1 .45-1 1v1.59L10.71 9.3A.965.965 0 0010 9a1.003 1.003 0 00-.71 1.71l3.3 3.29H11c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm0-10h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.59l-3.3 3.29a1.003 1.003 0 001.42 1.42L14 3.41V5c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - function: [ - "M8.12 4.74H6.98c.33-1.29.75-2.24 1.28-2.84.33-.37.64-.56.95-.56.06 0 .11.02.15.05.04.04.06.09.06.15 0 .05-.04.15-.13.29-.09.14-.13.28-.13.4 0 .18.07.33.2.46.14.13.31.19.52.19.22 0 .41-.08.56-.23.15-.16.23-.37.23-.63 0-.3-.11-.55-.34-.74C10.1 1.09 9.74 1 9.24 1c-.78 0-1.49.22-2.12.67-.64.45-1.24 1.2-1.81 2.23-.2.36-.38.59-.56.69-.18.1-.46.15-.85.15l-.26.9h1.08l-1.59 6.12c-.27 1.01-.44 1.63-.54 1.86-.14.34-.34.63-.62.87-.11.1-.24.15-.4.15a.15.15 0 01-.11-.04l-.04-.05c0-.03.04-.08.12-.16.08-.08.12-.2.12-.36 0-.18-.06-.33-.19-.44-.12-.12-.3-.18-.54-.18-.28 0-.51.08-.68.23-.16.14-.25.32-.25.53 0 .22.1.42.31.59.21.17.53.25.97.25.7 0 1.32-.18 1.87-.54.54-.36 1.02-.92 1.42-1.67.41-.75.82-1.96 1.25-3.63l.91-3.54h1.1l.29-.89zm5.43 1.52c.2-.15.41-.23.62-.23.08 0 .23.03.45.09s.41.09.57.09c.23 0 .42-.08.57-.23.16-.16.24-.36.24-.61 0-.26-.08-.47-.23-.62-.15-.15-.37-.23-.66-.23-.25 0-.5.06-.72.18-.23.12-.51.38-.86.78-.26.3-.64.81-1.15 1.55-.2-.91-.55-1.75-1.05-2.51l-2.72.46-.06.29c.2-.04.37-.06.51-.06.27 0 .49.11.67.34.28.36.67 1.45 1.17 3.26-.39.52-.66.85-.8 1.01-.24.26-.44.42-.59.5-.12.06-.25.09-.41.09-.11 0-.3-.06-.56-.18-.18-.08-.34-.12-.48-.12-.27 0-.48.08-.66.25-.17.17-.26.38-.26.64 0 .25.08.44.24.6.16.15.37.23.64.23.26 0 .5-.05.73-.16.23-.11.52-.34.86-.69.35-.35.82-.9 1.43-1.67.23.73.44 1.25.61 1.58s.37.57.59.71c.22.15.5.22.83.22.32 0 .65-.11.98-.34.44-.3.88-.81 1.34-1.53l-.26-.15c-.31.43-.54.7-.69.8-.1.07-.22.1-.35.1-.16 0-.32-.1-.48-.3-.27-.34-.62-1.27-1.06-2.8.4-.68.73-1.13 1-1.34z", - ], - "gantt-chart": [ - "M10 10c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1zM6 7c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1zm9 5H2V3c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM4 5h3c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1z", - ], - geofence: [ - "M6 9c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1s-1-.45-1-1v-1.59l-3.29 3.3A1.003 1.003 0 010 15c0-.28.11-.53.3-.71L3.59 11H2c-.55 0-1-.45-1-1s.45-1 1-1zM9.088.004l.097.013.097.024.057.018.1.042.054.029.095.061.052.04 6 5 .05.046.076.08.053.07.06.095.051.11c.056.141.079.294.067.446l-.014.105-.037.143-.035.087-.043.083-4 7-.034.056-.059.08-.038.044-.096.092-.114.082-.116.062-.086.034-.109.03-.1.017-.069.006H8.83c.088-.25.144-.515.163-.79L9 13v-3a3 3 0 00-2.824-2.995L6 7H3c-.351 0-.689.06-1.002.171L2 5l.002-.07.013-.1.015-.073.025-.085.043-.104.056-.101.045-.066.079-.093.084-.078.083-.062 6-4 .07-.043.12-.056.111-.036.108-.022.083-.01h.031c.046-.002.083 0 .12.003z", - ], - geolocation: ["M-.01 6.66l7.34 2 2 7.33 6.66-16z"], - geosearch: [ - "M8.82 12.4h.66c.23 0 .36-.17.36-.4v-1.48l.19-.18c-.27.03-.55.06-.83.06-.28 0-.56-.03-.84-.07.02.04.05.08.07.13V12c0 .23.15.4.39.4zM6.4 15.1A5.51 5.51 0 01.9 9.6c0-.49.06-.98.18-1.43.03 0 .05-.01.08-.01h.08v.44c0 .19.17.34.36.34.03 0 .07-.01.1-.01l.71.7c.07.07.19.07.26 0s.07-.19 0-.26l-.7-.72c0-.02.03-.03.03-.05v-.11c0-.15.08-.2.23-.33h.42c.08 0 .15-.01.22-.04h.02c.02-.02.03-.02.04-.04.01-.01.01-.01.02-.01l.02-.01.9-.9c-.13-.26-.24-.52-.34-.8h-.5v-.43c0-.01.05.05.04-.08h.31c-.03-.13-.06-.26-.08-.39h-.57c.16-.12.34-.24.51-.36-.02-.23-.04-.46-.04-.7 0-.12.01-.23.02-.34A6.385 6.385 0 000 9.6C0 13.13 2.87 16 6.4 16c3.1 0 5.67-2.22 6.26-5.15l-.78-.88c-.21 2.85-2.58 5.13-5.48 5.13zm-1.7-2.93v-.28h.12c.23 0 .39-.19.39-.42v-.54s.01-.01 0-.01L3.77 9.45h-.62c-.23 0-.38.19-.38.42v1.6c0 .23.14.42.38.42h.26v1.61c0 .23.22.41.45.41s.45-.18.45-.41v-.97H4.3c.24 0 .4-.13.4-.36zm11.07-2.34l-2.94-2.94c.11-.17.21-.34.3-.52.01-.03.03-.06.04-.09.08-.18.16-.36.22-.55v-.01c.06-.19.1-.38.14-.58.01-.05.01-.09.02-.14.03-.2.05-.4.05-.61a4.4 4.4 0 00-4.4-4.4C6.77 0 4.8 1.97 4.8 4.4s1.97 4.4 4.4 4.4c.21 0 .41-.02.61-.05.04 0 .09-.01.14-.02.2-.03.39-.08.58-.14h.01c.19-.06.37-.14.55-.22.03-.01.06-.03.09-.04.18-.09.35-.19.52-.3l2.94 2.94a.8.8 0 00.57.23c.44 0 .8-.36.8-.8a.895.895 0 00-.24-.57zM9.2 7.6C7.43 7.6 6 6.17 6 4.4c0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2zm1.54 4.26v-.52c0-.09-.1-.17-.19-.17s-.19.07-.19.17v.52c0 .09.1.17.19.17s.19-.07.19-.17z", - ], - "git-branch": [ - "M12 1c-1.66 0-3 1.34-3 3 0 1.25.76 2.32 1.85 2.77A2.02 2.02 0 019 8H7c-.73 0-1.41.2-2 .55V5.82C6.16 5.4 7 4.3 7 3c0-1.66-1.34-3-3-3S1 1.34 1 3c0 1.3.84 2.4 2 2.82v4.37c-1.16.4-2 1.51-2 2.81 0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.04-.53-1.95-1.32-2.49.35-.31.81-.51 1.32-.51h2c1.92 0 3.52-1.35 3.91-3.15A2.996 2.996 0 0012 1zM4 2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 12c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8-9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", - ], - "git-commit": [ - "M15 7h-3.14c-.45-1.72-2-3-3.86-3S4.59 5.28 4.14 7H1c-.55 0-1 .45-1 1s.45 1 1 1h3.14c.45 1.72 2 3 3.86 3s3.41-1.28 3.86-3H15c.55 0 1-.45 1-1s-.45-1-1-1zm-7 3c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", - ], - "git-merge": [ - "M12 6c-1.3 0-2.4.84-2.82 2H9c-1.62 0-3-.96-3.63-2.34C6.33 5.16 7 4.16 7 3c0-1.66-1.34-3-3-3S1 1.34 1 3c0 1.3.84 2.4 2 2.81v4.37C1.84 10.6 1 11.7 1 13c0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.3-.84-2.4-2-2.82V8.43A5.89 5.89 0 009 10h.18A2.996 2.996 0 0015 9c0-1.66-1.34-3-3-3zm-8 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM4 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", - ], - "git-new-branch": [ - "M14 2h-1V1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1zm-3.18 4.8C10.51 7.51 9.82 8 9 8H7c-.73 0-1.41.2-2 .55V5.82C6.16 5.4 7 4.3 7 3c0-1.66-1.34-3-3-3S1 1.34 1 3c0 1.3.84 2.4 2 2.82v4.37c-1.16.4-2 1.51-2 2.81 0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.04-.53-1.95-1.32-2.49.35-.31.81-.51 1.32-.51h2c1.9 0 3.49-1.33 3.89-3.11-.29.07-.58.11-.89.11-.41 0-.8-.08-1.18-.2zM4 2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 12c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", - ], - "git-pull": [ - "M3 1C1.34 1 0 2.34 0 4c0 1.3.84 2.4 2 2.82v3.37C.84 10.6 0 11.7 0 13c0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.3-.84-2.4-2-2.82V6.82C5.16 6.4 6 5.3 6 4c0-1.66-1.34-3-3-3zm0 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm11 5.18V6c0-1.66-1.34-3-3-3H9.41l1.29-1.29c.19-.18.3-.43.3-.71A1.003 1.003 0 009.29.29l-3 3C6.11 3.47 6 3.72 6 4c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L9.41 5H11c.55 0 1 .45 1 1v4.18A2.996 2.996 0 0013 16c1.66 0 3-1.34 3-3 0-1.3-.84-2.4-2-2.82zM13 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", - ], - "git-push": [ - "M4 6h1V5H4v1zm9 3c0-.28-.11-.53-.29-.71l-3-3C9.53 5.11 9.28 5 9 5s-.53.11-.71.29l-3 3a1.003 1.003 0 001.42 1.42L8 8.41V15c0 .55.45 1 1 1s1-.45 1-1V8.41l1.29 1.29c.18.19.43.3.71.3.55 0 1-.45 1-1zM5 3H4v1h1V3zm10-3H1C.45 0 0 .45 0 1v13c0 .55.45 1 1 1h5v-2H2v-1h4v-1H3V2h11v9h-2v1h2v1h-2v2h3c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - "git-repo": [ - "M5 9H4v1h1V9zm10-9H1C.45 0 0 .45 0 1v13c0 .55.45 1 1 1h3v1l2-1 2 1v-1h7c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM4 13H2v-1h2v1zm10 0H8v-1h6v1zm0-2H3V2h11v9zM5 3H4v1h1V3zm0 4H4v1h1V7zm0-2H4v1h1V5z", - ], - glass: [ - "M2 0v4c0 2.97 2.16 5.43 5 5.91V14H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1H9V9.91c2.84-.48 5-2.94 5-5.91V0H2z", - ], - globe: [ - "M4.45 7.83c-.26 0-.41.21-.41.46v1.75c0 .26.16.46.41.46h.29v1.77c0 .25.24.45.49.45s.49-.2.49-.45V11.2h-.01c.26 0 .44-.14.44-.4v-.3h.14c.26 0 .43-.2.43-.46v-.59s.01-.01 0-.01l-1.58-1.6h-.69zM8.51 3.9h.22c.06 0 .12-.01.12-.07 0-.06-.05-.07-.12-.07h-.22c-.06 0-.12.01-.12.07.01.06.06.07.12.07zm-2.33-.05c.07-.07.07-.19 0-.26l-.5-.5a.187.187 0 00-.26 0c-.07.07-.07.19 0 .26l.5.5c.07.07.19.07.26 0zm3.06.89c.07 0 .14-.06.14-.12v-.31c0-.07-.07-.12-.14-.12s-.14.06-.14.12v.31c0 .07.07.12.14.12zM8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-.55.1-1.07.23-1.57h.11v.47c0 .2.18.37.39.37.03 0 .08-.01.11-.02l.78.77c.08.08.2.08.28 0 .08-.08.08-.2 0-.28l-.75-.78c0-.02.04-.04.04-.06v-.12c0-.16.09-.22.25-.36h.46c.09 0 .17-.01.24-.05h.02c.02-.01.03-.02.05-.03.01-.01.01-.01.02-.01l.02-.02 1.59-1.58c.18-.18.18-.46 0-.64s-.47-.15-.65.03l-.3.34h-.57v-.48c0-.01.05.05.05-.09h.64c.12 0 .22-.09.22-.21s-.1-.21-.22-.21H4.1c.18-.15.34-.31.54-.44l.01-.01c.21-.14.45-.25.68-.37.15-.07.29-.15.44-.21.17-.07.35-.11.53-.17.18-.05.35-.12.53-.16a6.05 6.05 0 013.47.35c.05.02.1.05.16.08.25.11.48.24.71.39.25.16.49.34.71.55H10.6s0-.03-.01-.03c-.04 0-.09 0-.13.03l-.51.51a.17.17 0 000 .23c.06.06.17.06.23 0l.42-.44.01-.02h.25c0 .14-.07.09-.07.12v.07c0 .22-.15.37-.36.37h-.38c-.19 0-.38.21-.38.4v.17h-.1c-.12 0-.2.06-.2.18v.25h-.23c-.17 0-.3.11-.3.28 0 .17.13.26.3.26.07 0 .14.03.19-.11l.04.01.49-.46h.17l.39.37c.03.03.08.02.12-.01.03-.03.03-.12 0-.15l-.32-.35h.23l.09.12c.18.18.48.17.66-.01l.09-.1h.4c.02 0 .08.05.08.05v.24l-.05-.01h-.36c-.11 0-.21.1-.21.21 0 .11.09.21.21.21h.41v.15c-.14.21-.24.42-.45.42h-.94v-.01l-.44-.44a.47.47 0 00-.66 0l-.42.43v.01H8.6c-.26 0-.49.21-.49.46v.92c0 .26.23.45.49.45h.9c.34.14.57.35.72.69v1.68c0 .26.17.44.42.44h.72c.26 0 .4-.18.4-.44V9l.89-.86.03-.02.02-.01h.03c.07-.08.15-.19.15-.31v-.91c0-.18-.16-.32-.31-.46H13c.01.28.21.42.46.42h.42c.08.37.12.76.12 1.15 0 3.31-2.69 6-6 6zm4.54-4.27c-.1 0-.21.08-.21.18v.57c0 .1.11.18.21.18.1 0 .21-.08.21-.18v-.57c0-.1-.11-.18-.21-.18zM8.37 3.19c0-.25-.2-.42-.46-.42h-.54c-.25 0-.42.18-.42.43 0 .03-.1.04.05.08v.47c0 .15.06.27.21.27s.21-.12.21-.27v-.14h.5c.24 0 .45-.16.45-.42z", - ], - "globe-network": [ - "M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm5.17 5h-2.44c-.21-1.11-.51-2.03-.91-2.69 1.43.46 2.61 1.43 3.35 2.69zM10 8c0 .73-.05 1.39-.12 2H6.12C6.05 9.39 6 8.73 6 8s.05-1.39.12-2h3.76c.07.61.12 1.27.12 2zM8 2c.67 0 1.36 1.1 1.73 3H6.27C6.64 3.1 7.33 2 8 2zm-1.82.31c-.4.66-.71 1.58-.91 2.69H2.83a6.025 6.025 0 013.35-2.69zM2 8c0-.7.13-1.37.35-2h2.76C5.04 6.62 5 7.28 5 8s.04 1.38.11 2H2.35C2.13 9.37 2 8.7 2 8zm.83 3h2.44c.21 1.11.51 2.03.91 2.69A6.025 6.025 0 012.83 11zM8 14c-.67 0-1.36-1.1-1.73-3h3.46c-.37 1.9-1.06 3-1.73 3zm1.82-.31c.4-.66.7-1.58.91-2.69h2.44a6.025 6.025 0 01-3.35 2.69zM13.65 10h-2.76c.07-.62.11-1.28.11-2s-.04-1.38-.11-2h2.76c.22.63.35 1.3.35 2s-.13 1.37-.35 2z", - ], - graph: [ - "M14 3c-1.06 0-1.92.83-1.99 1.88l-1.93.97A2.95 2.95 0 008 5c-.56 0-1.08.16-1.52.43L3.97 3.34C3.98 3.23 4 3.12 4 3c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2c.24 0 .47-.05.68-.13l2.51 2.09C5.08 7.29 5 7.63 5 8c0 .96.46 1.81 1.16 2.35l-.56 1.69c-.91.19-1.6.99-1.6 1.96 0 1.1.9 2 2 2s2-.9 2-2c0-.51-.2-.97-.51-1.32l.56-1.69A2.99 2.99 0 0011 8c0-.12-.02-.24-.04-.36l1.94-.97c.32.21.69.33 1.1.33 1.1 0 2-.9 2-2s-.9-2-2-2z", - ], - "graph-remove": [ - "M12.89 8.11l-.01.01-.38-.38-.38.38-.02-.02c-.54.55-1.27.9-2.1.9-1.66 0-3-1.34-3-3 0-.83.35-1.56.9-2.1l-.02-.02.38-.38-.38-.38.01-.01C7.35 2.57 7 1.83 7 1c0-.34.07-.65.17-.96A8.004 8.004 0 000 8c0 4.42 3.58 8 8 8 4.14 0 7.54-3.14 7.96-7.17-.31.1-.62.17-.96.17-.83 0-1.57-.35-2.11-.89zm1.02-4.61l1.79-1.79c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-1.79 1.8L10.71.3A.965.965 0 0010 0a1.003 1.003 0 00-.71 1.71l1.79 1.79-1.79 1.79a1.003 1.003 0 001.42 1.42l1.79-1.79 1.79 1.79a1.003 1.003 0 001.42-1.42l-1.8-1.79z", - ], - "greater-than": [ - "M2.713 5.958a1 1 0 01.574-1.916l10 3c.95.285.95 1.63 0 1.916l-10 3a1 1 0 01-.574-1.916L9.52 8 2.713 5.958z", - ], - "greater-than-or-equal-to": [ - "M2.713 3.958a1 1 0 01.574-1.916l10 3c.95.285.95 1.63 0 1.916l-10 3a1 1 0 01-.574-1.916L9.52 6 2.713 3.958zM3 12h10a1 1 0 010 2H3a1 1 0 010-2z", - ], - grid: [ - "M15 9c.55 0 1-.45 1-1s-.45-1-1-1h-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1h-1V1c0-.55-.45-1-1-1s-1 .45-1 1v1H9V1c0-.55-.45-1-1-1S7 .45 7 1v1H4V1c0-.55-.45-1-1-1S2 .45 2 1v1H1c-.55 0-1 .45-1 1s.45 1 1 1h1v3H1c-.55 0-1 .45-1 1s.45 1 1 1h1v3H1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h3v1c0 .55.45 1 1 1s1-.45 1-1v-1h3v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1h-1V9h1zm-8 3H4V9h3v3zm0-5H4V4h3v3zm5 5H9V9h3v3zm0-5H9V4h3v3z", - ], - "grid-view": [ - "M0 1v6h7V0H1C.45 0 0 .45 0 1zm0 14c0 .55.45 1 1 1h6V9H0v6zM15 0H9v7h7V1c0-.55-.45-1-1-1zM9 16h6c.55 0 1-.45 1-1V9H9v7z", - ], - "group-objects": [ - "M5 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6-3H5C2.24 3 0 5.24 0 8s2.24 5 5 5h6c2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 9H5c-2.21 0-4-1.79-4-4s1.79-4 4-4h6c2.21 0 4 1.79 4 4s-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", - ], - "grouped-bar-chart": [ - "M10 12c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1zm3 0c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1zm2 1H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm-9-1c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1zm-3 0c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1v9c0 .55.45 1 1 1z", - ], - hand: [ - "M15 5c0-.55-.45-1-1-1-.41 0-.76.24-.91.59v.01s0 .01-.01.01L11.57 8h-.36l.78-4.84C12 3.11 12 3.05 12 3a1 1 0 00-1.99-.16v.01L9.18 8H9V1c0-.55-.45-1-1-1S7 .45 7 1v7h-.09l-.93-5.18A1 1 0 005 2c-.55 0-1 .45-1 1 0 .05 0 .11.01.16L5.26 11h-.04L2.83 7.44C2.65 7.18 2.35 7 2 7c-.55 0-1 .45-1 1 0 .17.04.33.12.47l3 5.69h.01v.01A5.002 5.002 0 0013 11v-.59l1.93-5.05c.05-.11.07-.23.07-.36z", - ], - "hand-down": [ - "M14.72 7.87c-1.54-.67-2.99-2.68-3.7-3.95C10.11 1.95 9.93 0 6.14 0 4.05 0 2.71.61 1.92 2.12 1.27 3.36 1 5.21 1 7.83v.79c0 .65.6 1.18 1.35 1.18.34 0 .64-.11.88-.29.17.48.68.84 1.29.84.41 0 .78-.16 1.03-.42.23.37.67.63 1.19.63.57 0 1.05-.31 1.25-.74l.01.63v4.05c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7.9c.58.41 1.55 1.21 2.47 1.29 1.57.14 1.82-1.07 1.25-1.32z", - ], - "hand-left": [ - "M12.08 4.97c-1.26-.71-3.27-2.15-3.95-3.7C7.88.7 6.67.96 6.81 2.52c.09.93.89 1.9 1.3 2.48H1.5C.67 5 0 5.67 0 6.5S.67 8 1.5 8h4.05l.63.01c-.44.2-.75.69-.75 1.25 0 .52.26.96.63 1.19-.26.25-.42.61-.42 1.03 0 .61.35 1.12.84 1.29-.18.24-.29.54-.29.88 0 .75.54 1.35 1.19 1.35h.79c2.62 0 4.47-.28 5.71-.92 1.51-.79 2.12-2.14 2.12-4.22 0-3.79-1.95-3.97-3.92-4.89z", - ], - "hand-right": [ - "M14.5 5H7.89c.41-.58 1.21-1.55 1.3-2.47C9.34.97 8.12.71 7.87 1.28c-.67 1.54-2.68 2.99-3.95 3.7C1.95 5.89 0 6.07 0 9.86c0 2.09.61 3.43 2.12 4.22 1.24.65 3.09.92 5.71.92h.79c.65 0 1.18-.6 1.18-1.35 0-.34-.11-.64-.29-.88.48-.17.84-.68.84-1.29 0-.41-.16-.78-.42-1.03.37-.23.63-.67.63-1.19 0-.57-.31-1.05-.74-1.25l.63-.01h4.05c.83 0 1.5-.67 1.5-1.5S15.33 5 14.5 5z", - ], - "hand-up": [ - "M13.65 6.19c-.34 0-.64.11-.88.29-.17-.48-.68-.84-1.29-.84-.41 0-.78.16-1.03.42-.23-.37-.67-.63-1.19-.63-.57 0-1.05.31-1.25.74L8 5.55V1.5C8 .67 7.33 0 6.5 0S5 .67 5 1.5v6.61c-.58-.41-1.55-1.21-2.48-1.3C.96 6.67.7 7.88 1.28 8.13c1.54.67 2.99 2.68 3.7 3.95C5.89 14.05 6.07 16 9.86 16c2.09 0 3.43-.61 4.22-2.12.64-1.24.92-3.09.92-5.71v-.79c0-.65-.6-1.19-1.35-1.19z", - ], - hat: [ - "M15 10c.495 0 .933.379.993.882L16 11v.505c0 1.461-3.524 2.45-7.707 2.493L8 14c-4.31 0-8-1-8-2.495V11c0-.561.466-1 1-1 .895 0 3 1 7 1l.381-.003C12.135 10.937 14.134 10 15 10zm-4-8c1.13 0 2.02 2.153 2.671 6.46-1.063.266-2.644.652-4.887.727l-.403.01L8 9.2c-2.664 0-4.488-.444-5.673-.74C2.98 4.153 3.87 2 5 2c2 0 1.329 2 3 2s1-2 3-2z", - ], - header: [ - "M13 1c-.55 0-1 .45-1 1v5H4V2c0-.55-.45-1-1-1s-1 .45-1 1v12c0 .55.45 1 1 1s1-.45 1-1V9h8v5c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1z", - ], - "header-one": [ - "M14.06 8c-.04.23-.12.44-.25.61-.13.17-.29.3-.48.41-.18.11-.39.18-.62.23-.23.04-.46.07-.71.07v1.03h1.74V16H15V8h-.94zM7 0c-.56 0-1 .45-1 1v4H2V1c0-.55-.45-1-1-1-.56 0-1 .45-1 1v10c0 .55.45 1 1 1 .56 0 1-.45 1-1V7h4v4c0 .55.45 1 1 1 .56 0 1-.45 1-1V1c0-.54-.45-1-1-1z", - ], - "header-three": [ - "M1 0C.44 0 0 .45 0 1v10c0 .54.45 1 1 1 .56 0 1-.45 1-1V7h4v4c0 .54.45 1 1 1 .56 0 1-.45 1-1V1c0-.54-.45-1-1-1-.56 0-1 .45-1 1v4H2V1c0-.54-.45-1-1-1zm13.71 11.72c.41.08.72.3.95.65.23.35.34.77.34 1.27 0 .37-.07.7-.2.97-.14.29-.32.54-.55.74-.23.2-.5.36-.8.47-.3.11-.62.16-.96.16-.41 0-.77-.06-1.08-.19-.31-.12-.56-.31-.77-.54-.21-.24-.36-.52-.47-.85-.11-.33-.16-.7-.17-1.1h1.14c-.01.47.09.86.32 1.17.23.31.57.47 1.02.47.39 0 .71-.12.97-.36s.39-.58.39-1.02c0-.3-.05-.53-.16-.71-.11-.17-.25-.31-.43-.4-.17-.09-.37-.15-.59-.17-.22-.02-.44-.03-.67-.02v-.93c.19.01.38 0 .57-.04.19-.03.36-.1.51-.19.14-.09.26-.22.35-.38.09-.16.14-.36.14-.59 0-.33-.1-.59-.31-.79-.2-.2-.47-.3-.79-.3-.21 0-.38.04-.53.13-.15.09-.27.21-.37.36-.1.15-.17.32-.22.51-.05.19-.07.38-.06.58h-1.15c.01-.38.08-.72.19-1.04.11-.32.27-.6.47-.83.19-.23.44-.42.72-.55.28-.13.6-.2.96-.2.28 0 .55.04.82.13.27.08.51.21.72.38.21.17.38.38.51.64s.19.56.19.9c0 .39-.08.73-.24 1.02-.16.29-.42.5-.76.63v.02z", - ], - "header-two": [ - "M13.17 13.93c-.17.15-.33.29-.46.44-.13.16-.22.32-.27.49h3.55V16H11c.01-.65.16-1.22.44-1.71s.67-.91 1.17-1.27c.24-.18.49-.36.75-.54.25-.18.49-.36.71-.57.21-.2.39-.42.53-.65.14-.24.21-.51.22-.82 0-.14-.02-.29-.05-.45-.03-.16-.09-.31-.18-.45a1.13 1.13 0 00-.37-.35c-.16-.09-.37-.14-.63-.14-.24 0-.43.05-.59.15-.16.1-.29.24-.38.42-.1.17-.17.38-.21.62-.05.24-.07.5-.08.77h-1.19c0-.43.05-.83.16-1.2s.27-.69.49-.96c.21-.25.48-.46.79-.62.31-.15.67-.23 1.07-.23.45 0 .82.08 1.11.23.3.16.55.36.73.6.19.24.32.5.39.79.08.28.12.54.12.79 0 .31-.04.6-.13.85s-.22.49-.37.7c-.15.21-.32.41-.52.59s-.4.35-.61.51l-.63.45c-.21.14-.39.28-.57.42zM0 1c0-.55.44-1 1-1 .55 0 1 .46 1 1v10c0 .55-.44 1-1 1-.55 0-1-.46-1-1V1zm6 0c0-.55.44-1 1-1 .55 0 1 .46 1 1v10c0 .55-.44 1-1 1-.55 0-1-.46-1-1V1zM2 5h4v2H2V5z", - ], - headset: [ - "M14.85 6.34C14.18 2.72 11.37 0 8 0S1.82 2.72 1.15 6.34C.47 6.9 0 8.1 0 9.5 0 11.43.9 13 2 13c0 1.1.9 2 2 2h2c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1H4c-.55 0-1-.45-1-1 .55 0 1-.45 1-1V7c0-.45-.3-.81-.71-.94C3.97 3.7 5.81 2 8 2s4.03 1.7 4.71 4.06c-.41.13-.71.49-.71.94v5c0 .55.45 1 1 1h1c1.1 0 2-1.57 2-3.5 0-1.4-.47-2.6-1.15-3.16z", - ], - heart: [ - "M16 5.095c0-2.255-1.88-4.083-4.2-4.083-1.682 0-3.13.964-3.8 2.352a4.206 4.206 0 00-3.8-2.352C1.88 1.012 0 2.84 0 5.095c0 .066.007.13.01.194H.004c.001.047.01.096.014.143l.013.142c.07.8.321 1.663.824 2.573C2.073 10.354 4.232 12.018 8 15c3.767-2.982 5.926-4.647 7.144-6.854.501-.905.752-1.766.823-2.562.007-.055.012-.11.016-.164.003-.043.012-.088.013-.13h-.006c.003-.066.01-.13.01-.195z", - ], - "heart-broken": [ - "M7.71 8.87L6.17 6.55l.02-.01A.906.906 0 016 6c0-.07.03-.13.04-.19h-.02l.78-3.92C6.09 1.34 5.19 1 4.2 1 1.88 1 0 2.83 0 5.09c0 .07.01.13.01.19H0c0 .05.01.1.01.14 0 .05.01.1.01.14.07.8.32 1.66.82 2.57 1.07 1.94 2.88 3.47 5.86 5.84l-.68-2.74h.02C6.03 11.16 6 11.08 6 11c0-.28.11-.53.29-.71l1.42-1.42zM16 5.09C16 2.83 14.12 1 11.8 1c-1.2 0-2.27.5-3.04 1.28l-.7 3.51 1.77 2.66-.01.01c.1.15.18.33.18.54 0 .28-.11.53-.29.71l-1.6 1.6.75 3.01c3.23-2.56 5.16-4.15 6.28-6.18.5-.91.75-1.77.82-2.56.01-.05.01-.11.02-.16 0-.04.01-.09.01-.13h-.01c.01-.07.02-.14.02-.2z", - ], - "heat-grid": [ - "M0 10h5V7H0v3zm1-2h3v1H1V8zm14-5h-4v3h5V4c0-.55-.45-1-1-1zm0 2h-3V4h3v1zM0 4v2h5V3H1c-.55 0-1 .45-1 1zm0 9c0 .55.45 1 1 1h4v-3H0v2zm6-7h4V3H6v3zm0 8h4v-3H6v3zm1-2h2v1H7v-1zm4 2h4c.55 0 1-.45 1-1v-2h-5v3zm0-4h5V7h-5v3zm-5 0h4V7H6v3z", - ], - heatmap: [ - "M2 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm11-7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm3 4.5A2.5 2.5 0 0013.5 6c-.98 0-1.82.57-2.23 1.39-.6-.78-1.51-1.3-2.56-1.36.18-.49.29-.99.29-1.53C9 2.01 6.99 0 4.5 0S0 2.01 0 4.5 2.01 9 4.5 9c.19 0 .37-.03.56-.06-.03.19-.06.37-.06.56C5 11.43 6.57 13 8.5 13c1.63 0 2.98-1.11 3.37-2.62.44.38 1 .62 1.63.62A2.5 2.5 0 0016 8.5zM14.5 13c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z", - ], - helicopter: [ - "M.5 2a.5.5 0 01.5.5V4h7V3H2.5a.5.5 0 010-1h13a.5.5 0 010 1H10v1h1c2.26 0 4 1.79 4 4 0 1.87-1.247 3.44-3 3.878V13h.382l1.894-.947a.5.5 0 11.448.894L12.618 14H4.5a.5.5 0 010-1H7v-2.306C5.749 9.736 5 8.368 5 7L1 6v1.5a.5.5 0 01-1 0v-5A.5.5 0 01.5 2zM8 11.316V13h3v-1a6.73 6.73 0 01-3-.684zM11 5v3h3a3 3 0 00-3-3z", - ], - help: [ - "M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 13H7v-2h2v2zm1.93-6.52c-.14.32-.35.64-.62.97L9.25 8.83c-.12.15-.24.29-.28.42-.04.13-.09.3-.09.52V10H7.12V8.88s.05-.51.21-.71L8.4 6.73c.22-.26.35-.49.44-.68.09-.19.12-.38.12-.58 0-.3-.1-.55-.28-.75-.18-.19-.44-.28-.76-.28-.33 0-.59.1-.78.29-.19.19-.33.46-.4.81-.03.11-.1.15-.2.14l-1.7-.25c-.12-.01-.16-.08-.14-.19.12-.82.46-1.47 1.03-1.94.57-.48 1.32-.72 2.25-.72.47 0 .9.07 1.29.22s.72.34 1 .59c.28.25.49.55.65.89.15.35.22.72.22 1.12s-.07.75-.21 1.08z", - ], - "helper-management": [ - "M13 5h-2v2h2V5zm0 6h-2v2h2v-2zm0-3h-2v2h2V8zm2-8H1C.4 0 0 .4 0 1v14c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1zm-1 14H2V2h12v12zm-7-3H5v2h2v-2zm3 0H8v2h2v-2z", - ], - "high-priority": ["M9 14v2H7v-2h2zm1-14L9 12H7L6 0h4z"], - highlight: [ - "M9.12 11.07l2-2.02.71.71 4-4.04L10.17 0l-4 4.04.71.71-2 2.02 4.24 4.3zM2 12.97h4c.28 0 .53-.11.71-.3l1-1.01-3.42-3.45-3 3.03c-.18.18-.29.44-.29.72 0 .55.45 1.01 1 1.01zm13 1.01H1c-.55 0-1 .45-1 1.01S.45 16 1 16h14c.55 0 1-.45 1-1.01s-.45-1.01-1-1.01z", - ], - history: [ - "M8 3c-.55 0-1 .45-1 1v4c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L9 7.59V4c0-.55-.45-1-1-1zm0-3a7.95 7.95 0 00-6 2.74V1c0-.55-.45-1-1-1S0 .45 0 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H3.54C4.64 2.78 6.23 2 8 2c3.31 0 6 2.69 6 6 0 2.61-1.67 4.81-4 5.63v-.01c-.63.23-1.29.38-2 .38-3.31 0-6-2.69-6-6 0-.55-.45-1-1-1s-1 .45-1 1c0 4.42 3.58 8 8 8 .34 0 .67-.03 1-.07.02 0 .04-.01.06-.01C12.98 15.4 16 12.06 16 8c0-4.42-3.58-8-8-8z", - ], - home: [ - "M2 10v5c0 .55.45 1 1 1h3v-5h4v5h3c.55 0 1-.45 1-1v-5L8 4l-6 6zm13.71-2.71L14 5.59V2c0-.55-.45-1-1-1s-1 .45-1 1v1.59L8.71.29C8.53.11 8.28 0 8 0s-.53.11-.71.29l-7 7a1.003 1.003 0 001.42 1.42L8 2.41l6.29 6.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z", - ], - "horizontal-bar-chart": [ - "M4 5h7c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zM1 1c-.55 0-1 .45-1 1v13c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1zm14 6H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h11c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-6 5H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1z", - ], - "horizontal-bar-chart-asc": [ - "M1 3h5c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h7c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm14 6H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM1 11h10c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1z", - ], - "horizontal-bar-chart-desc": [ - "M15 1H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM8 9H1c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1zm-2 4H1c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm5-8H1c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "horizontal-distribution": [ - "M2 0c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm13 0c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm-5 2H7c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z", - ], - hurricane: [ - "M3.5 12c-.86 0-2.5-.5-3.5-1 1 3.5 4.506 4 7 4a7 7 0 007-7l-.006-.004a5.974 5.974 0 00-1.29-3.988c.896.066 2.37.53 3.296.992-1-3.5-4.506-4-7-4a6.998 6.998 0 00-6.14 3.635 5.972 5.972 0 00-.859 3.226L2 8l.006.005a5.98 5.98 0 001.771 3.99A7.469 7.469 0 013.5 12zM8 6a2 2 0 100 4 2 2 0 000-4z", - "M0 0h16v16H0z", - ], - "id-number": [ - "M2 5v7h12V5H2zm0-2h12c1.1 0 2 .9 2 2v7c0 1.1-.9 2-2 2H2c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2z", - "M7.9 10.48c-.14-.33-.84-.55-1.3-.75-.46-.2-.4-.33-.42-.5v-.07c.16-.14.29-.33.37-.56 0 0 0-.01.01-.02.02-.05.03-.1.05-.15.1-.01.16-.13.19-.23.03-.04.07-.15.06-.27-.02-.16-.08-.24-.15-.26v-.03c0-.2-.02-.48-.05-.67-.01-.05-.02-.1-.03-.16-.07-.23-.21-.44-.4-.58-.2-.15-.48-.23-.73-.23s-.53.08-.72.23c-.19.14-.33.35-.4.58-.02.05-.03.1-.03.16-.05.18-.06.47-.06.67v.03c-.07.03-.14.1-.15.26-.02.12.03.22.06.27.02.1.09.22.2.24.01.05.03.1.05.15v.01c.08.23.22.42.38.56v.07c-.02.17.03.29-.43.5-.46.2-1.16.42-1.3.75s-.09.52-.09.52H8c-.01 0 .05-.19-.1-.52zM10 6h2c.55 0 1 .45 1 1s-.45 1-1 1h-2c-.55 0-1-.45-1-1s.45-1 1-1zM10 9h2c.55 0 1 .45 1 1s-.45 1-1 1h-2c-.55 0-1-.45-1-1s.45-1 1-1z", - ], - "image-rotate-left": [ - "M13 2h-1.59l.29-.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-2 2C8.11 2.47 8 2.72 8 3c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42l-.3-.29H13c.55 0 1 .45 1 1v3c0 .55.45 1 1 1s1-.45 1-1V5c0-1.66-1.34-3-3-3zm-5.5 9c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7H1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 6.33L7 12l-1 1-2-3-2 2.67V9h7v4.33z", - ], - "image-rotate-right": [ - "M5.71 5.71l2-2C7.89 3.53 8 3.28 8 3c0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42l.3.29H3C1.34 2 0 3.34 0 5v3c0 .55.45 1 1 1s1-.45 1-1V5c0-.55.45-1 1-1h1.59l-.3.29a1.003 1.003 0 001.42 1.42zM12.5 11c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM15 7H6c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 6.33L12 12l-1 1-2-3-2 2.67V9h7v4.33z", - ], - import: [ - "M7.29 11.71c.18.18.43.29.71.29s.53-.11.71-.29l4-4a1.003 1.003 0 00-1.42-1.42L9 8.59V1c0-.55-.45-1-1-1S7 .45 7 1v7.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l4 4zM15 11c-.55 0-1 .45-1 1v2H2v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1z", - ], - inbox: [ - "M13.91 2.6c-.16-.36-.51-.61-.92-.61h-10c-.41 0-.77.25-.92.61L-.01 7.45v5.54c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V7.45L13.91 2.6zm-1.92 5.39c-.55 0-1 .45-1 1v1h-6v-1c0-.55-.45-1-1-1H1.94l1.71-4h8.68l1.71 4h-2.05z", - ], - "inbox-filtered": [ - "M6.432 2c.094.14.202.273.324.394L8.42 4H3.66L1.95 8H4c.55 0 1 .45 1 1v1h6.557c.693 0 1.363-.262 1.837-.736l.103-.102.85-1.14a2.564 2.564 0 00.623-1.682V5.058L16 7.46V13c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V7.46l2.08-4.85C2.23 2.25 2.59 2 3 2h3.432zm9.048-2c.31 0 .52.26.52.57 0 .16-.06.3-.17.41l-2.86 2.73v2.63c0 .16-.06.3-.17.41l-.82 1.1c-.1.1-.25.17-.41.17-.31 0-.57-.26-.57-.57V3.71L8.17.98A.566.566 0 018 .57c0-.31.26-.57.57-.57h6.91z", - ], - "inbox-geo": [ - "M6.341 2A5.99 5.99 0 006 4H3.66L1.95 8H4c.55 0 1 .45 1 1v1h7a5.978 5.978 0 004-1.528V13c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V7.46l2.08-4.85C2.23 2.25 2.59 2 3 2h3.341zm3.679 2.145c0-.125.075-.23.205-.225h.345l.79.8c.005 0 0 .005 0 .005v.295c0 .13-.085.23-.215.23h-.07v.15c0 .13-.09.2-.215.2v.535c0 .125-.12.225-.245.225s-.245-.1-.245-.225V5.25h-.145c-.125 0-.205-.1-.205-.23v-.875zm2.235-2.195c-.03 0-.055-.005-.06-.035 0-.03.03-.035.06-.035h.11c.035 0 .06.005.06.035 0 .03-.03.035-.06.035h-.11zm-1.165-.025a.094.094 0 01-.13 0l-.25-.25a.094.094 0 010-.13.094.094 0 01.13 0l.25.25a.094.094 0 010 .13zm1.53.445c-.035 0-.07-.025-.07-.06v-.155c0-.03.035-.06.07-.06s.07.025.07.06v.155c0 .03-.035.06-.07.06zM12 0c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4zm0 7c1.655 0 3-1.345 3-3 0-.195-.02-.39-.06-.575h-.21c-.125 0-.225-.07-.23-.21h-.215c.075.07.155.14.155.23V3.9c0 .06-.04.115-.075.155h-.015l-.01.005-.015.01-.445.43v.815c0 .13-.07.22-.2.22h-.36c-.125 0-.21-.09-.21-.22v-.84a.627.627 0 00-.36-.345h-.45c-.13 0-.245-.095-.245-.225v-.46c0-.125.115-.23.245-.23l.13-.005.21-.215c.09-.09.24-.09.33 0l.22.225h.47c.105 0 .155-.105.225-.21v-.075h-.205a.106.106 0 01-.105-.105.11.11 0 01.105-.105h.18l.025.005v-.12s-.03-.025-.04-.025h-.2l-.045.05a.235.235 0 01-.33.005l-.045-.06h-.115l.16.175c.015.015.015.06 0 .075-.02.015-.045.02-.06.005l-.195-.185h-.085l-.245.23-.02-.005c-.025.07-.06.055-.095.055-.085 0-.15-.045-.15-.13s.065-.14.15-.14h.115v-.125c0-.06.04-.09.1-.09h.05V2.36c0-.095.095-.2.19-.2h.19c.105 0 .18-.075.18-.185V1.94c0-.015.035.01.035-.06h-.125l-.005.01-.21.22a.085.085 0 01-.115 0 .085.085 0 010-.115l.255-.255c.02-.015.045-.015.065-.015.005 0 .005.015.005.015h.64a2.327 2.327 0 00-.355-.275 2.452 2.452 0 00-.355-.195c-.03-.015-.055-.03-.08-.04a3.025 3.025 0 00-1.735-.175c-.09.02-.175.055-.265.08-.09.03-.18.05-.265.085-.075.03-.145.07-.22.105-.115.06-.235.115-.34.185l-.005.005c-.1.065-.18.145-.27.22h.455c.06 0 .11.045.11.105s-.05.105-.11.105h-.32c0 .07-.025.04-.025.045v.24h.285l.15-.17c.09-.09.235-.105.325-.015.09.09.09.23 0 .32l-.795.79-.01.01c-.005 0-.005 0-.01.005l-.025.015h-.01a.235.235 0 01-.12.025h-.23c-.08.07-.125.1-.125.18v.06c0 .01-.02.02-.02.03l.375.39c.04.04.04.1 0 .14-.04.04-.1.04-.14 0l-.39-.385a.213.213 0 01-.055.01c-.105 0-.195-.085-.195-.185v-.235h-.055A3.1 3.1 0 009 4c0 1.655 1.345 3 3 3zm2.27-2.135c.05 0 .105.04.105.09v.285c0 .05-.055.09-.105.09-.05 0-.105-.04-.105-.09v-.285c0-.05.055-.09.105-.09zm-2.085-3.27c0 .13-.105.21-.225.21h-.25v.07c0 .075-.03.135-.105.135s-.105-.06-.105-.135V1.64c-.075-.02-.025-.025-.025-.04 0-.125.085-.215.21-.215h.27c.13 0 .23.085.23.21z", - ], - "inbox-search": [ - "M5.639 2a5.391 5.391 0 00-.144 2H3.66L1.95 8H4c.55 0 1 .45 1 1v1h6V9c0-.088.012-.174.033-.255.12-.007.238-.019.39-.038.154-.008.252-.03.442-.077a5.34 5.34 0 00.24-.05h.05l.122-.04 1.266 1.271c.425.47 1.116.769 1.847.769.21 0 .414-.025.61-.071V13c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V7.46l2.08-4.85C2.23 2.25 2.59 2 3 2h2.639zM15.82 7.53c.1.12.17.27.18.44 0 .34-.27.61-.61.61a.57.57 0 01-.43-.18l-2.24-2.25c-.13.08-.26.16-.4.23-.02.01-.05.02-.07.03-.14.06-.27.12-.42.17h-.01c-.14.05-.29.08-.44.11-.04.01-.08.02-.11.02-.15.02-.3.04-.46.04-1.85 0-3.35-1.51-3.35-3.37S8.96.01 10.81 0c1.85 0 3.35 1.51 3.35 3.37 0 .16-.02.31-.04.47-.01.04-.01.07-.02.11-.02.15-.05.29-.1.44v.01c-.05.15-.11.28-.17.42-.01.02-.02.05-.03.07-.07.14-.14.27-.23.4l2.25 2.24zm-5.01-1.94c1.22 0 2.21-.99 2.21-2.22 0-1.23-.99-2.22-2.21-2.22S8.6 2.14 8.6 3.37c0 1.22.99 2.22 2.21 2.22z", - ], - "inbox-update": [ - "M8.1 2a5.023 5.023 0 000 2H3.66L1.95 8H4c.55 0 1 .45 1 1v1h6V9c0-.55.45-1 1-1h2.05c.708 0 1.352-.241 1.905-.645L16 7.46V13c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V7.46l2.08-4.85C2.23 2.25 2.59 2 3 2h5.1zM13 6a3 3 0 110-6 3 3 0 010 6z", - ], - "info-sign": [ - "M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM7 3h2v2H7V3zm3 10H6v-1h1V7H6V6h3v6h1v1z", - ], - inheritance: [ - "M5 8c0 1.66 1.34 3 3 3h4.59L11.3 9.71A.965.965 0 0111 9a1.003 1.003 0 011.71-.71l3 3c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-3 3a1.003 1.003 0 01-1.42-1.42l1.3-1.29H8c-2.76 0-5-2.24-5-5H1a1 1 0 01-1-1V1a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5zM2 2v4h4V2H2z", - ], - "inherited-group": [ - "M1 7c.51 0 .935.388.993.884L2 8v3c0 .51.388.935.884.993L3 12h1.59l-.3-.29a1.003 1.003 0 011.324-1.504l.096.084 2 2c.18.18.29.43.29.71 0 .233-.076.446-.206.614l-.084.096-2 2A1.003 1.003 0 014 15c0-.24.08-.458.224-.629l.076-.081.29-.29H3a2.996 2.996 0 01-2.995-2.823L0 11V8c0-.55.45-1 1-1zm5.388-7c.629 0 1.338.21 1.838.6.48.38.85.91 1.019 1.52.04.13.07.27.09.4.09.48.14 1.22.14 1.73v.07c.18.08.34.27.37.67.03.32-.09.59-.16.71-.06.28-.21.58-.48.63-.03.13-.07.26-.12.39 0 .01-.01.04-.01.04-.22.58-.55 1.08-.949 1.45v.18c.04.45-.12.77 1.059 1.3 1.179.53 2.947 1.09 3.307 1.95.37.86.22 1.36.22 1.36H9c0-.539-.21-1.045-.583-1.417l-2-2A1.997 1.997 0 005 9c-.149 0-.296-.015-.442-.045.099-.19.082-.37.101-.575 0-.05.01-.11.01-.17-.41-.35-.75-.86-.969-1.45v-.01s-.01-.01-.01-.02c-.04-.12-.09-.26-.12-.39-.28-.05-.44-.36-.5-.64-.06-.12-.19-.39-.16-.71.04-.41.21-.6.39-.68v-.06c0-.51.05-1.26.14-1.74.02-.13.05-.27.09-.4.17-.6.54-1.13 1.02-1.51C5.048.21 5.757 0 6.387 0zm4.625 2.04c.49 0 1.05.16 1.439.46.38.29.67.7.8 1.17.03.1.05.21.07.31.07.37.11.94.11 1.33v.05c.139.06.269.21.289.51.02.25-.07.45-.13.54-.05.21-.16.44-.38.48a1.711 1.711 0 01-.1.33c-.17.44-.43.83-.749 1.11v.14c.03.35-.09.59.83 1 .929.41 2.317.84 2.597 1.5.29.66.17 1.04.17 1.04H13.66v.01c-.05-.24-.14-.5-.25-.76-.36-.86-1.119-1.33-2.687-2-.14-.06-.59-.25-.6-.25-.21-.09-.36-.15-.5-.22.02-.1.02-.2.03-.31 0-.04.01-.08.01-.13-.07-.06-.13-.12-.19-.19.22-.32.4-.67.54-1.05.02-.06.02-.06.03-.1.29-.23.48-.57.59-.96.16-.33.25-.73.21-1.16-.03-.4-.16-.76-.37-1.03-.02-.53-.07-1.13-.15-1.54-.01-.06-.02-.12-.03-.19.23-.06.48-.09.72-.09z", - ], - "inner-join": [ - "M6.6 3.3C5.3 4.4 4.5 6.1 4.5 8s.8 3.6 2.1 4.7c-.5.2-1 .3-1.6.3-2.8 0-5-2.2-5-5s2.2-5 5-5c.6 0 1.1.1 1.6.3zm-1.96 8.68C3.92 10.83 3.5 9.46 3.5 8s.42-2.83 1.14-3.98C2.6 4.2 1 5.91 1 8s1.6 3.8 3.64 3.98zM8 4c-1.2.9-2 2.4-2 4s.8 3.1 2 4c1.2-.9 2-2.3 2-4s-.8-3.1-2-4zm3-1c2.8 0 5 2.2 5 5s-2.2 5-5 5c-.6 0-1.1-.1-1.6-.3 1.3-1.1 2.1-2.9 2.1-4.7s-.8-3.5-2.1-4.7c.5-.2 1-.3 1.6-.3zm.35 1.02c.73 1.15 1.14 2.52 1.14 3.98s-.42 2.83-1.14 3.98c2.04-.18 3.64-1.9 3.64-3.98s-1.6-3.8-3.64-3.98z", - ], - insert: [ - "M5 9h2v2c0 .6.4 1 1 1s1-.4 1-1V9h2c.6 0 1-.4 1-1s-.4-1-1-1H9V5c0-.6-.4-1-1-1s-1 .4-1 1v2H5c-.6 0-1 .4-1 1s.4 1 1 1zm10-9H1C.4 0 0 .4 0 1v14c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1zm-1 14H2V2h12v12z", - ], - intersection: [ - "M10 3c-.92 0-1.76.26-2.5.69C6.76 3.26 5.92 3 5 3 2.24 3 0 5.24 0 8s2.24 5 5 5c.92 0 1.76-.26 2.5-.69.74.43 1.58.69 2.5.69 2.76 0 5-2.24 5-5s-2.24-5-5-5zm-4.1 7.85c-.29.09-.59.15-.9.15-1.66 0-3-1.34-3-3s1.34-3 3-3c.31 0 .61.06.9.15C5.33 5.96 5 6.94 5 8s.33 2.04.9 2.85zM10 11c-.31 0-.61-.06-.9-.15.57-.81.9-1.79.9-2.85s-.33-2.04-.9-2.85c.29-.09.59-.15.9-.15 1.66 0 3 1.34 3 3s-1.34 3-3 3z", - ], - "ip-address": [ - "M5 2.66C5 4.14 8 8 8 8s3-3.86 3-5.34C10.99 1.2 9.66 0 8 0S5 1.2 5 2.66zM7 3c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zM10.5 10H8v5h1v-4h1v1H9v1h2v-3h-.5zM2 9h12c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1H2c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1zm4 1v5h1v-5H6z", - ], - issue: [ - "M8 16A8 8 0 118 0a8 8 0 010 16zm0-2A6 6 0 108 2a6 6 0 000 12zm1-2H7v-2h2v2zm0-3H7V4h2v5z", - ], - "issue-closed": [ - "M9.296.104a2.99 2.99 0 00-1.003.664 2.987 2.987 0 00-.75 1.25 6 6 0 106.28 4.527c.043-.039.085-.079.127-.12l1.456-1.456A8 8 0 119.296.105zm2.532 5.2a.997.997 0 01-.707-.294L9.707 3.596a1 1 0 011.414-1.414l.707.707 1.768-1.768a1 1 0 111.414 1.415L12.536 5.01a.997.997 0 01-.708.293zM9 12H7v-2h2v2zm0-3H7V4h2v5z", - ], - "issue-new": [ - "M10.568.421c-.01.04-.018.08-.026.121-.837.156-1.53.73-1.85 1.497a6 6 0 105.27 5.273 2.51 2.51 0 001.496-1.854c.04-.008.081-.016.121-.026A8 8 0 1110.568.421zM9 12H7v-2h2v2zm0-3H7V4h2v5zm1-6c0-.55.45-1 1-1h1V1c0-.55.45-1 1-1s1 .45 1 1v1h1c.55 0 1 .45 1 1s-.45 1-1 1h-1v1.005c0 .55-.45 1-1 1s-1-.45-1-1V4h-1c-.55 0-1-.45-1-1z", - ], - italic: [ - "M9.8 4H11c.5 0 1-.4 1-1s-.4-1-1-1H7c-.5 0-1 .4-1 1s.4 1 1 1h.8l-1.6 8H5c-.5 0-1 .4-1 1s.4 1 1 1h4c.5 0 1-.4 1-1s-.4-1-1-1h-.8l1.6-8z", - ], - "join-table": [ - "M15 5h-3V2c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h3v3c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-5-1v2H6V4h4zm0 6H6V7h4v3zM2 4h3v2H2V4zm0 5V7h3v2H2zm4 4v-2h4v2H6zm8 0h-3v-2h3v2zm0-3h-3V8h3v2z", - ], - key: [ - "M11 0C8.24 0 6 2.24 6 5c0 1.02.31 1.96.83 2.75L.29 14.29a1.003 1.003 0 001.42 1.42L3 14.41l1.29 1.29c.18.19.43.3.71.3s.53-.11.71-.29l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71L6.41 11l1.83-1.83c.8.52 1.74.83 2.76.83 2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-.23 0-.45-.03-.66-.08-.01 0-.02-.01-.03-.01-.21-.05-.41-.12-.6-.21a3.014 3.014 0 01-1.62-2c0-.01-.01-.02-.01-.03C8.03 5.45 8 5.23 8 5c0-1.66 1.34-3 3-3s3 1.34 3 3-1.34 3-3 3z", - ], - "key-backspace": [ - "M15 2H6c-.28 0-.53.11-.71.29l-5 5C.11 7.47 0 7.72 0 8c0 .28.11.53.29.71l5 5c.18.18.43.29.71.29h9c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-2.29 7.29a1.003 1.003 0 01-1.42 1.42L10 9.41 8.71 10.7c-.18.19-.43.3-.71.3a1.003 1.003 0 01-.71-1.71L8.59 8l-1.3-1.29a1.003 1.003 0 011.42-1.42L10 6.59l1.29-1.29c.18-.19.43-.3.71-.3a1.003 1.003 0 01.71 1.71L11.41 8l1.3 1.29z", - ], - "key-command": [ - "M12 9h-1V7h1c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3v1H7V4c0-1.66-1.34-3-3-3S1 2.34 1 4s1.34 3 3 3h1v2H4c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3v-1h2v1c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3zm0-6c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM4 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm5 4H7V7h2v2zm3 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", - ], - "key-control": [ - "M12.71 5.29l-4-4C8.53 1.11 8.28 1 8 1s-.53.11-.71.29l-4 4a1.003 1.003 0 001.42 1.42L8 3.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z", - ], - "key-delete": [ - "M15.71 7.29l-5-5A.997.997 0 0010 2H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h9c.28 0 .53-.11.71-.29l5-5c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71zm-7 2a1.003 1.003 0 01-1.42 1.42L6 9.41 4.71 10.7c-.18.19-.43.3-.71.3a1.003 1.003 0 01-.71-1.71L4.59 8l-1.3-1.29a1.003 1.003 0 011.42-1.42L6 6.59 7.29 5.3c.18-.19.43-.3.71-.3a1.003 1.003 0 01.71 1.71L7.41 8l1.3 1.29z", - ], - "key-enter": [ - "M14 2c-.55 0-1 .45-1 1v3c0 1.66-1.34 3-3 3H4.41L5.7 7.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L4.41 11H10c2.76 0 5-2.24 5-5V3c0-.55-.45-1-1-1z", - ], - "key-escape": [ - "M2 7c.55 0 1-.45 1-1V4.41L7.29 8.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L4.41 3H6c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm7-5.9v2A5 5 0 113.1 9h-2c.49 3.39 3.38 6 6.9 6 3.87 0 7-3.13 7-7 0-3.52-2.61-6.41-6-6.9z", - ], - "key-option": [ - "M11 4h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zm4 8h-3.43L5.86 2.49h-.02A.975.975 0 005 2H1c-.55 0-1 .45-1 1s.45 1 1 1h3.43l5.71 9.51.01-.01c.18.3.49.5.85.5h4c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "key-shift": [ - "M13.71 7.29l-5-5C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-5 5A1.003 1.003 0 003 9h2v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V9h2a1.003 1.003 0 00.71-1.71z", - ], - "key-tab": [ - "M15 10H4.41L5.7 8.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L2 9.59V8c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1s1-.45 1-1v-1.59l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L4.41 12H15c.55 0 1-.45 1-1s-.45-1-1-1zm0-9c-.55 0-1 .45-1 1v1.59L11.71 1.3A.965.965 0 0011 1a1.003 1.003 0 00-.71 1.71L11.59 4H1c-.55 0-1 .45-1 1s.45 1 1 1h10.59L10.3 7.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L14 6.41V8c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1z", - ], - "known-vehicle": [ - "M15 3a.997.997 0 00-.707.293L12 5.586l-1.293-1.293a1 1 0 10-1.414 1.414l2 2a.997.997 0 001.414 0l3-3A1 1 0 0015 3zm-.879 6.121l-.007-.007c-.313.309-.69.552-1.114.702V10h-.998H12h-1v-.184c-.424-.15-.8-.395-1.112-.704l-.01.01-2-2 .012-.012A2.978 2.978 0 017.184 6H3c-.176 0-.06-.824 0-1l.73-1.63C3.79 3.192 3.823 3 4 3H7.78C8.328 2.39 9.115 2 10 2c.768 0 1.461.293 1.987.77l.844-.844c-.238-.244-.524-.442-.794-.524C12.037 1.402 10.72 1 8 1c-2.72 0-4.037.402-4.037.402-.508.155-1.078.711-1.268 1.237l-.763 2.117H.88c-.484 0-.88.423-.88.939s.396.939.88.939h.375L1 7c-.034.685 0 1.436 0 2v5c0 .657.384 1 1 1s1-.343 1-1v-1h10v1c0 .657.384 1 1 1s1-.343 1-1V9l-.003-.754-.876.875zM5.001 10H3V8h2v2z", - ], - "lab-test": [ - "M11 1a1 1 0 010 2v3l3 7v1.25a.75.75 0 01-.75.75H2.75a.75.75 0 01-.75-.75V13l3-7V3a1 1 0 110-2h6zM9 3H7v3l-1.714 4h5.428L9 6V3z", - ], - label: [ - "M11 2H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V7l-5-5zm3 10H2V4h8v2H3v1h7v1h4v4zm-3-5V4l3 3h-3zm-8 3h10V9H3v1z", - ], - layer: [ - "M16 8c0-.37-.21-.68-.51-.85l.01-.01-7-4-.01.01C8.34 3.06 8.18 3 8 3s-.34.06-.49.15l-.01-.02-7 4 .01.01C.21 7.32 0 7.63 0 8s.21.68.51.85l-.01.01 7 4 .01-.01c.15.09.31.15.49.15s.34-.06.49-.15l.01.01 7-4-.01-.01c.3-.17.51-.48.51-.85z", - ], - "layer-outline": [ - "M7.504 3.132l-7 4a1 1 0 000 1.736l7 4a1 1 0 00.992 0l7-4a1 1 0 000-1.736l-7-4a1 1 0 00-.992 0zM8 5.152L12.983 8 8 10.847 3.016 8 8 5.152z", - ], - layers: [ - "M.55 4.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5a.998.998 0 00-.06-1.81L8.4.08a1.006 1.006 0 00-.79 0l-6.99 3a.992.992 0 00-.07 1.81zM15 10c-.16 0-.31.04-.45.11L8 13.38 1.45 10.1c-.14-.06-.29-.1-.45-.1-.55 0-1 .45-1 1 0 .39.23.73.55.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5c.32-.16.55-.5.55-.89 0-.55-.45-1-1-1zm0-3.5c-.16 0-.31.04-.45.11L8 9.88 1.45 6.61A.997.997 0 001 6.5c-.55 0-1 .45-1 1 0 .39.23.73.55.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5c.32-.16.55-.5.55-.89 0-.55-.45-1-1-1z", - ], - layout: [ - "M14 4c-1.1 0-2 .9-2 2 0 .47.17.9.44 1.24l-.68.91A1.996 1.996 0 009.07 9.5H7.93C7.71 8.64 6.93 8 6 8c-.47 0-.9.17-1.24.44l-.91-.68c.1-.23.15-.49.15-.76 0-.37-.11-.71-.28-1.01l2.27-2.27c.3.17.64.28 1.01.28 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .37.11.71.28 1.01L3.01 5.28C2.71 5.11 2.37 5 2 5 .9 5 0 5.9 0 7s.9 2 2 2c.47 0 .9-.17 1.24-.44l.91.68c-.1.23-.15.49-.15.76 0 .37.11.71.28 1.01l-1.27 1.27C2.71 12.11 2.37 12 2 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2c0-.37-.11-.71-.28-1.01l1.27-1.27c.3.17.64.28 1.01.28.93 0 1.71-.64 1.93-1.5h1.14c.22.86 1 1.5 1.93 1.5 1.1 0 2-.9 2-2 0-.47-.17-.9-.44-1.24l.68-.91c.23.1.49.15.76.15 1.1 0 2-.9 2-2s-.9-2-2-2z", - ], - "layout-auto": [ - "M14 9.5c-.56 0-1.06.23-1.42.59L8.99 8l3.59-2.09A2.002 2.002 0 0016 4.5c0-1.1-.9-2-2-2s-2 .9-2 2c0 .19.03.37.08.54L8.5 7.13v-3.2c.86-.22 1.5-1 1.5-1.93 0-1.1-.9-2-2-2S6 .9 6 2c0 .93.64 1.71 1.5 1.93v3.2L3.92 5.04c.05-.17.08-.35.08-.54 0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2c.56 0 1.06-.23 1.42-.59L7.01 8l-3.59 2.09A2.002 2.002 0 000 11.5c0 1.1.9 2 2 2s2-.9 2-2c0-.19-.03-.37-.08-.54L7.5 8.87v3.2c-.86.22-1.5 1-1.5 1.93 0 1.1.9 2 2 2s2-.9 2-2c0-.93-.64-1.71-1.5-1.93v-3.2l3.58 2.09c-.05.17-.08.35-.08.54 0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2z", - ], - "layout-balloon": [ - "M14 11c-.2 0-.38.04-.56.09L12.42 9.4c.36-.36.58-.85.58-1.4 0-.55-.22-1.04-.58-1.4l1.01-1.69c.19.05.37.09.57.09 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .55.22 1.04.58 1.4l-1.01 1.69C11.38 6.04 11.2 6 11 6c-.93 0-1.71.64-1.93 1.5H6.93C6.71 6.64 5.93 6 5 6c-.2 0-.38.04-.56.09L3.42 4.4C3.78 4.04 4 3.55 4 3c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2c.2 0 .38-.04.56-.09L3.58 6.6C3.22 6.96 3 7.45 3 8c0 .55.22 1.04.58 1.4l-1.01 1.69C2.38 11.04 2.2 11 2 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2c0-.55-.22-1.04-.58-1.4l1.01-1.69c.19.05.37.09.57.09.93 0 1.71-.64 1.93-1.5h2.14c.22.86 1 1.5 1.93 1.5.2 0 .38-.04.56-.09l1.01 1.69c-.35.36-.57.85-.57 1.4 0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2z", - ], - "layout-circle": [ - "M14.16 6.02c-.12-.36-.26-.7-.43-1.03.17-.29.27-.63.27-.99 0-1.1-.9-2-2-2-.36 0-.7.1-.99.27-.33-.17-.67-.31-1.03-.43A1.987 1.987 0 008 0C6.95 0 6.1.81 6.02 1.84c-.36.12-.7.26-1.03.43C4.7 2.1 4.36 2 4 2c-1.1 0-2 .9-2 2 0 .36.1.7.27.99-.17.33-.31.67-.43 1.03C.81 6.1 0 6.95 0 8c0 1.05.81 1.9 1.84 1.98.12.36.26.7.43 1.03-.17.29-.27.63-.27.99 0 1.1.9 2 2 2 .36 0 .7-.1.99-.27.33.17.67.32 1.03.43C6.1 15.19 6.95 16 8 16c1.05 0 1.9-.81 1.98-1.84.36-.12.7-.26 1.03-.43.29.17.63.27.99.27 1.1 0 2-.9 2-2 0-.36-.1-.7-.27-.99.17-.33.31-.67.43-1.03C15.19 9.9 16 9.05 16 8c0-1.05-.81-1.9-1.84-1.98zm-.99 3.79c-.05.16-.11.31-.17.46-.3-.17-.64-.27-1-.27-1.1 0-2 .9-2 2 0 .36.1.7.27 1-.15.07-.3.12-.46.17C9.5 12.48 8.81 12 8 12s-1.5.48-1.81 1.17c-.16-.06-.32-.11-.46-.17.17-.3.27-.64.27-1 0-1.1-.9-2-2-2-.36 0-.7.1-1 .27-.07-.15-.12-.3-.17-.46C3.52 9.5 4 8.81 4 8s-.48-1.5-1.17-1.81c.06-.16.11-.32.17-.46.3.17.64.27 1 .27 1.1 0 2-.9 2-2 0-.36-.1-.7-.27-1 .15-.07.3-.12.46-.17C6.5 3.52 7.19 4 8 4s1.5-.48 1.81-1.17c.16.06.32.11.46.17-.17.3-.27.64-.27 1 0 1.1.9 2 2 2 .36 0 .7-.1 1-.27.07.15.12.3.17.46C12.48 6.5 12 7.19 12 8s.48 1.5 1.17 1.81z", - ], - "layout-grid": [ - "M2 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6C.9 6 0 6.9 0 8s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM8 0C6.9 0 6 .9 6 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM8 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", - ], - "layout-group-by": [ - "M2 6C.9 6 0 6.9 0 8s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM2 1C.9 1 0 1.9 0 3s.9 2 2 2 2-.9 2-2-.9-2-2-2zm7 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm5 3c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", - ], - "layout-hierarchy": [ - "M14.5 12.07V9.93c.86-.22 1.5-1 1.5-1.93 0-1.1-.9-2-2-2-.93 0-1.71.64-1.93 1.5H9.93c-.18-.7-.73-1.25-1.43-1.43V3.93c.86-.22 1.5-1 1.5-1.93 0-1.1-.9-2-2-2S6 .9 6 2c0 .93.64 1.71 1.5 1.93v2.14c-.7.18-1.25.73-1.43 1.43H3.93C3.71 6.64 2.93 6 2 6 .9 6 0 6.9 0 8c0 .93.64 1.71 1.5 1.93v2.14c-.86.22-1.5 1-1.5 1.93 0 1.1.9 2 2 2s2-.9 2-2c0-.93-.64-1.71-1.5-1.93V9.93c.7-.18 1.25-.73 1.43-1.43h2.14c.18.7.73 1.25 1.43 1.43v2.14c-.86.22-1.5 1-1.5 1.93 0 1.1.9 2 2 2s2-.9 2-2c0-.93-.64-1.71-1.5-1.93V9.93c.7-.18 1.25-.73 1.43-1.43h2.14c.18.7.73 1.25 1.43 1.43v2.14c-.86.22-1.5 1-1.5 1.93 0 1.1.9 2 2 2s2-.9 2-2c0-.93-.64-1.71-1.5-1.93z", - ], - "layout-linear": [ - "M14 6c-.93 0-1.71.64-1.93 1.5H9.93C9.71 6.64 8.93 6 8 6s-1.71.64-1.93 1.5H3.93C3.71 6.64 2.93 6 2 6 .9 6 0 6.9 0 8s.9 2 2 2c.93 0 1.71-.64 1.93-1.5h2.13C6.29 9.36 7.07 10 8 10s1.71-.64 1.93-1.5h2.13c.22.86 1 1.5 1.93 1.5 1.1 0 2-.9 2-2C16 6.9 15.1 6 14 6z", - ], - "layout-skew-grid": [ - "M2 6C.9 6 0 6.9 0 8s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-2c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM2 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM2 0C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6-3c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM8 3c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", - ], - "layout-sorted-clusters": [ - "M2 6C.9 6 0 6.9 0 8s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM2 0C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM8 9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", - ], - learning: [ - "M8.441 1.104a.985.985 0 00-.882 0L.365 5c-.487.253-.487.747 0 1L7.56 9.896a.985.985 0 00.882 0L15.635 6c.487-.253.487-.747 0-1L8.44 1.104z", - "M14 5.5l.016 4.514c.002.548.447.99.994.99a.99.99 0 00.99-.99V5.5h-2zM3.371 9.047l4.387 2.432a.5.5 0 00.485 0l4.39-2.432a.25.25 0 01.371.218v2.955a.25.25 0 01-.134.222l-4.635 2.436a.5.5 0 01-.466 0l-4.635-2.436A.25.25 0 013 12.22V9.265a.25.25 0 01.371-.218z", - ], - "left-join": [ - "M6.6 3.3C6.1 3.1 5.6 3 5 3 2.2 3 0 5.2 0 8s2.2 5 5 5c.6 0 1.1-.1 1.6-.3C5.3 11.6 4.5 9.9 4.5 8s.8-3.6 2.1-4.7zM8 4c-1.2.9-2 2.4-2 4s.8 3.1 2 4c1.2-.9 2-2.3 2-4s-.8-3.1-2-4zm3-1c2.8 0 5 2.2 5 5s-2.2 5-5 5c-.6 0-1.1-.1-1.6-.3 1.3-1.1 2.1-2.9 2.1-4.7s-.8-3.5-2.1-4.7c.5-.2 1-.3 1.6-.3zm.35 1.02c.73 1.15 1.14 2.52 1.14 3.98s-.42 2.83-1.14 3.98c2.04-.18 3.64-1.9 3.64-3.98s-1.6-3.8-3.64-3.98z", - ], - "less-than": [ - "M13.287 5.958a1 1 0 00-.574-1.916l-10 3c-.95.285-.95 1.631 0 1.916l10 3a1 1 0 00.574-1.916L6.48 8l6.807-2.042z", - ], - "less-than-or-equal-to": [ - "M13.287 3.958a1 1 0 00-.575-1.916l-10 3c-.95.285-.95 1.63 0 1.916l10 3a1 1 0 00.575-1.916L6.48 6l6.807-2.042zM13 12H3a1 1 0 000 2h10a1 1 0 000-2z", - ], - lifesaver: [ - "M9.405 11.746C8.968 11.91 8.495 12 8 12c-.494 0-.968-.09-1.405-.254l-.702 1.873C6.548 13.865 7.258 14 8 14c.742 0 1.452-.135 2.107-.38l-.702-1.874zm2.341-2.341l1.873.702C13.865 9.452 14 8.742 14 8c0-.742-.135-1.452-.38-2.107l-1.874.702c.164.437.254.91.254 1.405 0 .494-.09.968-.254 1.405zM9.405 4.254l.702-1.873A5.987 5.987 0 008 2c-.742 0-1.452.135-2.107.38l.702 1.874C7.032 4.09 7.505 4 8 4c.494 0 .968.09 1.405.254zM4.254 6.595L2.38 5.893A5.987 5.987 0 002 8c0 .742.135 1.452.38 2.107l1.874-.702A3.991 3.991 0 014 8c0-.494.09-.968.254-1.405zM8 16A8 8 0 118 0a8 8 0 010 16zm0-6a2 2 0 100-4 2 2 0 000 4z", - ], - lightbulb: [ - "M9.01 14h-2c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1-.45 1-1s-.44-1-1-1zm1-3h-4c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.44-1-1-1zm-2-11C5.26 0 3.03 1.95 3.03 4.35c0 2.37 1.63 2.64 1.94 5.22 0 .24.22.44.5.44h5.09c.28 0 .5-.19.5-.44C11.37 6.99 13 6.72 13 4.35 13 1.95 10.77 0 8.01 0z", - ], - lightning: [ - "M7 9H5a1 1 0 01-1-1L4.89.876A1 1 0 015.884 0h4.27a.847.847 0 01.793 1.144L9.125 6h2.05a.825.825 0 01.754 1.16L8.16 15.64A.606.606 0 017 15.394V9z", - ], - link: [ - "M4.99 11.99c.28 0 .53-.11.71-.29l6-6a1.003 1.003 0 00-1.42-1.42l-6 6a1.003 1.003 0 00.71 1.71zm3.85-2.02L6.4 12.41l-1 1-.01-.01c-.36.36-.85.6-1.4.6-1.1 0-2-.9-2-2 0-.55.24-1.04.6-1.4l-.01-.01 1-1 2.44-2.44c-.33-.1-.67-.16-1.03-.16-1.1 0-2.09.46-2.81 1.19l-.02-.02-1 1 .02.02c-.73.72-1.19 1.71-1.19 2.81 0 2.21 1.79 4 4 4 1.1 0 2.09-.46 2.81-1.19l.02.02 1-1-.02-.02c.73-.72 1.19-1.71 1.19-2.81 0-.35-.06-.69-.15-1.02zm7.15-5.98c0-2.21-1.79-4-4-4-1.1 0-2.09.46-2.81 1.19l-.02-.02-1 1 .02.02c-.72.72-1.19 1.71-1.19 2.81 0 .36.06.69.15 1.02l2.44-2.44 1-1 .01.01c.36-.36.85-.6 1.4-.6 1.1 0 2 .9 2 2 0 .55-.24 1.04-.6 1.4l.01.01-1 1-2.43 2.45c.33.09.67.15 1.02.15 1.1 0 2.09-.46 2.81-1.19l.02.02 1-1-.02-.02a3.92 3.92 0 001.19-2.81z", - ], - list: [ - "M1 3h14c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm14 10H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "list-columns": [ - "M6 1c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1s.45-1 1-1h5zm0 4c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1s.45-1 1-1h5zm0 4c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1s.45-1 1-1h5zm0 4c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1s.45-1 1-1h5zm9-12c.55 0 1 .45 1 1s-.45 1-1 1h-5c-.55 0-1-.45-1-1s.45-1 1-1h5zm0 4c.55 0 1 .45 1 1s-.45 1-1 1h-5c-.55 0-1-.45-1-1s.45-1 1-1h5zm0 4c.55 0 1 .45 1 1s-.45 1-1 1h-5c-.55 0-1-.45-1-1s.45-1 1-1h5zm0 4c.55 0 1 .45 1 1s-.45 1-1 1h-5c-.55 0-1-.45-1-1s.45-1 1-1h5z", - ], - "list-detail-view": [ - "M6 9H1c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm0 4H1c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm9-12h-5c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM6 5H1c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H1c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - locate: [ - "M15 7h-.09A6.98 6.98 0 009 1.1V1c0-.55-.45-1-1-1S7 .45 7 1v.09A6.98 6.98 0 001.1 7H1c-.55 0-1 .45-1 1s.45 1 1 1h.1A6.969 6.969 0 007 14.91V15c0 .55.45 1 1 1s1-.45 1-1v-.09A6.98 6.98 0 0014.9 9h.1c.55 0 1-.45 1-1s-.45-1-1-1zm-6.02 5.9c-.05-.5-.46-.9-.98-.9s-.93.4-.98.9A5.017 5.017 0 013.1 8.98c.5-.05.9-.46.9-.98s-.4-.93-.9-.98A5.017 5.017 0 017.02 3.1c.05.5.46.9.98.9s.93-.4.98-.9c1.97.39 3.52 1.95 3.92 3.92-.5.05-.9.46-.9.98s.4.93.9.98a5.017 5.017 0 01-3.92 3.92zM8 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", - ], - lock: [ - "M13.96 7H12V3.95C12 1.77 10.21 0 8 0S4 1.77 4 3.95V7H1.96c-.55 0-.96.35-.96.9v6.91c0 .54.41 1.19.96 1.19h12c.55 0 1.04-.65 1.04-1.19V7.9c0-.55-.49-.9-1.04-.9zM6 7V3.95c0-1.09.9-1.97 2-1.97s2 .88 2 1.97V7H6z", - ], - "log-in": [ - "M11 8c0-.28-.11-.53-.29-.71l-3-3a1.003 1.003 0 00-1.42 1.42L7.59 7H1c-.55 0-1 .45-1 1s.45 1 1 1h6.59L6.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71zm4-8H9c-.55 0-1 .45-1 1s.45 1 1 1h5v12H9c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - "log-out": [ - "M7 14H2V2h5c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm8.71-6.71l-3-3a1.003 1.003 0 00-1.42 1.42L12.59 7H6c-.55 0-1 .45-1 1s.45 1 1 1h6.59l-1.29 1.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z", - ], - manual: [ - "M15.99 1.13c-.02-.41-.33-.77-.78-.87C12.26-.36 9.84.13 8 1.7 6.16.13 3.74-.36.78.26.33.35.03.72.01 1.13H0v12c0 .08 0 .17.02.26.12.51.65.82 1.19.71 2.63-.55 4.59-.04 6.01 1.57.02.03.06.04.08.06.02.02.03.04.05.06.04.03.09.04.13.07.05.03.09.05.14.07.11.04.23.07.35.07h.04c.12 0 .24-.03.35-.07.05-.02.09-.05.14-.07.04-.02.09-.04.13-.07.02-.02.03-.04.05-.06.03-.02.06-.03.08-.06 1.42-1.6 3.39-2.12 6.01-1.57.54.11 1.07-.21 1.19-.71.04-.09.04-.18.04-.26l-.01-12zM7 12.99c-1.4-.83-3.07-1.14-5-.93V1.96c2.11-.28 3.75.2 5 1.46v9.57zm7-.92c-1.93-.21-3.6.1-5 .93V3.42c1.25-1.26 2.89-1.74 5-1.46v10.11z", - ], - "manually-entered-data": [ - "M1 8h3.76l2-2H1c-.55 0-1 .45-1 1s.45 1 1 1zm14.49-4.01c.31-.32.51-.76.51-1.24C16 1.78 15.22 1 14.25 1c-.48 0-.92.2-1.24.51l-1.44 1.44 2.47 2.47 1.45-1.43zM1 4h7.76l2-2H1c-.55 0-1 .45-1 1s.45 1 1 1zm0 6c-.55 0-1 .45-1 1 0 .48.35.86.8.96L2.76 10H1zm9.95-6.43l-6.69 6.69 2.47 2.47 6.69-6.69-2.47-2.47zm4.25 2.47L13.24 8H15c.55 0 1-.45 1-1 0-.48-.35-.86-.8-.96zM2 15l3.86-1.39-2.46-2.44L2 15zm13-5h-3.76l-2 2H15c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "many-to-many": [ - "M3 3a1 1 0 100 2 1 1 0 000-2zm3 1c0 .047-.001.094-.003.14.255.081.538.209.832.41.406.28.8.676 1.171 1.225.37-.549.765-.945 1.171-1.224a3.14 3.14 0 01.832-.411 3 3 0 11.77 1.87 1.038 1.038 0 00-.47.19c-.291.2-.752.672-1.227 1.8.475 1.128.936 1.6 1.227 1.8.183.126.336.173.47.19a3 3 0 11-.77 1.87 3.141 3.141 0 01-.832-.41c-.406-.28-.8-.676-1.171-1.225-.37.549-.765.945-1.171 1.224-.294.202-.577.33-.832.411a3 3 0 11-.77-1.87c.134-.017.287-.064.47-.19.291-.2.752-.672 1.227-1.8-.475-1.128-.936-1.6-1.227-1.8a1.038 1.038 0 00-.47-.19A3 3 0 116 4zm6 0a1 1 0 112 0 1 1 0 01-2 0zm-9 7a1 1 0 100 2 1 1 0 000-2zm9 1a1 1 0 112 0 1 1 0 01-2 0z", - ], - "many-to-one": [ - "M3 2a1 1 0 100 2 1 1 0 000-2zm0-2c1.385 0 2.551.94 2.896 2.215.168.044.34.096.51.158 1.076.394 2.237 1.242 2.575 2.93.161.809.664 1.211 1.293 1.443a3 3 0 110 2.508c-.629.232-1.132.634-1.293 1.442-.338 1.69-1.499 2.537-2.575 2.93a5.436 5.436 0 01-.51.159A3.001 3.001 0 010 13a3 3 0 015.726-1.254c.629-.232 1.132-.634 1.293-1.442.216-1.076.765-1.81 1.413-2.304-.648-.493-1.197-1.228-1.413-2.304-.161-.808-.664-1.21-1.293-1.442A3 3 0 113 0zm1 13a1 1 0 10-2 0 1 1 0 002 0zm8-5a1 1 0 102 0 1 1 0 00-2 0z", - ], - map: [ - "M15.55 3.17l-4.49-3A.975.975 0 009.99.15L5.53 2.82 1.56.17A1.003 1.003 0 000 1v11c0 .35.18.65.45.83l4.49 3a.975.975 0 001.07.02l4.46-2.67 3.97 2.65A1.003 1.003 0 0016 15V4c0-.35-.18-.65-.45-.83zM5 13.46l-3-2v-8.6l2.94 1.96c.02.02.04.03.06.04v8.6zm5-2.32s-.01 0-.01.01L6 13.53V4.86s.01 0 .01-.01L10 2.47v8.67zm4 1.99l-2.94-1.96c-.02-.01-.04-.02-.05-.03v-8.6l3 2v8.59z", - ], - "map-create": [ - "M14 6.82v6.32l-2.94-1.96c-.02-.01-.04-.02-.05-.03V6.22c-.08-.07-.15-.16-.22-.24-.28-.02-.54-.08-.79-.16v5.32s-.01 0-.01.01L6 13.53V4.86s.01 0 .01-.01l2.05-1.23C8.02 3.42 8 3.21 8 3c0-.98.47-1.84 1.2-2.39l-3.67 2.2L1.56.17A1.003 1.003 0 000 1v11c0 .35.18.65.45.83l4.49 3a.975.975 0 001.07.02l4.46-2.67 3.97 2.65A1.003 1.003 0 0016 15V5.82c-.25.09-.52.14-.8.16-.33.36-.73.67-1.2.84zm-9 6.64l-3-2v-8.6l2.94 1.96c.02.02.04.03.06.04v8.6zM11 4h1v1c0 .55.45 1 1 1s1-.45 1-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1h-1V1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1z", - ], - "map-marker": [ - "M8.46 0C5.42 0 2.95 2.39 2.95 5.33 2.95 8.28 8.46 16 8.46 16s5.51-7.72 5.51-10.67C13.96 2.39 11.5 0 8.46 0zm0 8a2.5 2.5 0 010-5 2.5 2.5 0 010 5z", - ], - maximize: [ - "M5.99 8.99c-.28 0-.53.11-.71.29l-3.29 3.29v-1.59c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H3.41L6.7 10.7a1.003 1.003 0 00-.71-1.71zm9-9h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.59l-3.3 3.3a.99.99 0 00-.29.7 1.003 1.003 0 001.71.71l3.29-3.29V5c0 .55.45 1 1 1s1-.45 1-1V1c0-.56-.45-1.01-1-1.01z", - ], - media: [ - "M11.99 6.99c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm3-5h-14c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-10c0-.55-.45-1-1-1zm-1 9l-5-3-1 2-3-4-3 5v-7h12v7z", - ], - menu: [ - "M1 4h14c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm14 8H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm0-5H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "menu-closed": [ - "M14.99 6.99h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm-12-2c-.28 0-.53.11-.71.29l-2 2a1.014 1.014 0 000 1.42l2 2a1.003 1.003 0 001.71-.71v-4c0-.55-.45-1-1-1zm3-1h9c.55 0 1-.45 1-1s-.45-1-1-1h-9c-.55 0-1 .45-1 1s.45 1 1 1zm9 8h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "menu-open": [ - "M9.99 11.99h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0-5h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0-5h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm5.71 5.3l-2-2a1.003 1.003 0 00-1.71.71v4a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71s-.11-.53-.29-.71z", - ], - "merge-columns": [ - "M5.71 5.29a1.003 1.003 0 00-1.42 1.42l.3.29H2V2h3v1.51c.52.06.99.29 1.34.65l.66.66V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-3.82l-.66.66c-.35.35-.82.59-1.34.65V14H2V9h2.59l-.3.29a1.003 1.003 0 001.42 1.42l2-2C7.89 8.53 8 8.28 8 8c0-.28-.11-.53-.29-.71l-2-2zM15 0h-5c-.55 0-1 .45-1 1v3.82l.66-.66c.35-.35.82-.59 1.34-.65V2h3v5h-2.59l.29-.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-2 2C8.11 7.47 8 7.72 8 8c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42l-.3-.29H14v5h-3v-1.51c-.52-.06-.99-.29-1.34-.65L9 11.18V15c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - "merge-links": [ - "M8 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6 3c-.93 0-1.71.64-1.93 1.5H11V3c0-1.66-1.34-3-3-3S5 1.34 5 3v4.5H3.93C3.71 6.64 2.93 6 2 6 .9 6 0 6.9 0 8s.9 2 2 2c.93 0 1.71-.64 1.93-1.5H5V13c0 1.66 1.34 3 3 3s3-1.34 3-3V8.5h1.07c.22.86 1 1.5 1.93 1.5 1.1 0 2-.9 2-2s-.9-2-2-2zm-4 7c0 1.1-.9 2-2 2s-2-.9-2-2V3c0-1.1.9-2 2-2s2 .9 2 2v10z", - ], - minimize: [ - "M15.99.99a1.003 1.003 0 00-1.71-.71l-3.29 3.29V1.99c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H12.4l3.3-3.29c.18-.18.29-.43.29-.71zm-10 8h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.59L.29 14.28a1.003 1.003 0 001.42 1.42L5 12.41V14c0 .55.45 1 1 1s1-.45 1-1v-4a1.02 1.02 0 00-1.01-1.01z", - ], - minus: [ - "M13 7H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "mobile-phone": [ - "M12 0H4c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM8 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3-3H5V3h6v9z", - ], - "mobile-video": [ - "M15 4c-.28 0-.53.11-.71.29L12 6.59V4c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V9.41l2.29 2.29c.18.19.43.3.71.3.55 0 1-.45 1-1V5c0-.55-.45-1-1-1z", - ], - modal: [ - "M15 1a1 1 0 011 1v12a1 1 0 01-1 1H1a1 1 0 01-1-1V2a1 1 0 011-1h14zm-1 4H2v8h12V5zm-3-3H9v2h2V2zm3 0h-2v2h2V2z", - ], - "modal-filled": [ - "M15 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm1 4H0V3h16v2zm-3-2h-2V1h2v2z", - ], - moon: [ - "M15 11.38A7.835 7.835 0 017.85 16C3.51 16 0 12.49 0 8.15 0 4.97 1.89 2.23 4.62 1c-.45.99-.7 2.08-.7 3.23a7.85 7.85 0 007.85 7.85c1.15 0 2.24-.25 3.23-.7z", - ], - more: [ - "M2 6.03a2 2 0 100 4 2 2 0 100-4zM14 6.03a2 2 0 100 4 2 2 0 100-4zM8 6.03a2 2 0 100 4 2 2 0 100-4z", - ], - mountain: [ - "M16 13H3l6-9h1l2 2h1l3 7zm-2.5-3.5l-1-2.5h-1l-2-2-3 4.5L9 8l1 1 1-1 2.5 1.5zM5.94 7l-4.122 6H0l5-6h.94z", - ], - move: [ - "M15.71 7.29l-2-2a1.003 1.003 0 00-1.42 1.42l.3.29H9V3.41l.29.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2C8.53.11 8.28 0 8 0s-.53.11-.71.29l-2 2a1.003 1.003 0 001.42 1.42l.29-.3V7H3.41l.29-.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-2 2C.11 7.47 0 7.72 0 8c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L3.41 9H7v3.59l-.29-.29A.965.965 0 006 12a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2a1.003 1.003 0 00-1.42-1.42l-.29.3V9h3.59l-.29.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z", - ], - mugshot: [ - "M15 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14h-.15c-.03-.09-.04-.16-.08-.25-.34-.79-2.01-1.31-3.12-1.8-1.11-.49-.96-.79-1-1.2-.01-.06-.01-.12-.01-.18.38-.34.69-.8.89-1.33 0 0 .01-.03.01-.04.04-.12.08-.24.11-.36.25-.05.4-.33.46-.59.06-.1.18-.36.15-.65-.04-.37-.19-.55-.35-.62v-.06c0-.48-.04-1.16-.13-1.61-.02-.12-.05-.25-.08-.37-.16-.55-.51-1.05-.96-1.39C9.26 3.19 8.6 3 8 3c-.59 0-1.26.19-1.73.55-.45.35-.8.84-.96 1.39-.04.13-.06.25-.08.38-.09.45-.13 1.13-.13 1.61v.06c-.18.06-.33.24-.37.62-.03.29.09.54.15.65.06.26.21.54.47.59.03.12.07.25.11.36 0 .01.01.02.01.02v.01c.21.54.53 1.01.92 1.35 0 .05-.01.11-.01.16-.04.41.08.7-1.03 1.2-1.11.49-2.77 1.01-3.12 1.8-.04.09-.05.16-.08.25H2V2h12v12z", - ], - "multi-select": [ - "M12 3.98H4c-.55 0-1 .45-1 1v1h8v5h1c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm3-3H7c-.55 0-1 .45-1 1v1h8v5h1c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm-6 6H1c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm-1 5H2v-3h6v3z", - ], - music: [ - "M15 0c-.07 0-.13.03-.19.04V.02l-10 2v.02C4.35 2.13 4 2.52 4 3v9.12c-.31-.07-.65-.12-1-.12-1.66 0-3 .9-3 2s1.34 2 3 2 3-.9 3-2V6.32l8-1.6v5.4c-.31-.07-.65-.12-1-.12-1.66 0-3 .9-3 2s1.34 2 3 2 3-.9 3-2V1c0-.55-.45-1-1-1z", - ], - nest: [ - "M2 2c.55 0 1 .45 1 1v3c0 1.66 1.34 3 3 3h5.59L10.3 7.71A.965.965 0 0110 7a1.003 1.003 0 011.71-.71l3 3c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-3 3a1.003 1.003 0 01-1.42-1.42l1.3-1.29H6c-2.76 0-5-2.24-5-5V3c0-.55.45-1 1-1z", - ], - "new-drawing": [ - "M14.9 11c.6 0 1 .5 1 1 0 .257-.073.44-.22.614l-.08.086-3 3c-.2.2-.4.3-.7.3-.5 0-1-.4-1-1 0-.257.073-.44.22-.614l.08-.086 3-3c.2-.2.4-.3.7-.3zM1.3.1l6.734 2.45a3.005 3.005 0 002.095 3.322 3.005 3.005 0 003.401 2.081L13.9 9.8v.2c0 .257-.073.44-.22.614l-.08.086-3 3c-.171.171-.343.27-.577.294L9.9 14h-.2l-5-1-.1-.01c-.231-.05-.45-.26-.56-.49L4 12.4l-4-11 .3-.3 5.8 5.8c-.1.2-.2.4-.2.6 0 .8.6 1.5 1.5 1.5s1.5-.7 1.5-1.5S8.2 6 7.4 6c-.16 0-.32.064-.48.14l-.12.06L1 .4l.3-.3zM13 0c.55 0 1 .45 1 1v1h1c.55 0 1 .45 1 1s-.45 1-1 1h-1v1c0 .503-.376.922-.861.99l-.013.002A.999.999 0 0113 6l.097-.006-.027.004a1 1 0 01-.037.001L13 6c-.55 0-1-.45-1-1V4h-1a.993.993 0 01-.855-.482A1 1 0 0110 3c0-.55.45-1 1-1h1V1c0-.55.45-1 1-1z", - ], - "new-grid-item": [ - "M6 0H1C.45 0 0 .45 0 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm5 14c0-.55-.45-1-1-1s-1 .45-1 1v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1s-.45-1-1-1zM6 9H1c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm9 4c-.55 0-1 .45-1 1-.55 0-1 .45-1 1s.45 1 1 1h1c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm-4-4h-1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1s1-.45 1-1c.55 0 1-.45 1-1s-.45-1-1-1zm4-9h-5c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm0 9h-1c-.55 0-1 .45-1 1s.45 1 1 1c0 .55.45 1 1 1s1-.45 1-1v-1c0-.55-.45-1-1-1z", - ], - "new-layer": [ - "M13.982 6.272l1.518.868-.01.01c.3.17.51.48.51.85s-.21.68-.51.85l.01.01-7 4-.01-.01A.94.94 0 018 13a.94.94 0 01-.49-.15l-.01.01-7-4 .01-.01A.977.977 0 010 8c0-.37.21-.68.51-.86L.5 7.13l7-4 .01.02A.94.94 0 018 3c.086 0 .168.014.246.038a2 2 0 105.736 3.234zM14 3c.55 0 1 .45 1 1s-.45 1-1 1h-1v1c0 .55-.45 1-1 1s-1-.45-1-1V5h-1c-.55 0-1-.45-1-1s.45-1 1-1h1V2c0-.55.45-1 1-1s1 .45 1 1v1h1z", - ], - "new-layers": [ - "M13 3h2a1 1 0 010 2h-2v2a1 1 0 01-2 0V5H9a1 1 0 110-2h2V1a1 1 0 012 0v2zm-3-1.983V2H9a2 2 0 100 4h1v1c0 .279.057.544.16.785l-1.71.855c-.14.07-.29.11-.45.11-.16 0-.31-.04-.45-.11l-7-3.5a.992.992 0 01.07-1.81l6.99-3a1.006 1.006 0 01.79 0l1.6.687zm.91 7.66a2 2 0 003.085-1.54l.555-.277c.14-.07.29-.11.45-.11.55 0 1 .45 1 1 0 .39-.23.73-.55.89l-7 3.5c-.14.07-.29.11-.45.11-.16 0-.31-.04-.45-.11l-7-3.5C.23 8.48 0 8.14 0 7.75c0-.55.45-1 1-1 .16 0 .31.04.45.11L8 10.13l2.91-1.453zM15 10.25c.55 0 1 .45 1 1 0 .39-.23.73-.55.89l-7 3.5c-.14.07-.29.11-.45.11-.16 0-.31-.04-.45-.11l-7-3.5c-.32-.16-.55-.5-.55-.89 0-.55.45-1 1-1 .16 0 .31.04.45.1L8 13.63l6.55-3.27c.14-.07.29-.11.45-.11z", - ], - "new-link": [ - "M15 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1V5h1c.55 0 1-.45 1-1s-.45-1-1-1zm-3.5 6a2.5 2.5 0 00-2.45 2h-4.1a2.5 2.5 0 100 1h4.1a2.5 2.5 0 102.45-3z", - ], - "new-object": [ - "M8 4c0 .6.4 1 1 1h2v2c0 .6.4 1 1 1s1-.4 1-1V5h2c.6 0 1-.4 1-1s-.4-1-1-1h-2V1c0-.6-.4-1-1-1s-1 .4-1 1v2H9c-.6 0-1 .5-1 1zm6.5 2.5V7c0 1.4-1.1 2.5-2.5 2.5S9.5 8.4 9.5 7v-.5H9C7.6 6.5 6.5 5.4 6.5 4S7.6 1.5 9 1.5h.5V1c0-.3.1-.6.1-.8C9.1.1 8.6 0 8 0 3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8c0-.6-.1-1.3-.2-1.9-.4.3-.8.4-1.3.4z", - ], - "new-person": [ - "M9.12 12.69c-1.17-.53-1.01-.85-1.05-1.29-.01-.06-.01-.12-.01-.19.4-.37.73-.87.94-1.44 0 0 .01-.03.01-.04.05-.14.09-.27.12-.4.27-.06.43-.36.49-.63.06-.11.19-.39.16-.7-.04-.41-.2-.6-.38-.68v-.07c0-.51-.05-1.25-.14-1.74-.02-.13-.05-.27-.09-.4-.17-.6-.53-1.14-1.01-1.52C7.66 3.2 6.96 3 6.33 3c-.62 0-1.33.2-1.82.59-.49.38-.85.92-1.02 1.52-.04.13-.07.26-.09.4-.09.49-.13 1.23-.13 1.74v.06c-.19.08-.35.27-.39.68-.03.31.1.59.16.7.06.28.22.59.5.64.03.14.07.27.11.4 0 .01.01.02.01.02v.01c.22.59.55 1.1.96 1.46 0 .06-.01.12-.01.17-.04.44.08.76-1.09 1.29-1.17.53-2.93 1.1-3.29 1.95-.35.87-.2 1.37-.2 1.37h12.6s.15-.5-.22-1.36c-.36-.85-2.12-1.42-3.29-1.95zM14.89 2h-1V1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "new-prescription": [ - "M9.82 11.66l2.48-2.87c.12-.2.13-.37.04-.53-.11-.19-.3-.26-.52-.26h-1.29c-.27 0-.49.13-.63.34L8.44 9.9 6.95 8a.482.482 0 00-.08-.1L5.82 6.55c.57-.24 1.04-.57 1.42-1.01.49-.57.74-1.27.74-2.08 0-.51-.1-.99-.32-1.42-.21-.43-.51-.8-.89-1.11A4.1 4.1 0 005.42.24C4.91.08 4.34 0 3.72 0H.61C.26 0 0 .23 0 .56v9.89c0 .33.26.55.61.55h.8c.36 0 .61-.23.61-.56V6.99H3.3l3.73 4.74-2.71 3.48c-.12.2-.13.37-.04.53.11.19.3.26.52.26h1.27c.27 0 .51-.12.64-.34l1.69-2.15 1.66 2.14c.12.21.34.35.62.35h1.43c.2 0 .39-.08.5-.25.12-.18.09-.38-.02-.55l-2.77-3.54zM4.18 5H1.99V2.02h2.19c.62 0 1.08.13 1.38.37.29.22.44.62.44 1.08 0 .45-.15.94-.44 1.17-.31.23-.76.36-1.38.36zM15 2h-1V1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1zM9.99 3.01c0 .02.01.04.01.06V2.95c0 .02-.01.04-.01.06z", - ], - "new-text-box": [ - "M5 6.5c0 .28.22.5.5.5H7v3.5c0 .28.22.5.5.5s.5-.22.5-.5V7h1.5c.28 0 .5-.22.5-.5S9.78 6 9.5 6h-4c-.28 0-.5.22-.5.5zM15 2h-1V1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1zm-2 5c-.55 0-1 .45-1 1v5H3V4h5c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h11c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1z", - ], - ninja: [ - "M16 5s-2.52 2.11-4.96 1.99C11.03 4.89 10.39.23 5 0c0 0 2.11 2.54 1.96 4.99C4.86 5.01.23 5.65 0 11c0 0 2.56-2.12 5.02-1.95.02 2.11.67 6.72 5.98 6.95 0 0-2.09-2.54-1.94-4.99 2.11-.02 6.71-.68 6.94-6.01zM8 9.5c-.83 0-1.5-.67-1.5-1.5S7.17 6.5 8 6.5s1.5.67 1.5 1.5S8.83 9.5 8 9.5z", - ], - "not-equal-to": [ - "M7.58 5l.44-2.196a1 1 0 011.96.392L9.62 5H13a1 1 0 010 2H9.22l-.4 2H13a1 1 0 010 2H8.42l-.44 2.196a1 1 0 01-1.96-.392L6.38 11H3a1 1 0 010-2h3.78l.4-2H3a1 1 0 110-2h4.58z", - ], - notifications: [ - "M8 16c1.1 0 2-.9 2-2H6c0 1.1.9 2 2 2zm6-5c-.55 0-1-.45-1-1V6c0-2.43-1.73-4.45-4.02-4.9 0-.04.02-.06.02-.1 0-.55-.45-1-1-1S7 .45 7 1c0 .04.02.06.02.1A4.992 4.992 0 003 6v4c0 .55-.45 1-1 1s-1 .45-1 1 .45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "notifications-snooze": [ - "M9 14c0 1.1-.9 2-2 2s-2-.9-2-2zM7 0c.404 0 .755.243.912.59L7.9.6c-.7.6-.9 1.36-.9 1.9 0 .8.267 1.433.8 1.9-.533.6-.795 1.222-.784 1.867l.004.358A2.8 2.8 0 009.82 9.4L12 9.399V10c0 .51.388.935.884.993L13 11c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1s.45-1 1-1 1-.45 1-1V6c0-2.43 1.73-4.45 4.02-4.9L6 1c0-.55.45-1 1-1z", - "M13 6.702a.632.632 0 00-.632-.632h-1.743l2.208-2.734A.75.75 0 0013 2.864v-.3A.565.565 0 0012.435 2H9.561a.561.561 0 100 1.123h1.814L9.221 5.795A1 1 0 009 6.423v.279c0 .349.283.631.632.631h2.736A.632.632 0 0013 6.702z", - ], - "notifications-updated": [ - "M8 16c1.1 0 2-.9 2-2H6c0 1.1.9 2 2 2zm3.399-13.667l-.413.412A2.99 2.99 0 009 1.99a3 3 0 00-3 2.99c0 .8.32 1.558.876 2.114l2.002 1.992A2.99 2.99 0 0013 9.184V10c0 .55.45 1 1 1s1 .45 1 1-.45 1-1 1H2c-.55 0-1-.45-1-1s.45-1 1-1 1-.45 1-1V6c0-2.43 1.73-4.45 4.02-4.9 0-.04-.02-.06-.02-.1 0-.55.45-1 1-1s1 .45 1 1c0 .04-.02.06-.02.1a4.97 4.97 0 012.419 1.233zM10.29 7.67l-2-1.99a.99.99 0 01-.29-.7 1 1 0 011-.99c.27 0 .52.11.7.29l1.29 1.29 3.28-3.28c.18-.18.42-.29.7-.29.55 0 1 .44 1 .99 0 .28-.11.52-.3.7l-3.98 3.98a.99.99 0 01-1.4 0z", - ], - "numbered-list": [ - "M2.76 7h1.26V0h-.94c-.04.21-.12.39-.25.54-.13.15-.29.27-.48.36-.18.09-.39.16-.62.2-.23.04-.46.06-.71.06v.9h1.74V7zm-.59 7.17c.18-.12.37-.25.58-.37a10.763 10.763 0 001.24-.83c.2-.16.37-.33.52-.51.15-.19.28-.39.37-.61.09-.22.14-.47.14-.74 0-.22-.04-.45-.12-.7-.08-.26-.21-.49-.4-.69-.18-.21-.43-.39-.72-.52-.3-.14-.68-.21-1.12-.21-.41 0-.77.07-1.08.2-.32.14-.58.32-.8.56-.22.23-.38.51-.49.84-.11.32-.16.67-.16 1.05h1.19c.01-.24.03-.47.08-.67.05-.21.11-.39.21-.54.09-.15.22-.27.38-.36.16-.09.35-.13.59-.13.26 0 .47.04.63.12.16.08.29.18.38.3.09.12.15.25.18.39s.05.27.05.4c-.01.27-.08.5-.22.71-.14.21-.32.4-.53.57-.22.18-.45.34-.71.49-.26.15-.51.31-.74.47-.5.31-.89.68-1.17 1.11-.3.41-.44.91-.45 1.48h5v-1H1.43c.05-.15.14-.29.27-.43.14-.13.29-.26.47-.38zM15.01 1.99h-7c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-1c0-.55-.44-1-1-1zm0 9h-7c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-1c0-.55-.44-1-1-1z", - ], - numerical: [ - "M2.79 4.61c-.13.17-.29.3-.48.41-.18.11-.39.18-.62.23-.23.04-.46.07-.71.07v1.03h1.74V12h1.26V4h-.94c-.04.23-.12.44-.25.61zm4.37 5.31c.18-.14.37-.28.58-.42l.63-.45c.21-.16.41-.33.61-.51s.37-.38.52-.59c.15-.21.28-.45.37-.7.09-.25.13-.54.13-.85 0-.25-.04-.52-.12-.8-.07-.29-.2-.55-.39-.79a2.18 2.18 0 00-.73-.6c-.29-.15-.66-.23-1.11-.23-.41 0-.77.08-1.08.23-.31.16-.58.37-.79.64-.22.27-.38.59-.49.96-.11.37-.16.77-.16 1.2h1.19c.01-.27.03-.53.08-.77.04-.24.11-.45.21-.62.09-.18.22-.32.38-.42.16-.1.35-.15.59-.15.26 0 .47.05.63.14.15.09.28.21.37.35.09.14.15.29.18.45.03.16.05.31.05.45-.01.31-.08.58-.22.82-.14.23-.32.45-.53.65-.22.21-.46.39-.71.57-.26.18-.51.36-.75.54-.5.36-.89.78-1.17 1.27-.28.49-.43 1.06-.44 1.71h5v-1.15H6.43c.05-.17.14-.33.27-.49.13-.15.29-.29.46-.44zm8.5-1.56c-.23-.35-.54-.57-.95-.65v-.02c.34-.13.6-.34.76-.63.16-.29.24-.63.24-1.02 0-.34-.06-.64-.19-.9s-.3-.47-.51-.64c-.21-.17-.45-.3-.72-.38-.27-.09-.54-.13-.82-.13-.36 0-.68.07-.96.2-.28.13-.53.32-.72.55-.2.23-.36.51-.47.83-.11.32-.18.66-.19 1.04h1.15c-.01-.2.01-.39.06-.58.05-.19.12-.36.22-.51.1-.15.22-.27.37-.36.15-.09.32-.13.53-.13.32 0 .59.1.79.3.21.2.31.46.31.79 0 .23-.05.43-.14.59-.09.16-.21.29-.35.38-.15.09-.32.16-.51.19-.19.04-.38.05-.57.04v.93c.23-.01.45 0 .67.02.22.02.42.08.59.17.18.09.32.23.43.4.11.18.16.41.16.71 0 .44-.13.78-.39 1.02s-.58.36-.97.36c-.45 0-.79-.16-1.02-.47-.23-.31-.33-.7-.32-1.17H11c.01.4.06.77.17 1.1.11.33.26.61.47.85.21.23.46.42.77.54.31.13.67.19 1.08.19.34 0 .66-.05.96-.16.3-.11.57-.27.8-.47.23-.2.41-.45.55-.74.13-.27.2-.6.2-.97 0-.5-.11-.92-.34-1.27z", - ], - office: [ - "M15 5h-3V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h3v-4h4v4h7c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM5 10H2V7h3v3zm0-5H2V2h3v3zm5 5H7V7h3v3zm0-5H7V2h3v3zm4 9h-2v-2h2v2zm0-4h-2V7h2v3z", - ], - offline: [ - "M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM6 14l1-5H4l6-7-1 5h3l-6 7z", - ], - "oil-field": [ - "M15 14h-1.35l-3.34-7.51 2.46-.95 1.45 3.21c.09.2.36.3.6.23.1-.03.18-.08.24-.15.05-.08 1.23-1.56.87-4.2-.11-.79-.52-4.62-3.26-4.62-.93 0-1.68.62-1.67 1.37 0 .14.03.28.09.42l.87 1.92L.64 8.07v.01A.98.98 0 000 9c0 .55.45 1 1 1 .13 0 .25-.03.36-.07v.01l1.04-.4L3.67 14H2c-.55 0-1 .45-1 1s.45 1 1 1h13c.55 0 1-.45 1-1s-.45-1-1-1zM4.27 8.81L7.14 7.7 5.2 12.08l-.93-3.27zM6.54 14L9 8.46 11.46 14H6.54z", - ], - "one-column": [ - "M11.99-.01h-3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-14c0-.55-.45-1-1-1zm-6 5c-.28 0-.53.11-.71.29l-2 2a1.014 1.014 0 000 1.42l2 2a1.003 1.003 0 001.71-.71v-4c0-.55-.45-1-1-1z", - ], - "one-to-many": [ - "M14 3a1 1 0 11-2 0 1 1 0 012 0zm-3.726 1.254a3 3 0 10-.17-2.039 5.467 5.467 0 00-.51.158c-1.076.394-2.237 1.242-2.575 2.93-.161.809-.664 1.211-1.293 1.443a3 3 0 100 2.508c.629.232 1.132.634 1.293 1.442.338 1.69 1.499 2.537 2.575 2.93.17.063.342.115.51.159a3.001 3.001 0 10.17-2.04c-.629-.231-1.132-.633-1.293-1.441C8.765 9.228 8.216 8.494 7.568 8c.648-.493 1.197-1.228 1.413-2.304.161-.808.664-1.21 1.293-1.442zM13 14a1 1 0 110-2 1 1 0 010 2zM4 8a1 1 0 10-2 0 1 1 0 002 0z", - ], - "one-to-one": [ - "M2 8a1 1 0 112 0 1 1 0 01-2 0zm3.83-1a3.001 3.001 0 100 2h4.34a3.001 3.001 0 100-2H5.83zM13 7a1 1 0 100 2 1 1 0 000-2z", - ], - outdated: [ - "M8 0c4.42 0 8 3.58 8 8 0 4.06-3.02 7.4-6.94 7.92-.02 0-.04.01-.06.01-.33.04-.66.07-1 .07-4.42 0-8-3.58-8-8 0-.55.45-1 1-1s1 .45 1 1c0 3.31 2.69 6 6 6 .71 0 1.37-.15 2-.38v.01c2.33-.82 4-3.02 4-5.63 0-3.31-2.69-6-6-6-1.78 0-3.36.78-4.46 2H5c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1s1 .45 1 1v1.74A7.95 7.95 0 018 0zm1 12H7v-2h2v2zm0-3H7V4h2v5z", - ], - "page-layout": [ - "M15 .95H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-12c0-.55-.45-1-1-1zm-9 12H2v-6h4v6zm8 0H7v-6h7v6zm0-7H2v-3h12v3z", - ], - "panel-stats": [ - "M10 4h3v1h-3zM10 6h3v1h-3zM10 8h3v1h-3zM10 10h3v1h-3z", - "M15 1H1c-.6 0-1 .4-1 1v11c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1zM8 12H2V3h6v9zm6 0H9V3h5v9z", - ], - "panel-table": [ - "M15 1H1c-.6 0-1 .4-1 1v11c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1zM8 9H6V7h2v2zm0-3H6V4h2v2zm-6 6V3h3v9H2zm4 0v-2h2v2H6zm8 0H9v-2h5v2zm0-3H9V7h5v2zm0-3H9V4h5v2z", - ], - paperclip: [ - "M14.68 2.31A4.54 4.54 0 0011.46.99c-1.15 0-2.31.44-3.19 1.32L.95 9.63c-.63.63-.95 1.46-.95 2.28a3.21 3.21 0 003.23 3.22c.83 0 1.66-.31 2.3-.95l7.31-7.32c.76-.77.76-1.98.01-2.73s-1.99-.76-2.75 0l-6.07 6.08c-.24.25-.24.65.01.9s.65.25.91.01l6.07-6.08c.25-.25.67-.25.91-.01.25.25.25.67 0 .92l-7.31 7.32c-.75.75-2.04.74-2.76.01-.75-.75-.73-2.02.01-2.76L9.2 3.21c1.24-1.24 3.35-1.26 4.58-.03 1.24 1.24 1.24 3.36 0 4.6l-7.12 7.13c-.24.25-.24.64.01.88.24.24.63.24.88.01v.01l7.13-7.13A4.41 4.41 0 0016 5.51c0-1.16-.44-2.32-1.32-3.2z", - ], - paragraph: [ - "M13 1H6C3.8 1 2 2.8 2 5s1.8 4 4 4v5c0 .6.4 1 1 1s1-.5 1-1V3h2v11c0 .6.4 1 1 1s1-.5 1-1V3h1c.5 0 1-.4 1-1s-.4-1-1-1z", - ], - path: [ - "M14.5 0h-13C.67 0 0 .67 0 1.5S.67 3 1.5 3H7v3H3.5C2.67 6 2 6.67 2 7.5S2.67 9 3.5 9H7v3H5.5c-.83 0-1.5.67-1.5 1.5S4.67 15 5.5 15h5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5H9V9h3.5c.83 0 1.5-.67 1.5-1.5S13.33 6 12.5 6H9V3h5.5c.83 0 1.5-.67 1.5-1.5S15.33 0 14.5 0z", - ], - "path-search": [ - "M15 14.62l-4-2.4V9.77c-.32.09-.66.15-1 .18v2.27l-4 2.4V8.71c-.38-.31-.72-.66-1-1.06v6.97l-4-2.4V8c.55 0 1-.45 1-1s-.45-1-1-1V1.38l3.15 1.89c.08-.34.18-.66.32-.97L.76.07v.01A.496.496 0 00.5 0C.22 0 0 .22 0 .5v12c0 .18.1.33.25.42v.01l5 3v-.01c.07.05.16.08.25.08s.18-.03.25-.08v.01l4.74-2.85 4.74 2.85v-.01c.09.05.18.08.27.08.28 0 .5-.22.5-.5v-3.78c-.3.17-.63.28-1 .28v2.62zM2 5c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm6-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm7.75-.92l-1.19-.72c.18.43.29.9.36 1.38l.08.04v3.39l1 1V3.5c0-.18-.1-.33-.25-.42zM10 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3.3 4.89c.44-.7.7-1.51.7-2.39C14 2.01 11.99 0 9.5 0S5 2.01 5 4.5 7.01 9 9.5 9c.88 0 1.69-.26 2.39-.7l2.41 2.41c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71l-2.41-2.4zM9.5 8C7.57 8 6 6.43 6 4.5S7.57 1 9.5 1 13 2.57 13 4.5 11.43 8 9.5 8z", - ], - pause: [ - "M6 3H4c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm6 0h-2c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - people: [ - "M13.69 13.98c-.05-.24-.14-.5-.25-.76-.36-.86-1.12-1.33-2.69-2-.14-.06-.59-.25-.6-.25-.21-.09-.36-.15-.5-.22.02-.1.02-.2.03-.31 0-.04.01-.08.01-.13-.07-.06-.13-.12-.19-.19.22-.32.4-.67.54-1.05.02-.06.02-.06.03-.1.29-.23.48-.57.59-.96.16-.33.25-.73.21-1.16-.03-.4-.16-.76-.37-1.03-.02-.53-.07-1.13-.15-1.54-.01-.06-.02-.12-.03-.19.23-.06.48-.09.72-.09.49 0 1.05.16 1.44.46.38.29.67.7.8 1.17.03.1.05.21.07.31.07.37.11.94.11 1.33v.05c.14.06.27.21.29.51.02.25-.07.45-.13.54-.05.21-.16.44-.38.48-.02.1-.05.2-.09.3 0 .01-.01.03-.01.03-.17.44-.43.83-.75 1.11v.14c.03.35-.09.59.83 1 .93.41 2.32.84 2.6 1.5.29.66.17 1.04.17 1.04h-2.3zm-1.17-.38c.37.86.22 1.36.22 1.36H.06s-.14-.5.22-1.36 2.13-1.43 3.31-1.96c1.17-.54 1.05-.86 1.09-1.3 0-.05.01-.11.01-.17-.41-.35-.75-.86-.97-1.45v-.01s-.01-.01-.01-.02c-.04-.12-.09-.26-.12-.39-.28-.05-.44-.36-.5-.64-.06-.12-.19-.39-.16-.71.04-.41.21-.6.39-.68v-.06c0-.51.05-1.26.14-1.74.02-.13.05-.27.09-.4.17-.6.54-1.13 1.02-1.51.5-.39 1.21-.6 1.84-.6s1.34.21 1.84.6c.48.38.85.91 1.02 1.52.04.13.07.27.09.4.09.48.14 1.22.14 1.73v.07c.18.08.34.27.37.67.03.32-.09.59-.16.71-.06.28-.21.58-.48.63-.03.13-.07.26-.12.39 0 .01-.01.04-.01.04-.22.58-.55 1.08-.95 1.45v.18c.04.45-.12.77 1.06 1.3 1.18.53 2.95 1.09 3.31 1.95z", - ], - percentage: [ - "M6 6V4c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h1c1.1 0 2-.9 2-2zM3.5 6c-.28 0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5s.5.22.5.5v1c0 .28-.22.5-.5.5zM13 8h-1c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h1c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2zm0 3.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5s.5.22.5.5v1zM12 3a1.003 1.003 0 00-1.87-.5l-5.99 9.98c-.09.15-.14.33-.14.52a1.003 1.003 0 001.87.5l5.99-9.98c.09-.15.14-.33.14-.52z", - ], - person: [ - "M15.68 14.32c-.46-1.05-2.68-1.75-4.16-2.4-1.48-.65-1.28-1.05-1.33-1.59-.01-.07-.01-.15-.01-.23.51-.45.92-1.07 1.19-1.78 0 0 .01-.04.02-.05.06-.15.11-.32.15-.48.34-.07.54-.44.61-.78.08-.14.23-.48.2-.87-.05-.5-.25-.73-.47-.82v-.09c0-.63-.06-1.55-.17-2.15A3.671 3.671 0 0010.32.72C9.68.25 8.79-.01 8-.01c-.79 0-1.68.25-2.31.73-.61.47-1.06 1.13-1.28 1.86-.05.17-.09.33-.11.5-.12.6-.17 1.51-.17 2.15v.08c-.24.09-.45.32-.5.83-.03.38.13.72.2.86.08.35.28.72.63.78.04.17.09.33.15.49 0 .01.01.02.01.03l.01.01c.27.72.7 1.35 1.22 1.8 0 .07-.01.14-.01.21-.05.54.1.94-1.37 1.59-1.48.65-3.7 1.35-4.16 2.4-.46 1.05-.27 1.67-.27 1.67h15.92c-.01.01.18-.61-.28-1.66z", - ], - phone: [ - "M15.9 12.41c-.06-.06-3.37-2-3.48-2.05a.794.794 0 00-.32-.08c-.15 0-.34.11-.57.32-.23.22-.94 1.19-1.15 1.4-.21.22-.38.32-.52.32-.07 0-.15-.02-.25-.06-.1-.04-1.16-.58-3.36-2.52-2.2-1.93-2.49-3.2-2.5-3.55 0-.14.11-.31.32-.52.22-.21.45-.41.7-.6.25-.19.49-.4.7-.62.22-.23.32-.42.32-.57 0-.11-.03-.21-.08-.32C5.66 3.46 3.66.15 3.59.08 3.44-.07 2.85 0 2.55.16.16 1.46-.03 3.2 0 3.89c.04.71.49 4.46 4.16 7.95C8.72 16.17 11.89 16 12.1 16c.69 0 2.82-.38 3.72-2.55.13-.32.25-.87.08-1.04z", - ], - "pie-chart": [ - "M7 1.08c-3.37.5-5.97 3.4-5.97 6.92 0 3.87 3.13 7 6.98 7 3.52 0 6.42-2.61 6.91-6H7V1.08z", - "M8 0v8h8c0-4.42-3.58-8-8-8z", - ], - pin: [ - "M9.41.92c-.51.51-.41 1.5.15 2.56L4.34 7.54C2.8 6.48 1.45 6.05.92 6.58l3.54 3.54-3.54 4.95 4.95-3.54 3.54 3.54c.53-.53.1-1.88-.96-3.42l4.06-5.22c1.06.56 2.04.66 2.55.15L9.41.92z", - ], - pivot: [ - "M4.57 7.02L.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4.27-4.27c-.58-.35-1.07-.84-1.41-1.42zM15 8c-.55 0-1 .45-1 1v.59l-2.57-2.57c-.34.58-.83 1.07-1.41 1.41L12.59 11H12c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-4-3c0-1.66-1.34-3-3-3S5 3.34 5 5s1.34 3 3 3 3-1.34 3-3zM8 6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", - ], - "pivot-table": [ - "M2 4H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm0-4H1C.45 0 0 .45 0 1v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm11.71 4.29C13.53 4.11 13.28 4 13 4s-.53.11-.71.29l-2 2a1.003 1.003 0 001.42 1.42l.29-.3V9c0 1.66-1.34 3-3 3H7.41l.29-.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-2 2c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42l-.3-.29H9c2.76 0 5-2.24 5-5V7.41l.29.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2zM15 0H5c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - play: [ - "M12 8c0-.35-.19-.64-.46-.82l.01-.02-6-4-.01.02A.969.969 0 005 3c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1 .21 0 .39-.08.54-.18l.01.02 6-4-.01-.02c.27-.18.46-.47.46-.82z", - ], - plus: [ - "M13 7H9V3c0-.55-.45-1-1-1s-1 .45-1 1v4H3c-.55 0-1 .45-1 1s.45 1 1 1h4v4c0 .55.45 1 1 1s1-.45 1-1V9h4c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "polygon-filter": [ - "M14 5c-.24 0-.47.05-.68.13L9.97 2.34c.01-.11.03-.22.03-.34 0-1.1-.9-2-2-2S6 .9 6 2c0 .04.01.08.01.12L2.88 4.21C2.61 4.08 2.32 4 2 4 .9 4 0 4.9 0 6c0 .74.4 1.38 1 1.72v4.55c-.6.35-1 .99-1 1.73 0 1.1.9 2 2 2 .74 0 1.38-.4 1.72-1h4.55c.35.6.98 1 1.72 1 1.1 0 2-.9 2-2 0-.37-.11-.7-.28-1L14 9c1.11-.01 2-.9 2-2s-.9-2-2-2zm-4.01 7c-.73 0-1.37.41-1.71 1H3.73c-.18-.3-.43-.55-.73-.72V7.72c.6-.34 1-.98 1-1.72 0-.04-.01-.08-.01-.12l3.13-2.09c.27.13.56.21.88.21.24 0 .47-.05.68-.13l3.35 2.79c-.01.11-.03.22-.03.34 0 .37.11.7.28 1l-2.29 4z", - ], - power: [ - "M8 8c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1S7 .45 7 1v6c0 .55.45 1 1 1zm3-5.32v2.34c1.21.91 2 2.35 2 3.98 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-1.63.79-3.06 2-3.98V2.68C2.64 3.81 1 6.21 1 9c0 3.87 3.13 7 7 7s7-3.13 7-7c0-2.79-1.64-5.19-4-6.32z", - ], - "predictive-analysis": [ - "M16 6.41c0-1.01-.49-1.94-1.29-2.49-.43-1.92-2.07-3.28-4-3.28-.46 0-.92.08-1.35.24C8.83.31 8.11 0 7.34 0c-.9 0-1.74.44-2.28 1.16-.12-.01-.24-.02-.36-.02-1.31 0-2.42.89-2.77 2.17C.78 3.72 0 4.84 0 6.13c0 .38.07.76.21 1.12C.07 7.6 0 7.98 0 8.36c0 1.11.58 2.11 1.51 2.63.54.56 1.27.87 2.03.87.49 0 .95-.12 1.37-.36a2.85 2.85 0 002.18 1.04c.52 0 1.03-.14 1.47-.42.49.39 1.07.65 1.69.73 1.04 1.15 1.84 2.63 1.84 2.64 0 0 .28.49.26.49.77 0 1.41-.16 1.32-1.04 0 .02-.73-2.31-.73-2.31.41-.21.75-.55.97-.98.9-.52 1.47-1.53 1.47-2.61 0-.24-.03-.48-.08-.71.45-.52.7-1.21.7-1.92zm-1.23 1.02l-.15-.16-.61-.67c-.27-.29-.54-.94-.58-1.39l-.1-1.01c-.05-.59-.94-.58-.91.11 0 .02.1 1.01.1 1.01.03.29.12.62.24.93-.06-.01-.12-.02-.18-.02 0 0-2.06-.1-2.05-.11-.58-.02-.71.97-.04 1l2.05.11c.42.02 1.04.3 1.29.58l.49.54.02.05c.08.21.12.44.12.66 0 .74-.41 1.41-1.07 1.75l-.16.08-.07.18c-.15.38-.48.66-.88.74l-.54.11.7 2.2c-.38-.61-.95-1.43-1.62-2.14l-.12-.13-.17-.01c-.41-.03-.8-.17-1.14-.38l1.36-1.18c.35-.31.83-.44.99-.39 0 0 .63.17.62.18.63.16.83-.74.23-.97l-.62-.18c-.55-.16-1.33.18-1.79.58l-1.53 1.33-.31.26c-.35.29-.75.44-1.2.44-.64 0-1.23-.33-1.58-.86V9.15c0-.4.17-.79.27-.85 0 0 .52-.34.51-.35.71-.53.18-1.23-.49-.89 0-.01-.52.35-.52.35-.26.15-.45.44-.58.77-.11-.11-.22-.2-.34-.28 0 0-1.53-1.01-1.53-1.02-.65-.45-1.2.51-.49.89 0-.01 1.51 1.02 1.51 1.02.37.24.62.78.62 1.09v.67c-.34.19-.63.29-.99.29-.54 0-1.05-.23-1.41-.63l-.05-.06-.07-.04c-.65-.34-1.05-1-1.05-1.73 0-.3.07-.6.2-.87l.12-.25L1.15 7c-.13-.27-.2-.56-.2-.87 0-.9.61-1.68 1.48-1.89l.31-.08.05-.34a1.926 1.926 0 012.38-1.58l.32.08.18-.31c.35-.6.99-.97 1.67-.97.44 0 .86.15 1.2.42l-.36.36v-.01l-.25.26c-.33.27-.74.42-.89.4 0 0-.67-.1-.67-.11-.67-.13-.87.86-.14 1.02.01 0 .67.11.67.11.02 0 .05 0 .07.01-.11.37-.15.77-.1 1.12 0 0 .17.99.15.99.11.52 1.06.36.93-.18 0-.01-.15-.99-.15-.99-.05-.37.12-.94.36-1.19l.39-.4c.05-.05.1-.09.15-.14l.74-.76c.4-.18.83-.27 1.27-.27 1.55 0 2.86 1.12 3.11 2.67l.04.25.21.12c.61.35.98 1 .98 1.7 0 .36-.1.7-.28 1.01z", - ], - prescription: [ - "M10.91 8.34c.14-.21.36-.34.63-.34h1.29c.22 0 .41.07.52.26.09.16.08.33-.04.53l-2.49 2.87 2.77 3.54c.12.17.14.37.02.55-.11.17-.3.25-.5.25h-1.44a.69.69 0 01-.61-.35L9.4 13.51l-1.69 2.15c-.13.21-.36.34-.63.34H5.8c-.22 0-.41-.07-.52-.26-.09-.16-.08-.33.04-.53l2.71-3.48L4.3 6.99H3.03v3.47c0 .33-.26.56-.62.56h-.8c-.35-.01-.61-.23-.61-.56V.56c0-.33.26-.56.62-.56h3.11c.62 0 1.19.08 1.7.24.51.16.96.39 1.34.69a3.194 3.194 0 011.21 2.53c0 .81-.25 1.5-.74 2.08-.37.44-.84.77-1.42 1.01L7.88 7.9c.04.04.07.08.08.1l1.49 1.9 1.46-1.56zM5.18 5c.62 0 1.08-.13 1.39-.37.29-.23.44-.71.44-1.16s-.15-.87-.44-1.1C6.26 2.12 5.8 2 5.18 2H2.99v3h2.19z", - ], - presentation: [ - "M15 1H9c0-.55-.45-1-1-1S7 .45 7 1H1c-.55 0-1 .45-1 1s.45 1 1 1v8c0 .55.45 1 1 1h3.59L3.3 14.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L7 13.41V15c0 .55.45 1 1 1s1-.45 1-1v-1.59l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L10.41 12H14c.55 0 1-.45 1-1V3c.55 0 1-.45 1-1s-.45-1-1-1zm-2 9H3V3h10v7z", - ], - print: [ - "M12 2.02c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v1h8v-1zm3 2H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h1v-3h12v3h1c.55 0 1-.45 1-1v-6c0-.56-.45-1-1-1zm-1 3h-2v-1h2v1zm-3 6H5v-3H3v4c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-4h-2v3z", - ], - projects: [ - "M14 3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v1h12V3zm-2-3H4c-.55 0-1 .45-1 1h10c0-.55-.45-1-1-1zm3 5H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-3 6c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V9h1v2h6V9h1v2z", - ], - properties: [ - "M2 6C.9 6 0 6.9 0 8s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-3h9c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm-4 9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm13-5H6c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0 6H6c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zM2 0C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", - ], - property: [ - "M3 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-.5-6.5a2.5 2.5 0 000 5 2.5 2.5 0 000-5zM7 3h8c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1zm8 10H7c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1zM3 0C1.9 0 1 .9 1 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 6H7c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1z", - ], - "publish-function": [ - "M12.16 3.76c.15-.11.3-.16.47-.16.06 0 .17.02.34.06.16.04.31.06.43.06a.58.58 0 00.6-.6c0-.19-.06-.33-.17-.44-.11-.11-.28-.16-.49-.16-.19 0-.37.04-.54.13-.17.09-.39.27-.65.55-.2.21-.48.58-.87 1.11a5.22 5.22 0 00-.78-1.79l-2.05.32-.04.21c.15-.03.28-.04.39-.04.2 0 .37.08.5.25.21.26.5 1.03.88 2.33-.29.36-.49.6-.6.71-.18.19-.33.31-.45.36-.09.04-.19.07-.3.07-.09 0-.23-.04-.42-.13a.904.904 0 00-.36-.09c-.2 0-.36.06-.49.18a.59.59 0 00-.19.46c0 .18.06.32.18.43.12.11.28.16.48.16.2 0 .38-.04.55-.12.17-.08.39-.24.65-.49s.62-.65 1.07-1.19c.18.52.33.89.46 1.13.13.24.28.4.44.51.17.1.37.16.62.16.24 0 .49-.08.74-.25.33-.21.66-.58 1.01-1.09l-.21-.11c-.23.31-.41.5-.52.57a.44.44 0 01-.26.07c-.12 0-.24-.07-.36-.21-.2-.24-.46-.91-.8-2 .29-.49.54-.81.74-.96zM6.37 5.83l.68-2.53h.83l.2-.64h-.84c.24-.91.56-1.59.96-2.01.24-.27.48-.4.71-.4.05 0 .08.01.11.04s.04.06.04.1c0 .04-.03.11-.1.21-.06.1-.1.2-.1.29 0 .13.05.24.15.33.1.09.23.14.39.14.17 0 .31-.06.42-.17.12-.12.18-.27.18-.46 0-.21-.08-.39-.25-.52C9.57.07 9.3 0 8.93 0c-.59 0-1.12.16-1.59.48-.48.32-.93.85-1.36 1.59-.15.26-.29.42-.42.49s-.35.11-.64.1l-.19.65h.81L4.35 7.68c-.2.72-.33 1.16-.4 1.33-.1.24-.26.45-.46.62a.48.48 0 01-.31.1c-.03 0-.06-.01-.08-.03l-.03-.03c0-.02.03-.06.09-.11.06-.06.09-.15.09-.26 0-.13-.05-.23-.14-.32-.1-.09-.23-.13-.41-.13-.21 0-.38.05-.51.16A.52.52 0 002 9.4c0 .16.08.3.23.42.16.12.4.18.74.18.53 0 .99-.13 1.4-.39.41-.26.76-.65 1.07-1.19.3-.53.61-1.39.93-2.59zm2.34 3.46A.997.997 0 008 9c-.28 0-.53.11-.71.29l-2 2a1.003 1.003 0 001.42 1.42l.29-.3V15c0 .55.45 1 1 1s1-.45 1-1v-2.59l.29.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2z", - ], - pulse: [ - "M15 8h-1.46l-1.7-2.55-.02.01A.984.984 0 0011 5c-.43 0-.79.27-.93.65h-.01l-1.69 4.51-1.38-8.32h-.02A.989.989 0 006 1c-.41 0-.77.25-.92.61L2.34 8H1c-.55 0-1 .45-1 1s.45 1 1 1h2c.41 0 .77-.25.92-.61l1.65-3.86 1.44 8.63h.02c.08.47.47.84.97.84.43 0 .79-.27.93-.65h.01l2.31-6.17.92 1.38.02-.01c.17.26.46.45.81.45h2c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - rain: [ - "M3.5 8a2.5 2.5 0 11.608-4.926 4.002 4.002 0 017.381-1.03A3 3 0 1112 8H3.501zM3 10a1 1 0 012 0v4a1 1 0 11-2 0v-4zm7-1a1 1 0 00-1 1v5a1 1 0 102 0v-5a1 1 0 00-1-1zm2 1a1 1 0 112 0v2a1 1 0 11-2 0v-2zM7 9a1 1 0 00-1 1v2a1 1 0 102 0v-2a1 1 0 00-1-1z", - ], - random: [ - "M11.48 4h1.11l-.29.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42l.3.29H11c-.32 0-.59.16-.77.38l-.01-.01L8.28 4.8l1.28 1.6L11.48 4zm2.23 6.29a1.003 1.003 0 00-1.42 1.42l.3.29h-1.11l-7.7-9.62h-.01A.996.996 0 003 2H1c-.55 0-1 .45-1 1s.45 1 1 1h1.52l7.7 9.62.01-.01c.18.23.45.39.77.39h1.59l-.29.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2zM2.52 12H1c-.55 0-1 .45-1 1s.45 1 1 1h2c.32 0 .59-.16.77-.38l.01.01 1.94-2.42L4.44 9.6 2.52 12z", - ], - record: ["M8 3a5 5 0 100 10A5 5 0 108 3z"], - redo: [ - "M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm3.71-6.71l-3-3a1.003 1.003 0 00-1.42 1.42L12.59 4H5C2.24 4 0 6.24 0 9s2.24 5 5 5h4v-2H5c-1.66 0-3-1.34-3-3s1.34-3 3-3h7.59L11.3 7.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z", - ], - refresh: [ - "M14.99 6.99c-.55 0-1 .45-1 1 0 3.31-2.69 6-6 6-1.77 0-3.36-.78-4.46-2h1.46c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1v-1.74a7.95 7.95 0 006 2.74c4.42 0 8-3.58 8-8 0-.55-.45-1-1-1zm0-7c-.55 0-1 .45-1 1v1.74a7.95 7.95 0 00-6-2.74c-4.42 0-8 3.58-8 8 0 .55.45 1 1 1s1-.45 1-1c0-3.31 2.69-6 6-6 1.77 0 3.36.78 4.46 2h-1.46c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1z", - ], - "regression-chart": [ - "M13 6.5c0 .83.67 1.5 1.5 1.5S16 7.33 16 6.5 15.33 5 14.5 5 13 5.67 13 6.5zM8.5 5c.83 0 1.5-.67 1.5-1.5S9.33 2 8.5 2 7 2.67 7 3.5 7.67 5 8.5 5zM9 9.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5S11.33 8 10.5 8 9 8.67 9 9.5zM4.5 8C5.33 8 6 7.33 6 6.5S5.33 5 4.5 5 3 5.67 3 6.5 3.67 8 4.5 8zM15 12H3.26l12.03-8.59-.58-.81L2 11.67V3c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - remove: [ - "M10.99 6.99h-6c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm-3-7c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.68 6-6 6z", - ], - "remove-column": [ - "M14 0H4c-.55 0-1 .45-1 1v3h2V2h3v12H5v-2H3v3c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14h-3V2h3v12zm-8.71-3.29a1.003 1.003 0 001.42-1.42L4.41 8 5.7 6.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L3 6.59l-1.29-1.3A1.003 1.003 0 00.29 6.71L1.59 8 .29 9.29a1.003 1.003 0 001.42 1.42L3 9.41l1.29 1.3z", - ], - "remove-column-left": [ - "M4 9h4c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm11-9H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-5 14H2V2h8v12zm4 0h-3V2h3v12z", - ], - "remove-column-right": [ - "M15 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM5 14H2V2h3v12zm9 0H6V2h8v12zM8 9h4c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1z", - ], - "remove-row-bottom": [ - "M15 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14H2V6h12v8zm0-9H2V2h12v3zm-8 6h4c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1z", - ], - "remove-row-top": [ - "M15 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14H2v-3h12v3zm0-4H2V2h12v8zM6 7h4c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1z", - ], - repeat: [ - "M10 5c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1s-1 .45-1 1v1.74A7.95 7.95 0 008 0C3.58 0 0 3.58 0 8c0 4.06 3.02 7.4 6.94 7.92.02 0 .04.01.06.01.33.04.66.07 1 .07 4.42 0 8-3.58 8-8 0-.55-.45-1-1-1s-1 .45-1 1c0 3.31-2.69 6-6 6-.71 0-1.37-.15-2-.38v.01C3.67 12.81 2 10.61 2 8c0-3.31 2.69-6 6-6 1.77 0 3.36.78 4.46 2H11c-.55 0-1 .45-1 1z", - ], - reset: [ - "M6 5c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1s1 .45 1 1v1.74A7.95 7.95 0 018 0c4.42 0 8 3.58 8 8 0 4.06-3.02 7.4-6.94 7.92-.02 0-.04.01-.06.01-.33.04-.66.07-1 .07-4.42 0-8-3.58-8-8 0-.55.45-1 1-1s1 .45 1 1c0 3.31 2.69 6 6 6 .71 0 1.37-.15 2-.38v.01c2.33-.82 4-3.02 4-5.63 0-3.31-2.69-6-6-6-1.77 0-3.36.78-4.46 2H5c.55 0 1 .45 1 1z", - ], - resolve: [ - "M6.6 3.3C6.1 3.1 5.6 3 5 3 2.2 3 0 5.2 0 8s2.2 5 5 5c.6 0 1.1-.1 1.6-.3C5.3 11.6 4.5 9.9 4.5 8s.8-3.6 2.1-4.7zM8 4c-1.2.9-2 2.4-2 4s.8 3.1 2 4c1.2-.9 2-2.3 2-4s-.8-3.1-2-4zm3-1c-.6 0-1.1.1-1.6.3 1.3 1.2 2.1 2.9 2.1 4.7s-.8 3.6-2.1 4.7c.5.2 1 .3 1.6.3 2.8 0 5-2.2 5-5s-2.2-5-5-5z", - ], - rig: [ - "M5.71 3c0 1.1.96 2 2.14 2C9.04 5 10 3.96 10 3c0-1.96-1.47-3-2.14-3H5c0 1.96 2.68 1.4.71 3zm2.5 3l.01.01s0-.01-.01-.01zm6.5 8.29L10 9.59V7c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v2.58l-4.71 4.7c-.18.19-.29.44-.29.72a1.003 1.003 0 001.71.71L6 12.42V15c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-2.58l3.29 3.29a1.003 1.003 0 001.42-1.42z", - ], - "right-join": [ - "M6.6 3.3C5.3 4.4 4.5 6.1 4.5 8s.8 3.6 2.1 4.7c-.5.2-1 .3-1.6.3-2.8 0-5-2.2-5-5s2.2-5 5-5c.6 0 1.1.1 1.6.3zm-1.96 8.68C3.92 10.83 3.5 9.46 3.5 8s.42-2.83 1.14-3.98C2.6 4.2 1 5.91 1 8s1.6 3.8 3.64 3.98zM8 4c-1.2.9-2 2.4-2 4s.8 3.1 2 4c1.2-.9 2-2.3 2-4s-.8-3.1-2-4zm3-1c2.8 0 5 2.2 5 5s-2.2 5-5 5c-.6 0-1.1-.1-1.6-.3 1.3-1.1 2.1-2.9 2.1-4.7s-.8-3.5-2.1-4.7c.5-.2 1-.3 1.6-.3z", - ], - ring: [ - "M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 12c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z", - ], - rocket: [ - "M6 12C4.397 7.46 4.415 4.465 8 0c3.585 4.485 3.602 7.48 2 12H6zm3-7a1 1 0 11-2 0 1 1 0 012 0zm-7 8.022l3-1-.054-.158C4.636 10.954 4.076 9.317 4 8L3 9l-1 4.022zm9-1l3 1L13 9l-1-1c-.076 1.317-.635 2.954-.946 3.864l-.054.158zM7 13h2c0 1.5-.5 2.5-1 3-.5-.5-1-1.5-1-3z", - ], - "rocket-slant": [ - "M3.992 10c2-5 5-9 11-9 0 6-4 9-9 11l-2-2zm7.714-4.285a1 1 0 11-1.414-1.414 1 1 0 011.414 1.414zm-6.555-.218L2.992 6l-3 2L3.24 9.195c.542-1.301 1.166-2.556 1.911-3.698zM7.992 16l-1.236-3.232c1.3-.539 2.552-1.158 3.694-1.898L9.992 13l-2 3zm-4.931-4.94L5 13c-.992.991-2.186 1.154-3.001 1-.154-.815.07-1.948 1.06-2.94z", - ], - "rotate-document": [ - "M12 2h-1.59l.29-.29c.19-.18.3-.43.3-.71A1.003 1.003 0 009.29.29l-2 2C7.11 2.47 7 2.72 7 3c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42l-.3-.29H12c.55 0 1 .45 1 1v3c0 .55.45 1 1 1s1-.45 1-1V5c0-1.66-1.34-3-3-3zM5.71 5.29A.997.997 0 005 5H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V9c0-.28-.11-.53-.29-.71l-3-3zM7 14H2V7h2v2c0 .55.45 1 1 1h2v4z", - ], - "rotate-page": [ - "M8 6H2c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zm-1 8H3V8h4v6zm5-12h-1.59l.29-.29c.19-.18.3-.43.3-.71A1.003 1.003 0 009.29.29l-2 2C7.11 2.47 7 2.72 7 3c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42l-.3-.29H12c.55 0 1 .45 1 1v3c0 .55.45 1 1 1s1-.45 1-1V5c0-1.66-1.34-3-3-3z", - ], - route: [ - "M11.669 5.066l.099.189c.113.213.236.434.367.661.226.39.468.78.709 1.151l-.198-.004-.48-.004c-1.745.003-2.369.233-2.369.688 0 .053.226.19 1.038.436l.84.24C13.9 9.064 15 9.83 15 11.63c0 2.123-1.607 3.122-4.027 3.366-.651.065-1.266.075-2.043.05l-.958-.035H5.196l.268-.406c.336-.517.672-1.052.998-1.593h1.636l.572.023c.857.036 1.475.034 2.103-.03 1.526-.153 2.227-.59 2.227-1.375 0-.531-.402-.84-1.66-1.22l-.691-.198c-1.04-.293-1.764-.562-2.222-.946C8.8 8.366 9 7.612 9 6.997a5.03 5.03 0 00-.184-1.334c.645-.395 1.598-.562 2.853-.597zM4 3a4.007 4.007 0 014 3.997C8 9.21 4 15 4 15l-.416-.62C2.56 12.827 0 8.767 0 6.997A4.002 4.002 0 014 3zm0 2a2 2 0 10.001 4.001A2 2 0 004 5zm10-4c1.103 0 1.996.896 2 1.999C16 4.105 14 7 14 7l-.293-.44C13.15 5.707 12 3.838 12 2.999 12 1.896 12.897 1 14 1z", - ], - satellite: [ - "M3 9c0-.6.4-1 1-1s1 .4 1 1c0 1.1.9 2 2 2 .6 0 1 .4 1 1s-.4 1-1 1c-2.2 0-4-1.8-4-4zM0 9c0-.6.4-1 1-1s1 .4 1 1c0 2.8 2.2 5 5 5 .6 0 1 .4 1 1s-.4 1-1 1c-3.9 0-7-3.1-7-7zm7 1c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1zm1.3-2.8c-.4-.4-.4-1 0-1.4l4.5-4.5c.4-.4 1-.4 1.4 0l.5.5c.4.4.4 1 0 1.4l-4.5 4.5c-.4.4-1 .4-1.4 0l-.5-.5zM5.2.3c.4-.4 1-.4 1.4 0l2.1 2.1c.4.4.4 1 0 1.4l-.9.9c-.4.4-1 .4-1.4 0L4.3 2.6c-.4-.4-.4-1 0-1.4l.9-.9zm7 7c.4-.4 1-.4 1.4 0l2.1 2.1c.4.4.4 1 0 1.4l-.9.9c-.4.4-1 .4-1.4 0l-2.1-2.1c-.4-.4-.4-1 0-1.4l.9-.9z", - ], - saved: [ - "M6.71 9.29a1.003 1.003 0 00-1.42 1.42l2 2a.997.997 0 001.6-.27h.01l2-4h-.01c.06-.13.11-.28.11-.44 0-.55-.45-1-1-1-.39 0-.72.23-.89.56H9.1l-1.38 2.76-1.01-1.03zM9 0H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V5L9 0zm3 14H4V2h4v4h4v8z", - ], - "scatter-plot": [ - "M15 12H2V3c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm-.5-7c.83 0 1.5-.67 1.5-1.5S15.33 2 14.5 2 13 2.67 13 3.5 13.67 5 14.5 5zm-3 4c.83 0 1.5-.67 1.5-1.5S12.33 6 11.5 6 10 6.67 10 7.5 10.67 9 11.5 9zm-4-2C8.33 7 9 6.33 9 5.5S8.33 4 7.5 4 6 4.67 6 5.5 6.67 7 7.5 7zm-3 4c.83 0 1.5-.67 1.5-1.5S5.33 8 4.5 8 3 8.67 3 9.5 3.67 11 4.5 11z", - ], - search: [ - "M15.55 13.43l-2.67-2.68a6.94 6.94 0 001.11-3.76c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7c1.39 0 2.68-.42 3.76-1.11l2.68 2.67a1.498 1.498 0 102.12-2.12zm-8.56-1.44c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", - ], - "search-around": [ - "M13.5 11c-.51 0-.98.15-1.38.42l-2.4-2.41c.17-.3.28-.64.28-1.01s-.11-.71-.28-1.01l2.41-2.41c.39.27.86.42 1.37.42a2.5 2.5 0 000-5A2.5 2.5 0 0011 2.5c0 .51.15.98.42 1.38l-2.41 2.4C8.71 6.11 8.37 6 8 6s-.71.11-1.01.28l-2.41-2.4c.27-.4.42-.87.42-1.38a2.5 2.5 0 00-5 0A2.5 2.5 0 002.5 5c.51 0 .98-.15 1.38-.42l2.41 2.41C6.11 7.29 6 7.63 6 8s.11.71.28 1.01l-2.41 2.41c-.39-.27-.86-.42-1.37-.42a2.5 2.5 0 000 5A2.5 2.5 0 005 13.5c0-.51-.15-.98-.42-1.38l2.41-2.41c.3.18.64.29 1.01.29s.71-.11 1.01-.28l2.41 2.41c-.27.39-.42.86-.42 1.37a2.5 2.5 0 005 0 2.5 2.5 0 00-2.5-2.5zm0-10c.83 0 1.5.67 1.5 1.5S14.33 4 13.5 4 12 3.33 12 2.5 12.67 1 13.5 1zm-11 3C1.67 4 1 3.33 1 2.5S1.67 1 2.5 1 4 1.67 4 2.5 3.33 4 2.5 4zm0 11c-.83 0-1.5-.67-1.5-1.5S1.67 12 2.5 12s1.5.67 1.5 1.5S3.33 15 2.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", - ], - "search-template": [ - "M15.55 13.43l-2.67-2.67c.7-1.09 1.11-2.38 1.11-3.77 0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7c1.39 0 2.68-.41 3.77-1.11l2.67 2.67a1.498 1.498 0 102.12-2.12zm-8.56-1.44c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm2.5-6h-5c-.28 0-.5.22-.5.5s.22.5.5.5h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5zm0-2h-5c-.28 0-.5.22-.5.5s.22.5.5.5h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5zm0 4h-5c-.28 0-.5.22-.5.5s.22.5.5.5h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5z", - ], - "search-text": [ - "M9 4H5c-.55 0-1 .45-1 1s.45 1 1 1h1v3c0 .55.45 1 1 1s1-.45 1-1V6h1c.55 0 1-.45 1-1s-.45-1-1-1zm6.56 9.44l-2.67-2.67C13.59 9.68 14 8.39 14 7c0-3.87-3.13-7-7-7S0 3.13 0 7s3.13 7 7 7c1.39 0 2.68-.41 3.77-1.11l2.67 2.67a1.498 1.498 0 102.12-2.12zM7 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", - ], - "segmented-control": [ - "M15 4H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 6H8V6h6v4z", - ], - select: [ - "M16 15c0-.28-.12-.52-.31-.69l.02-.02-3.12-3.12 3.41-.84-8.05-2.86c.03-.09.05-.17.05-.27V2c0-.55-.45-1-1-1H3c0-.55-.45-1-1-1S1 .45 1 1c-.55 0-1 .45-1 1s.45 1 1 1v4c0 .55.45 1 1 1h5.2c.1 0 .18-.02.27-.05L10.33 16l.85-3.41 3.12 3.12.02-.02c.16.19.4.31.68.31.04 0 .07-.02.1-.02s.06.02.1.02c.44 0 .8-.36.8-.8 0-.04-.02-.07-.02-.1s.02-.06.02-.1zM6 6H3V3h3v3z", - ], - selection: [ - "M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-9C6.34 5 5 6.34 5 8s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z", - ], - "send-message": [ - "M15.399 9.01L1.527 15.875c-.535.267-1.175.081-1.421-.427A.953.953 0 010 15V10l8-2-8-2V1c0-.528.407-1 1.004-1 .169 0 .416.04.567.116L15.403 7.07a1.084 1.084 0 01-.005 1.939z", - ], - "send-to": [ - "M15 7.5c-.8 0-1.5-.4-2-1l-1.2 1.2c-.4.5-1.1.7-1.8.7-1.4.1-2.5-1-2.5-2.4 0-.7.3-1.3.7-1.8L9.5 3c-.6-.5-1-1.2-1-2 0-.3.1-.7.2-1H8C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8v-.7c-.3.1-.6.2-1 .2zM15 0h-4c-.6 0-1 .5-1 1s.4 1 1 1h1.6L9.3 5.3c-.2.2-.3.4-.3.7 0 .5.4 1 1 1 .3 0 .5-.1.7-.3L14 3.4V5c0 .6.4 1 1 1 .5 0 1-.4 1-1V1c0-.5-.4-1-1-1z", - ], - "send-to-graph": [ - "M6 9H2c-.55 0-1 .45-1 1s.45 1 1 1h1.59L.3 14.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L5 12.41V14c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1zm8 .5c-.56 0-1.06.23-1.42.59l-2.13-1.24L8.99 8l3.59-2.09A2.002 2.002 0 0016 4.5c0-1.1-.9-2-2-2s-2 .9-2 2c0 .19.03.37.08.54L8.5 7.13v-3.2c.86-.22 1.5-1 1.5-1.93 0-1.1-.9-2-2-2S6 .9 6 2c0 .93.64 1.71 1.5 1.93v3.2l-.88-.52-2.7-1.57c.05-.17.08-.35.08-.54 0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2c.56 0 1.06-.23 1.42-.59l2.13 1.24 3.84 2.24 2.7 1.57c-.06.17-.09.35-.09.54 0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2z", - ], - "send-to-map": [ - "M6 9H2c-.55 0-1 .45-1 1s.45 1 1 1h1.59L.3 14.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L5 12.41V14c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1zm9.55-5.83l-4.49-3A.975.975 0 009.99.15L5.53 2.82 1.56.17A1.003 1.003 0 000 1v6h2V2.87l2.94 1.96.06.03V7h1V4.86s.01 0 .01-.01L10 2.47v8.67s-.01 0-.01.01l-.99.58v2.33l1.47-.88 3.97 2.65A1.003 1.003 0 0016 15V4c0-.35-.18-.65-.45-.83zM14 13.13l-2.94-1.96c-.02-.01-.04-.02-.05-.03v-8.6l3 2v8.59z", - ], - "series-add": [ - "M10.68 7.9c.44.54 1.07.92 1.79 1.05l-2.76 2.76c-.18.18-.43.29-.71.29s-.53-.11-.71-.3L5 8.41l-3 3V13h13c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1s1 .45 1 1v4.59l2.29-2.3C4.47 6.11 4.72 6 5 6s.53.11.71.29L9 9.59l1.68-1.69zM15 3c.55 0 1 .45 1 1s-.45 1-1 1h-1v1c0 .55-.45 1-1 1s-1-.45-1-1V5h-1c-.55 0-1-.45-1-1s.45-1 1-1h1V2c0-.55.45-1 1-1s1 .45 1 1v1h1z", - ], - "series-configuration": [ - "M9.94 9.64c.65.23 1.34.36 2.06.36.14 0 .29-.01.43-.01L9.7 12.71c-.18.18-.43.29-.71.29-.28 0-.53-.11-.71-.3L5 9.41l-3 3V14h12.99c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v4.59l2.29-2.3C4.47 7.11 4.72 7 5 7c.28 0 .53.11.71.29L9 10.59l.94-.95zm4.73-6.44h.92c.22 0 .4.18.4.4v.8c0 .22-.18.4-.4.4h-.93c-.06.2-.14.38-.24.55l.66.65c.15.15.15.4 0 .55l-.54.55c-.15.15-.4.15-.55 0l-.65-.65c-.17.1-.36.18-.55.24v.91c0 .22-.18.4-.4.4h-.8c-.22 0-.4-.18-.4-.4v-.93c-.18-.06-.36-.13-.52-.22l-.68.68c-.15.16-.41.16-.57 0l-.56-.56a.417.417 0 010-.57l.68-.68c-.08-.16-.16-.33-.22-.52h-.93c-.22 0-.4-.18-.4-.4v-.8c0-.22.18-.4.4-.4h.93c.06-.2.14-.38.24-.55l-.65-.64a.392.392 0 010-.55l.54-.55a.38.38 0 01.54 0l.65.65c.18-.1.36-.18.55-.24V.4c0-.22.18-.4.4-.4h.8c.22 0 .4.18.4.4v.93c.18.06.35.14.52.22l.68-.68c.15-.16.41-.16.57 0l.57.57c.15.16.15.41 0 .57l-.68.68c.09.16.16.33.22.51zm-4.18.8c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5c-.82 0-1.5.67-1.5 1.5z", - ], - "series-derived": [ - "M10.66 7.92c.44.54 1.07.91 1.8 1.03L9.71 11.7c-.18.19-.43.3-.71.3s-.53-.11-.71-.3L5 8.41l-3 3V13h13c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1s1 .45 1 1v4.59l2.29-2.3C4.47 6.11 4.72 6 5 6s.53.11.71.29L9 9.59l1.66-1.67zM12.3 5.3l.3-.3H8c-.6 0-1-.4-1-1s.4-1 1-1h4.6l-.3-.3c-.2-.2-.3-.4-.3-.7 0-.6.5-1 1-1 .3 0 .5.1.7.3l2 2c.2.2.3.4.3.7s-.1.5-.3.7l-2 2c-.2.2-.4.3-.7.3-.6 0-1-.4-1-1 0-.3.1-.5.3-.7z", - ], - "series-filtered": [ - "M9.29 9.3c.3.62.8 1.12 1.42 1.41l-1 1c-.18.18-.43.29-.71.29s-.53-.11-.71-.3L5 8.41l-3 3V13h13c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1s1 .45 1 1v4.59l2.29-2.3C4.47 6.11 4.72 6 5 6s.53.11.71.29L9 9.59l.29-.29zM15.48 1c.31 0 .52.26.52.57 0 .16-.06.3-.17.41l-2.86 2.73v2.63c0 .16-.06.3-.17.41l-.82 1.1c-.1.1-.25.17-.41.17-.31 0-.57-.26-.57-.57V4.71L8.17 1.98A.566.566 0 018 1.57c0-.31.26-.57.57-.57h6.91z", - ], - "series-search": [ - "M9.6 8.94a4.937 4.937 0 001.82.01c.1-.01.22-.04.39-.08l.23-.07c.04-.01.08-.02.11-.04l.22.22-2.7 2.72c-.18.19-.43.3-.71.3s-.53-.11-.71-.3L4.98 8.41l-2.99 3V13h12.94c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1V3.99c0-.55.45-1 1-1s1 .45 1 1v4.59l2.28-2.3c.17-.18.42-.29.7-.29s.53.11.7.29l3.28 3.3.64-.64zm6.22-.41c.1.12.17.27.18.44 0 .34-.27.61-.61.61a.57.57 0 01-.43-.18l-2.24-2.25c-.13.08-.26.16-.4.23-.02.01-.05.02-.07.03-.14.06-.27.12-.42.17h-.01c-.14.05-.29.08-.44.11-.04.01-.08.02-.11.02-.15.02-.3.04-.46.04-1.85 0-3.35-1.51-3.35-3.37S8.96 1.01 10.81 1c1.85 0 3.35 1.51 3.35 3.37 0 .16-.02.31-.04.47-.01.04-.01.07-.02.11-.02.15-.05.29-.1.44v.01c-.05.15-.11.28-.17.42-.01.02-.02.05-.03.07-.07.14-.14.27-.23.4l2.25 2.24zm-5.01-1.94c1.22 0 2.21-.99 2.21-2.22 0-1.23-.99-2.22-2.21-2.22S8.6 3.14 8.6 4.37c0 1.22.99 2.22 2.21 2.22z", - ], - settings: [ - "M3 1c0-.55-.45-1-1-1S1 .45 1 1v3h2V1zm0 4H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm12-4c0-.55-.45-1-1-1s-1 .45-1 1v2h2V1zM9 1c0-.55-.45-1-1-1S7 .45 7 1v6h2V1zM1 15c0 .55.45 1 1 1s1-.45 1-1v-5H1v5zM15 4h-2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-2 11c0 .55.45 1 1 1s1-.45 1-1V9h-2v6zM9 8H7c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-2 7c0 .55.45 1 1 1s1-.45 1-1v-2H7v2z", - ], - shapes: [ - "M5.92 8.139c.44-.282 1.006-.121 1.264.358l2.689 4.988c.083.155.127.33.127.51C10 14.55 9.587 15 9.077 15H3.924a.864.864 0 01-.438-.12c-.449-.263-.617-.873-.376-1.362l2.465-4.989c.08-.162.2-.297.346-.39zM12 4a3 3 0 110 6 3 3 0 010-6zM6 1a1 1 0 011 1v4a1 1 0 01-1 1H2a1 1 0 01-1-1V2a1 1 0 011-1h4z", - ], - share: [ - "M10.99 13.99h-9v-9h4.76l2-2H.99c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h11c.55 0 1-.45 1-1V7.24l-2 2v4.75zm4-14h-5c-.55 0-1 .45-1 1s.45 1 1 1h2.59L7.29 7.28a1 1 0 00-.3.71 1.003 1.003 0 001.71.71l5.29-5.29V6c0 .55.45 1 1 1s1-.45 1-1V1c0-.56-.45-1.01-1-1.01z", - ], - "shared-filter": [ - "M13.843 15.163c.232.53.138.837.138.837H6.017s-.088-.308.138-.837c.226-.53 1.338-.88 2.079-1.206.735-.332.66-.53.685-.8 0-.03.006-.068.006-.105a2.171 2.171 0 01-.61-.892v-.006s-.006-.006-.006-.012c-.025-.074-.056-.16-.075-.24-.176-.031-.276-.222-.314-.394a.8.8 0 01-.1-.437c.025-.253.131-.37.244-.419v-.037c0-.313.032-.775.088-1.07A1.835 1.835 0 018.85 8.37c.315-.24.76-.37 1.156-.37.396 0 .842.13 1.156.37.301.233.534.56.64.935.026.08.045.166.057.246.057.295.088.75.088 1.064v.043c.113.05.214.167.232.413a.75.75 0 01-.1.437c-.038.172-.132.357-.301.387a1.77 1.77 0 01-.076.24.136.136 0 01-.006.025 2.346 2.346 0 01-.597.892v.111c.025.277-.075.474.666.8.741.326 1.853.67 2.079 1.2z", - "M14.852 15h1.131s.083-.27-.12-.732c-.16-.373-.82-.641-1.411-.88a15.328 15.328 0 01-.409-.17c-.565-.25-.57-.412-.577-.61-.001-.03-.002-.06-.005-.09v-.097c.22-.2.401-.469.522-.781 0 0 .005-.016.005-.022.028-.07.05-.14.066-.21.149-.026.231-.188.264-.339a.655.655 0 00.088-.382c-.016-.215-.104-.318-.203-.36v-.039c0-.274-.028-.673-.077-.931a1.598 1.598 0 00-.61-1.034 1.736 1.736 0 00-1.285-.3c.236.285.42.622.529.996.038.124.065.248.083.36.048.257.079.578.093.867a1.736 1.736 0 01.08 1.624 1.65 1.65 0 01-.217.453 1.42 1.42 0 01-.176.209c-.08.204-.178.4-.292.585l.202.083c.285.117.64.261.9.387.226.11.475.245.698.414.213.161.476.408.63.764.034.08.065.159.091.235zM12.14 14.12l.09.037zM11 1c.55 0 1 .45 1 1 0 .28-.11.53-.29.7L8 6.41v1.374a2.813 2.813 0 00-.833 1.589 6.925 6.925 0 00-.092.86 1.64 1.64 0 00-.25.739l-.001.004c-.02.217.006.413.046.573L5.71 12.71A1.003 1.003 0 014 12V6.41L.29 2.71A1.003 1.003 0 011 1h10z", - ], - shield: [ - "M8 16c4.667-3.048 7-7.238 7-12.571-1.556 0-3.889-1.143-7-3.429-3.111 2.286-5.444 3.429-7 3.429C1 8.762 3.333 12.952 8 16zM8 2.121c2.005 1.388 3.715 2.304 5.186 2.735-.342 3.702-2.05 6.683-5.186 9.038V2.121z", - ], - ship: [ - "M5.44.804L5.2 2H3a1 1 0 00-1 1v3.714l-1.08.309a.988.988 0 00-.69 1.192c.366 1.432.897 3.324 1.309 4.26a.644.644 0 00.005.01c-.175.01-.356.015-.544.015a.5.5 0 000 1c2.067 0 3.414-.543 4.161-.917.55.373 1.505.917 2.839.917 1.32 0 2.27-.533 2.822-.905l.004.002c.196.105.48.24.856.374.75.268 1.857.529 3.318.529a.5.5 0 000-1c-.295 0-.572-.012-.834-.032a.995.995 0 00.308-.458l1.208-3.74a1 1 0 00-.677-1.269L14 6.714V3a1 1 0 00-1-1h-2.2L10.56.804A1 1 0 009.58 0H6.42a1 1 0 00-.98.804zM4 6.143l3-.857V4H4v2.143zm5-.857l3 .857V4H9v1.286zm-4.036 8.273a.5.5 0 01.527.034c.455.325 1.277.907 2.509.907s2.054-.582 2.51-.907a.5.5 0 01.579-.001l.006.004.036.023c.034.022.09.055.168.097.154.082.394.197.72.313.649.232 1.642.471 2.981.471a.5.5 0 010 1c-1.46 0-2.568-.261-3.318-.53a6.316 6.316 0 01-.856-.373l-.004-.002c-.552.372-1.502.905-2.822.905-1.334 0-2.289-.544-2.839-.917-.747.374-2.094.917-4.161.917a.5.5 0 010-1c2.129 0 3.384-.63 3.964-.94z", - ], - shop: [ - "M3 2h10c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1zm9 11H4v-3H2v5c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-5h-2v3zm4-6l-1.01-3.17C14.9 3.36 14.49 3 14 3H2c-.49 0-.9.36-.98.83L.01 7H0c0 1.1.9 2 2 2s2-.9 2-2c0 1.1.9 2 2 2s2-.9 2-2c0 1.1.9 2 2 2s2-.9 2-2c0 1.1.9 2 2 2s2-.9 2-2z", - ], - "shopping-cart": [ - "M14 10H7.72l-.33-1H13c.39 0 .72-.23.89-.56h.01l2-4h-.01c.06-.13.11-.28.11-.44 0-.55-.45-1-1-1H5.39l-.44-1.32h-.01C4.8 1.29 4.44 1 4 1H1c-.55 0-1 .45-1 1s.45 1 1 1h2.28l2.33 7H4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2h6c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2zM6.05 5h7.33l-1 2H6.72l-.67-2z", - ], - "signal-search": [ - "M5.474 7.971A5.31 5.31 0 006.66 8.9l.007.019.018.056c.015.038.038.06.045.098l1.5 5.999a.75.75 0 01-1.455.36l-.42-1.68h-.704l-.42 1.68a.746.746 0 01-.907.547.746.746 0 01-.547-.907l1.5-6c.007-.037.03-.06.044-.097.015-.037.015-.075.038-.112a.722.722 0 01-.105-.36c0-.207.084-.394.22-.53zM2.795 5.277a.763.763 0 00-.015-1.065.756.756 0 00-1.065.015c-2.286 2.34-2.286 6.21 0 8.549a.747.747 0 101.072-1.042c-1.709-1.763-1.709-4.702.008-6.457zM7.808 9.388a5.318 5.318 0 001.58.211 2.236 2.236 0 01-.656.98.756.756 0 01-1.057-.098.756.756 0 01.097-1.057l.036-.036zM11.544 9.105l.378.378a6.02 6.02 0 01-1.638 3.285c-.285.3-.757.3-1.057.015a.74.74 0 01-.015-1.057 4.52 4.52 0 001.185-2.24c.4-.083.785-.212 1.147-.381z", - "M4.054 9.424c-.427-.352-.352-1.582-.03-1.822a.752.752 0 00.15-1.05.752.752 0 00-1.05-.15c-1.079.802-1.221 3.18-.03 4.177a.75.75 0 10.96-1.155zM9.318 0a4.318 4.318 0 014.317 4.318c0 .206-.02.402-.049.598-.01.05-.01.088-.02.138-.039.196-.078.382-.137.569v.01c-.059.186-.137.363-.216.54l-.039.087a5.285 5.285 0 01-.294.51l2.884 2.886a.878.878 0 01.236.559.787.787 0 01-.785.785.785.785 0 01-.56-.226L11.772 7.89a5.285 5.285 0 01-.51.295l-.089.039c-.176.079-.353.157-.54.216h-.01a3.701 3.701 0 01-.568.137c-.05.01-.099.02-.138.02-.196.03-.392.049-.598.049A4.318 4.318 0 015 4.327 4.332 4.332 0 019.318 0zm-.02 1.1A3.195 3.195 0 006.1 4.298a3.195 3.195 0 003.198 3.198 3.195 3.195 0 003.198-3.198A3.195 3.195 0 009.298 1.1z", - ], - "sim-card": [ - "M13.71 4.29l-4-4A.997.997 0 009 0H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V5c0-.28-.11-.53-.29-.71zM7 6h2v2H7V6zM4 6h2v2H4V6zm2 8H4v-2h2v2zm3 0H7v-2h2v2zm3 0h-2v-2h2v2zm0-3H4V9h8v2zm0-3h-2V6h2v2z", - ], - slash: [ - "M10 2a.99.99 0 00-.96.73l-2.99 9.96A1.003 1.003 0 007 14c.46 0 .85-.31.96-.73l2.99-9.96A1.003 1.003 0 0010 2z", - ], - "small-cross": [ - "M9.41 8l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42L6.59 8 4.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z", - ], - "small-minus": [ - "M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "small-plus": [ - "M11 7H9V5c0-.55-.45-1-1-1s-1 .45-1 1v2H5c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V9h2c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "small-square": [ - "M5 5v6h6V5H5zM4 3a1 1 0 00-1 1v8a1 1 0 001 1h8a1 1 0 001-1V4a1 1 0 00-1-1H4z", - ], - "small-tick": [ - "M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z", - ], - snowflake: [ - "M13.364 9l.879.879a1 1 0 11-1.415 1.414l-2.12-2.121A1.003 1.003 0 0110.568 9H9v1.604c.042.03.083.065.121.103l2.122 2.121a1 1 0 01-1.415 1.415L9 13.414V15a1 1 0 01-2 0v-1.636l-.879.879a1 1 0 11-1.414-1.415l2.121-2.12c.054-.054.111-.1.172-.139V9H5.38c-.038.06-.084.118-.137.172l-2.122 2.12A1 1 0 111.707 9.88L2.586 9H1a1 1 0 110-2h1.536l-.829-.828a1 1 0 011.414-1.415L5.243 6.88c.038.038.072.079.103.121H7V5.38a1.003 1.003 0 01-.172-.137L4.708 3.12A1 1 0 016.12 1.707L7 2.586V1a1 1 0 112 0v1.536l.828-.829a1 1 0 011.415 1.414L9.12 5.243A1.007 1.007 0 019 5.346V7h1.604c.03-.042.065-.083.103-.121l2.121-2.122a1 1 0 011.415 1.415L13.414 7H15a1 1 0 010 2h-1.636z", - ], - "social-media": [ - "M9.5 4c.4 0 .8-.1 1.1-.3C12 4.5 12.9 6 13 7.6c0 .5.5.9 1 .9.6 0 1-.4 1-1v-.2c-.2-2.4-1.5-4.4-3.5-5.5-.1-1-.9-1.8-2-1.8s-2 .9-2 2 .9 2 2 2zM4 8.5c0-.7-.4-1.3-.9-1.7.3-1.4 1.2-2.6 2.5-3.3.3-.1.6-.4.6-.9s-.4-1-1-1c-.2 0-.3 0-.5.1-1.9 1-3.2 2.8-3.6 5C.4 7.1 0 7.8 0 8.5c0 1.1.9 2 2 2s2-.9 2-2zm8.8 1.2c-1.1 0-2 .9-2 2v.3c-.8.6-1.8.9-2.8.9-1.2 0-2.3-.4-3.2-1.1-.2-.2-.4-.3-.7-.3-.6 0-1 .4-1 1 0 .3.1.6.3.8C4.6 14.4 6.2 15 8 15c1.5 0 3-.5 4.1-1.3.2.1.5.1.7.1 1.1 0 2-.9 2-2s-.9-2.1-2-2.1z", - ], - sort: [ - "M5 12c-.28 0-.53.11-.71.29l-.29.3V9c0-.55-.45-1-1-1s-1 .45-1 1v3.59l-.29-.29A.965.965 0 001 12a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 005 12zm3-9h7c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm7 2H8c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1zm0 8H8c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H8c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "sort-alphabetical": [ - "M6 12c-.28 0-.53.11-.71.29l-.29.3V9c0-.55-.45-1-1-1s-1 .45-1 1v3.59l-.29-.29A.965.965 0 002 12a1.003 1.003 0 00-.71 1.71l2 2c.19.18.44.29.71.29.28 0 .53-.11.71-.29l2-2c.18-.18.29-.43.29-.71a.99.99 0 00-1-1zm7.93-.95v-1.04H9.25v1.11h2.94L9 14.96V16h5.02v-1.11h-3.27l3.18-3.84zm-1.42-4.84l.62 1.78H15L11.94.01H10.1L7 7.99h1.81l.64-1.78h3.06zm-1.52-4.24h.02l1.03 2.93H9.92l1.07-2.93z", - ], - "sort-alphabetical-desc": [ - "M5.99 11.99c-.28 0-.53.11-.71.29l-.29.29V8.99c0-.55-.45-1-1-1s-1 .45-1 1v3.59l-.29-.29a1.003 1.003 0 00-1.42 1.42l2 2c.18.18.43.29.71.29.28 0 .53-.11.71-.29l2-2c.18-.18.29-.43.29-.71 0-.56-.45-1.01-1-1.01zM12.7 10h-1.38L9 15.99h1.36l.48-1.33h2.3l.46 1.33H15L12.7 10zm-1.51 3.67l.8-2.2h.02l.77 2.2h-1.59zm3.8-7.17h-4.57l4.45-5.12V0H8.34v1.48h4.1L7.99 6.59v1.39h7V6.5z", - ], - "sort-asc": [ - "M8 7h3c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm0-4h1c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm0 8h5c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm-3 1c-.28 0-.53.11-.71.29l-.29.3V9c0-.55-.45-1-1-1s-1 .45-1 1v3.59l-.29-.29A.965.965 0 001 12a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 005 12zm10 1H8c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "sort-desc": [ - "M5 12c-.28 0-.53.11-.71.29l-.29.3V9c0-.55-.45-1-1-1s-1 .45-1 1v3.59l-.29-.29A.965.965 0 001 12a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 005 12zm4 1H8c-.55 0-1 .45-1 1s.45 1 1 1h1c.55 0 1-.45 1-1s-.45-1-1-1zm4-8H8c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm-2 4H8c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm4-8H8c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "sort-numerical": [ - "M6 11.99c-.28 0-.53.11-.71.29l-.29.3V8.99c0-.55-.45-1-1-1s-1 .45-1 1v3.59l-.29-.29c-.18-.18-.43-.3-.71-.3a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29.28 0 .53-.11.71-.29l2-2A1.003 1.003 0 006 11.99zm7.91-.08c-.06-.36-.17-.68-.33-.96-.16-.28-.37-.51-.64-.69-.27-.17-.61-.26-1.03-.26-.28 0-.54.06-.78.17-.23.11-.43.26-.6.45-.17.19-.3.41-.39.67a2.492 2.492 0 00-.04 1.52 1.623 1.623 0 00.89 1.03c.22.11.45.16.68.16.26 0 .5-.05.7-.15s.38-.26.53-.5l.02.02c-.01.16-.03.34-.07.54-.03.2-.09.4-.17.57-.08.18-.18.33-.31.45s-.29.19-.5.19a.63.63 0 01-.48-.21c-.13-.14-.21-.31-.25-.5H10.1c.03.25.1.48.19.68.1.2.22.37.38.5.16.14.33.24.54.31s.42.1.65.1c.39 0 .72-.09.99-.27.27-.18.49-.41.66-.7.17-.29.29-.61.37-.97.08-.36.12-.72.12-1.07 0-.36-.03-.72-.09-1.08zm-1.14.54c-.04.13-.09.24-.16.34a.78.78 0 01-.27.24c-.11.06-.24.09-.39.09a.75.75 0 01-.37-.09.777.777 0 01-.26-.25c-.07-.1-.12-.22-.15-.35-.03-.13-.05-.26-.05-.4 0-.13.02-.26.05-.39.04-.13.09-.24.16-.34.07-.1.16-.18.26-.24s.22-.09.35-.09c.14 0 .26.03.37.09.11.06.2.14.28.24a1.32 1.32 0 01.23.74c0 .15-.02.28-.05.41zm-1.56-4.47H13V0h-1.42c-.05.3-.16.56-.31.76-.16.21-.35.37-.58.5-.23.13-.49.21-.78.26-.3.05-.6.07-.91.06V2.8h2.21v5.18z", - ], - "sort-numerical-desc": [ - "M6 11.99c-.28 0-.53.11-.71.29l-.29.3V8.99c0-.55-.45-1-1-1s-1 .45-1 1v3.59l-.29-.29a.982.982 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 006 11.99zm7.86-9.45c-.09-.48-.26-.9-.5-1.28S12.8.58 12.4.35C12 .12 11.49 0 10.86 0c-.43 0-.82.07-1.17.22s-.65.35-.9.6-.44.55-.58.89c-.14.34-.2.71-.2 1.11 0 .31.05.61.15.91.1.3.26.57.48.8.23.24.52.43.85.58.33.14.68.21 1.03.21.4 0 .75-.07 1.05-.2.3-.13.57-.35.79-.66l.02.02c-.02.21-.05.45-.1.73-.05.27-.13.53-.25.76-.12.24-.27.44-.47.6-.19.16-.44.25-.75.25a.98.98 0 01-.72-.29c-.19-.18-.31-.4-.37-.66H8.15c.05.34.14.64.29.9.15.26.34.49.57.67.23.18.5.32.8.41.31.1.63.15.98.15.58 0 1.08-.12 1.48-.36.4-.24.73-.55.99-.93.26-.39.44-.82.56-1.29.12-.48.18-.96.18-1.44s-.05-.96-.14-1.44zm-1.71.72c-.05.17-.14.32-.24.46-.11.13-.24.24-.41.31-.16.08-.36.12-.58.12-.21 0-.39-.04-.55-.13-.16-.08-.29-.19-.39-.33-.12-.14-.19-.29-.24-.46-.05-.17-.08-.35-.08-.54 0-.18.03-.35.08-.52.06-.16.14-.31.25-.44.11-.13.24-.24.4-.32.16-.08.33-.12.52-.12.21 0 .4.04.56.12.16.08.3.19.41.32.11.14.2.29.26.46.06.17.09.35.09.52 0 .2-.03.38-.08.55zm-.46 7.31c-.12.15-.26.28-.44.37-.17.09-.37.16-.58.2-.22.04-.44.05-.67.05v.92h1.65v3.88h1.33V10h-1.06c-.03.23-.11.42-.23.57z", - ], - "split-columns": [ - "M12 10a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42l.3.29H9V2h3v1.71c.31-.13.64-.21 1-.21s.69.08 1 .21V1c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v2.71c.31-.13.64-.21 1-.21s.69.08 1 .21V2h3v5H3.41l.29-.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-2 2C.11 7.47 0 7.72 0 8c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L3.41 9H7v5H4v-1.71c-.31.13-.64.21-1 .21s-.69-.08-1-.21V15c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-2.71c-.31.13-.64.21-1 .21s-.69-.08-1-.21V14H9V9h3.59l-.29.29c-.19.18-.3.43-.3.71z", - ], - square: [ - "M15 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14H2V2h12v12z", - ], - "stacked-chart": [ - "M10 2c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v3h3V2zm3 10h1c.55 0 1-.45 1-1V8h-3v3c0 .55.45 1 1 1zm2-7c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v2h3V5zm-5 1H7v3h3V6zM5 7c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v1h3V7zm3 5h1c.55 0 1-.45 1-1v-1H7v1c0 .55.45 1 1 1zm7 1H2c-.55 0-1 .45-1 1s.45 1 1 1h13c.55 0 1-.45 1-1s-.45-1-1-1zM3 12h1c.55 0 1-.45 1-1V9H2v2c0 .55.45 1 1 1z", - ], - "stadium-geometry": [ - "M12 6H4a2 2 0 100 4h8a2 2 0 100-4zM4 4a4 4 0 100 8h8a4 4 0 000-8H4z", - ], - star: [ - "M8 0l2.5 5.3 5.5.8-4 4.1.9 5.8L8 13.3 3.1 16l.9-5.8-4-4.1 5.5-.8z", - ], - "star-empty": [ - "M16 6.11l-5.53-.84L8 0 5.53 5.27 0 6.11l4 4.1L3.06 16 8 13.27 12.94 16 12 10.21l4-4.1zM4.91 13.2l.59-3.62L3 7.02l3.45-.53L8 3.2l1.55 3.29 3.45.53-2.5 2.56.59 3.62L8 11.49 4.91 13.2z", - ], - "step-backward": [ - "M12 3c-.24 0-.44.09-.62.23l-.01-.01L7 6.72V4c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V9.28l4.38 3.5.01-.01c.17.14.37.23.61.23.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - "step-chart": [ - "M15 12H2v-2h3c.55 0 1-.45 1-1V7h2v1c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V5h1c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1v3h-2V6c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v2H2V3c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "step-forward": [ - "M12 3h-1c-.55 0-1 .45-1 1v2.72l-4.38-3.5v.01A.987.987 0 005 3c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1 .24 0 .44-.09.62-.23l.01.01L10 9.28V12c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - stop: [ - "M12 3H4c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - stopwatch: [ - "M9 2v1.083A6.002 6.002 0 018 15 6 6 0 017 3.083V2H6a1 1 0 110-2h4a1 1 0 010 2H9zM8 5a4 4 0 104 4H8V5z", - ], - strikethrough: [ - "M14 7H8.65c-.38-.09-.73-.18-1.04-.26-.31-.08-.49-.13-.54-.14-.43-.11-.79-.29-1.05-.52-.27-.23-.4-.55-.4-.95 0-.29.07-.53.21-.72s.32-.34.54-.46c.22-.11.46-.19.72-.24.26-.05.52-.07.77-.07.74 0 1.36.15 1.84.46.32.2.55.5.68.9h2.22c-.06-.33-.17-.64-.32-.92-.25-.45-.59-.84-1.02-1.15-.43-.31-.93-.54-1.49-.7S8.59 2 7.95 2c-.55 0-1.1.07-1.63.2-.54.13-1.02.34-1.45.62-.42.28-.76.63-1.02 1.05-.26.42-.39.92-.39 1.5 0 .3.04.59.13.88.08.26.21.51.39.75H2c-.55 0-1 .45-1 1s.45 1 1 1h7.13c.25.07.49.14.71.22.25.09.48.23.7.44.21.21.32.53.32.97 0 .21-.05.43-.14.63-.09.21-.24.39-.45.55-.21.16-.48.29-.81.39-.33.1-.73.15-1.2.15-.44 0-.84-.05-1.21-.14-.37-.09-.7-.24-.99-.43-.29-.2-.51-.45-.67-.76-.01 0-.01-.01-.02-.02H3.14a3.68 3.68 0 001.39 2.03c.46.34 1 .58 1.62.74.61.15 1.27.23 1.97.23.61 0 1.2-.07 1.79-.2.58-.13 1.11-.34 1.56-.63.46-.29.83-.66 1.11-1.11.28-.45.42-1 .42-1.64 0-.3-.05-.6-.15-.9-.05-.19-.13-.36-.22-.52H14c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - style: [ - "M14 14H2V2h8.76l2-2H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V6.24l-2 2V14zm1.4-14L9.7 5.7l2.1 2.1L16 3.6V0h-.6zM4 11.92c2.33.15 4.42.15 6.15-1.5.82-.83.82-2.25 0-3.08-.45-.38-.98-.6-1.5-.6-.53 0-1.05.22-1.43.6-.82.91-1.27 3.38-3.22 4.58z", - ], - "swap-horizontal": [ - "M0 7.02L.05 7H0v.02zm2-2.03h9.57l-1.29 1.29A1.003 1.003 0 0011.7 7.7l2.99-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2.99-3a1.07 1.07 0 00-.71-.28 1.003 1.003 0 00-.71 1.71L11.57 3H2c-.55 0-1 .45-1 1a1 1 0 001 .99zM15.96 9H16v-.02l-.04.02zM14 11.01H4.43l1.29-1.29A1.003 1.003 0 004.3 8.3l-2.99 3a.99.99 0 00-.29.7c0 .28.11.53.29.71l2.99 3a1.003 1.003 0 001.42-1.42L4.43 13H14c.55 0 1-.45 1-1s-.45-.99-1-.99z", - ], - "swap-vertical": [ - "M9 0h-.02L9 .04V0zM7 16h.02L7 15.95V16zM4.7 1.31c-.18-.18-.43-.29-.7-.29s-.53.11-.71.29l-3 2.99a1.003 1.003 0 001.42 1.42L3 4.43V14c0 .55.45 1 1 1s1-.45 1-1V4.43l1.29 1.29c.18.18.43.29.7.29A1.003 1.003 0 007.7 4.3l-3-2.99zM15 9.99c-.28 0-.53.11-.71.29L13 11.57V2c0-.55-.45-1-1-1s-1 .45-1 1v9.57l-1.29-1.29a.99.99 0 00-.7-.29 1.003 1.003 0 00-.71 1.71l3 2.99c.18.18.43.29.71.29.28 0 .53-.11.71-.29l3-2.99c.18-.18.29-.43.29-.71-.01-.55-.46-1-1.01-1z", - ], - switch: [ - "M9.293 2.293l1.414 1.414-4.999 5a3 3 0 11-1.415-1.415l5-5zM13 7a3 3 0 110 6 3 3 0 010-6zM3 9a1 1 0 100 2 1 1 0 000-2zm10 0a1 1 0 100 2 1 1 0 000-2z", - ], - "symbol-circle": ["M8 3.01a5 5 0 100 10 5 5 0 100-10z"], - "symbol-cross": [ - "M12 6.01h-2v-2c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v2H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2v2c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-2h2c.55 0 1-.45 1-1v-2c0-.56-.45-1-1-1z", - ], - "symbol-diamond": [ - "M12 8.01c0-.19-.07-.36-.16-.51l.01-.01-3-5-.01.01c-.17-.29-.48-.49-.84-.49s-.67.2-.84.49l-.02-.01-3 5 .02.01c-.09.15-.16.32-.16.51s.07.36.16.51h-.02l3 5 .01-.01c.18.29.49.5.85.5s.67-.2.84-.49l.01.01 3-5-.01-.01c.09-.16.16-.32.16-.51z", - ], - "symbol-square": [ - "M12 3.01H4c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-8c0-.56-.45-1-1-1z", - ], - "symbol-triangle-down": [ - "M13 4.01c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 .16.05.31.11.44H3.1l4 8h.01c.16.33.49.56.89.56s.72-.23.89-.56h.01l4-8h-.01c.06-.14.11-.28.11-.44z", - ], - "symbol-triangle-up": [ - "M12.89 11.56l-3.99-8h-.01c-.17-.32-.5-.55-.89-.55s-.72.23-.89.55H7.1l-4 8h.01c-.06.14-.11.29-.11.45 0 .55.45 1 1 1h8c.55 0 1-.45 1-1 0-.16-.05-.31-.11-.45z", - ], - syringe: [ - "M11.146.146a.5.5 0 000 .708l.647.646L10.5 2.793 8.854 1.146a.5.5 0 10-.708.708l.647.646-1.146 1.146-5.5 5.5a.5.5 0 000 .708l.646.646-1.647 1.646a.5.5 0 000 .708l.647.646-1.647 1.646a.5.5 0 00.708.708L2.5 14.207l.646.647a.5.5 0 00.708 0L5.5 13.207l.646.647a.5.5 0 00.708 0l5.5-5.5L13.5 7.207l.646.647a.5.5 0 00.708-.708L13.207 5.5 14.5 4.207l.646.647a.5.5 0 00.708-.708l-4-4a.5.5 0 00-.708 0zM11.293 8l-.793.793-1.646-1.647a.5.5 0 10-.708.708L9.793 9.5 8.5 10.793 6.854 9.146a.5.5 0 10-.708.708L7.793 11.5 6.5 12.793 3.207 9.5 8 4.707 11.293 8zM8.707 4L12 7.293l.793-.793L9.5 3.207 8.707 4zm-6.5 8.5L3.5 13.793 4.793 12.5 3.5 11.207 2.207 12.5zm11.586-9L12.5 2.207 11.207 3.5 12.5 4.793 13.793 3.5z", - ], - tag: [ - "M1 3a2 2 0 012-2h4.584a2 2 0 011.414.586l5.413 5.412a2 2 0 010 2.829L9.827 14.41a2 2 0 01-2.829 0L1.586 8.998A2 2 0 011 7.584V3zm3.487-.007a1.494 1.494 0 100 2.988 1.494 1.494 0 000-2.988z", - ], - "take-action": [ - "M9 11a1.003 1.003 0 001.71.71l4-4a1.003 1.003 0 00-1.42-1.42l-4 4c-.18.18-.29.43-.29.71zM4 6c.28 0 .53-.11.71-.29l4-4A1.003 1.003 0 007.29.29l-4 4A1.003 1.003 0 004 6zm4 4l5-5-.79-.79.5-.5a1.003 1.003 0 00-1.42-1.42l-.5.5L10 2 5 7l.79.79-5.5 5.5a1.003 1.003 0 001.42 1.42l5.5-5.5L8 10zm7 4H7c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - tank: [ - "M3.7 3.4a1 1 0 01.8-.4h5.086a1 1 0 01.707.293L11 4h3a1 1 0 110 2h-3v1h2.5a2.5 2.5 0 010 5h-11a2.5 2.5 0 010-5H3V4.667a1 1 0 01.2-.6l.5-.667zM2.5 9h11a.5.5 0 010 1h-11a.5.5 0 110-1z", - ], - target: [ - "M7 4a1 1 0 012 0v2a1 1 0 01-2 0V4zM10 7a1 1 0 000 2h2a1 1 0 000-2h-2zM3 8a1 1 0 011-1h2a1 1 0 010 2H4a1 1 0 01-1-1zM8 9a1 1 0 00-1 1v2a1 1 0 002 0v-2a1 1 0 00-1-1z", - "M8 16A8 8 0 108 0a8 8 0 000 16zm0-2A6 6 0 108 2a6 6 0 000 12z", - ], - taxi: [ - "M15.12 6.63h-.38L15 7c-.01.3-.01.64 0 .98V8c0 .07-.03.13-.04.19h.02L14 13.1v.9c0 .55-.45 1-1 1s-1-.45-1-1v-1H4v1c0 .55-.45 1-1 1s-1-.45-1-1v-.9l-.98-4.9h.02C1.03 8.13 1 8.07 1 8H.99c0-.33 0-.67.01-1l.26-.37H.88C.4 6.63 0 6.21 0 5.69s.4-.94.88-.94h1.05l.77-2.11c.19-.53.76-1.08 1.26-1.24 0 0 .68-.2 2.05-.32C6.01 1.05 6 1.03 6 1c0-.55.45-1 1-1h2c.55 0 1 .45 1 1 0 .03-.01.05-.02.08 1.37.12 2.05.32 2.05.32.51.15 1.08.71 1.27 1.24l.76 2.12h1.05c.49 0 .89.42.89.93 0 .52-.4.94-.88.94zM11 10h2V8h-2v2zm-8 0h2V8H3v2zm10-5l-.73-1.63C12.21 3.19 12.18 3 12 3H4c-.18 0-.21.19-.27.37L3 5c-.06.18-.18 1 0 1h10c.18 0 .06-.82 0-1z", - ], - temperature: [ - "M8.5 0A1.5 1.5 0 007 1.5v7.837a3.5 3.5 0 103 0V1.5A1.5 1.5 0 008.5 0zM2 5.5a.5.5 0 01.5-.5h3a.5.5 0 010 1h-3a.5.5 0 01-.5-.5zM2.5 1a.5.5 0 000 1h3a.5.5 0 000-1h-3zM4 3.5a.5.5 0 01.5-.5h1a.5.5 0 010 1h-1a.5.5 0 01-.5-.5zM4.5 7a.5.5 0 000 1h1a.5.5 0 000-1h-1z", - ], - "text-highlight": [ - "M9 10H2V6h7V4H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h8v-2zm4 3h-1V3h1c.55 0 1-.45 1-1s-.45-1-1-1h-1c-.37 0-.7.11-1 .28-.3-.17-.63-.28-1-.28H9c-.55 0-1 .45-1 1s.45 1 1 1h1v10H9c-.55 0-1 .45-1 1s.45 1 1 1h1c.37 0 .7-.11 1-.28.3.17.63.28 1 .28h1c.55 0 1-.45 1-1s-.45-1-1-1zm2-9h-2v2h1v4h-1v2h2c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1z", - ], - th: [ - "M15 1H1c-.6 0-1 .5-1 1v12c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V2c0-.5-.4-1-1-1zM6 13H2v-2h4v2zm0-3H2V8h4v2zm0-3H2V5h4v2zm8 6H7v-2h7v2zm0-3H7V8h7v2zm0-3H7V5h7v2z", - ], - "th-derived": [ - "M5.6 10l-.3.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3l2-2c.2-.2.3-.4.3-.7s-.1-.5-.3-.7l-2-2C6.5 6.1 6.3 6 6 6c-.5 0-1 .4-1 1 0 .3.1.5.3.7l.3.3H1c-.6 0-1 .4-1 1s.4 1 1 1h4.6zM15 1H2c-.5 0-1 .5-1 1v5h2V5h11v2H8.8l.6.6c.1.1.2.3.3.4H14v2H9.7c-.1.1-.2.3-.3.4l-.6.6H14v2H3v-2H1v3c0 .5.5 1 1 1h13c.6 0 1-.5 1-1V2c0-.5-.4-1-1-1z", - ], - "th-disconnect": [ - "M12 1h3c.6 0 1 .5 1 1v12c0 .6-.4 1-1 1h-4.97l.286-2H14v-2h-3.398l.143-1H14V8h-2.97l.143-1H14V5h-2.541l.51-3.576C11.99 1.282 12 1.14 12 1zM5.97 1l-.572 4H2v2h3.112L4.97 8H2v2h2.684l-.143 1H2v2h2.255l-.225 1.576c-.02.142-.03.284-.03.424H1c-.6 0-1-.4-1-1V2c0-.5.4-1 1-1h4.97zM8.01.859a1 1 0 111.98.282l-2 14a1 1 0 11-1.98-.282l2-14z", - ], - "th-filtered": [ - "M10 10h3l1.78-2.226a1 1 0 00.22-.625V4.3l1-.9V14c0 .6-.4 1-1 1H1c-.6 0-1-.4-1-1V2c0-.5.4-1 1-1h4.333L9 4.3V5H7v2h2v1H7v2h3zm-4 3v-2H2v2h4zm0-3V8H2v2h4zm0-3V5H2v2h4zm8 6v-2H7v2h7z", - "M15.48 0c.31 0 .52.26.52.57 0 .16-.06.3-.17.41l-2.86 2.73v2.63c0 .16-.06.3-.17.41l-.82 1.1c-.1.1-.25.17-.41.17-.31 0-.57-.26-.57-.57V3.71L8.17.98A.566.566 0 018 .57c0-.31.26-.57.57-.57h6.91z", - ], - "th-list": [ - "M15 1H1c-.6 0-1 .5-1 1v12c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V2c0-.5-.4-1-1-1zm-1 12H2v-2h12v2zm0-3H2V8h12v2zm0-3H2V5h12v2z", - ], - "third-party": [ - "M4.448 9h.573c.025-.044.051-.088.079-.13A9.43 9.43 0 015.183 8h-.995A10.424 10.424 0 014 6c0-.717.068-1.391.188-2h3.624c.065.33.114.678.146 1.042A3.42 3.42 0 018.46 5c.168 0 .336.013.502.037A11.089 11.089 0 008.829 4h1.755c.148.338.26.696.33 1.068l.176-.028a2.74 2.74 0 01.5 0c.113 0 .225.006.336.018A6.001 6.001 0 000 6a6 6 0 005.672 5.991 4 4 0 01-.202-.441 1.842 1.842 0 01-.24-.26 1.82 1.82 0 01-.26-.55 2 2 0 01-.185-.92l-.012-.025A6.036 6.036 0 014.448 9zM3.171 8H1.416A4.983 4.983 0 011 6c0-.711.148-1.388.416-2h1.755C3.06 4.626 3 5.299 3 6c0 .701.06 1.374.17 2zM2 9H3.4c.18.618.412 1.167.685 1.62A5.015 5.015 0 012 9zm2.448-6h3.104a6.036 6.036 0 00-.325-.795C6.737 1.225 6.246 1 6 1c-.246 0-.737.225-1.227 1.205-.119.238-.228.504-.325.795zm4.15 0H10a5.016 5.016 0 00-2.086-1.62c.273.453.506 1.002.685 1.62zM4.087 1.38A6.834 6.834 0 003.401 3H2a5.015 5.015 0 012.086-1.62zM13.476 16s.118-.385-.172-1.046c-.228-.533-1.172-.915-2.015-1.257a22.113 22.113 0 01-.584-.243c-.808-.356-.816-.588-.825-.872-.002-.041-.003-.084-.007-.128v-.139c.314-.284.573-.669.745-1.115 0 0 .008-.023.008-.03.04-.1.071-.2.095-.3.212-.04.33-.27.377-.485.054-.093.149-.3.125-.547-.024-.307-.15-.453-.29-.515v-.054c0-.392-.04-.961-.11-1.33a2.16 2.16 0 00-.071-.308 2.283 2.283 0 00-.8-1.17C9.558 6.162 9.001 6 8.506 6c-.495 0-1.052.162-1.445.462A2.294 2.294 0 006.19 7.93c-.07.369-.11.946-.11 1.338v.046c-.14.062-.274.208-.306.523a1 1 0 00.126.547c.047.215.173.453.393.492.02.083.05.172.078.253l.016.047c0 .008.008.015.008.015v.008c.172.454.44.846.761 1.115a.804.804 0 01-.004.072c-.002.02-.004.04-.004.06l-.007.105c-.016.287-.028.523-.848.894-.176.078-.37.156-.568.237-.847.345-1.802.735-2.031 1.27C3.41 15.616 3.52 16 3.52 16h9.955zm2.503-1.25h-1.413a4.05 4.05 0 00-.116-.294c-.192-.445-.52-.753-.787-.955-.278-.21-.59-.38-.873-.517a21.373 21.373 0 00-1.122-.483l-.02-.008-.235-.097c.144-.23.266-.476.366-.731.089-.087.162-.177.22-.26.132-.192.217-.391.271-.568.117-.251.24-.64.199-1.105a2.025 2.025 0 00-.299-.925 8.626 8.626 0 00-.116-1.083 3.426 3.426 0 00-.104-.45 3.476 3.476 0 00-.661-1.246A2.18 2.18 0 0111.63 6c.432 0 .92.141 1.264.404.33.256.584.612.7 1.023.028.087.049.182.062.27.062.322.097.82.097 1.163v.048c.123.053.233.181.254.45a.82.82 0 01-.11.478c-.041.189-.144.391-.33.425a1.92 1.92 0 01-.082.262c0 .007-.007.027-.007.027-.151.39-.378.727-.653.976v.121c.004.038.005.075.006.111v.002c.008.247.015.451.722.762.158.07.332.14.51.213.739.299 1.565.634 1.764 1.1.254.579.151.915.151.915z", - ], - "thumbs-down": [ - "M2 2H0v7h2c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm13.99 4.38c.08-.58-.44-1.02-1.15-1.05-.25-.01-.52-.03-.81-.05.02 0 .05-.01.07-.01.7-.1 1.34-.49 1.41-1.07.06-.58-.46-.97-1.17-1.04-.25-.02-.52-.04-.79-.06.47-.15.84-.42.87-.93.04-.58-.79-1.03-1.5-1.09-.27-.02-.51-.04-.73-.05h-.09c-.23-.02-.43-.02-.62-.03C8.35.95 5.66 1.47 4 2.51v6c2.14 1.29 4.76 3.59 4.21 5.51-.18.59.31 1.05.98.98.81-.09 1.37-.91 1.4-1.78.04-1-.15-2.01-.5-2.91-.04-.25.01-.5.37-.53.49-.03 1.11-.06 1.59-.08.26 0 .51-.01.75-.02h.01c.41-.02.8-.05 1.13-.09.7-.09 1.35-.47 1.43-1.05.08-.58-.44-.97-1.15-1.05-.05-.01-.11-.01-.16-.02.17-.01.33-.03.49-.05.72-.08 1.37-.46 1.44-1.04z", - ], - "thumbs-up": [ - "M15.99 9.62c-.08-.58-.73-.96-1.43-1.05-.15-.02-.32-.04-.49-.05.06-.01.11-.01.16-.02.71-.08 1.23-.47 1.15-1.05-.08-.58-.73-.96-1.43-1.05-.34-.04-.72-.07-1.13-.09h-.01c-.24-.01-.49-.02-.75-.02-.48-.02-1.11-.04-1.59-.08-.36-.03-.41-.28-.37-.53.35-.9.54-1.91.5-2.91-.04-.85-.6-1.68-1.41-1.77-.67-.07-1.16.39-.99.98C8.76 3.91 6.13 6.2 4 7.49v6c1.66 1.03 4.35 1.56 7.48 1.5.19 0 .39-.01.62-.02h.09c.22-.01.46-.03.73-.05.71-.06 1.54-.51 1.5-1.09-.03-.51-.4-.79-.87-.93.27-.02.54-.04.79-.06.71-.06 1.24-.45 1.17-1.04-.06-.58-.7-.97-1.41-1.07-.02 0-.05-.01-.07-.01.29-.02.57-.03.81-.05.71-.03 1.23-.47 1.15-1.05zM2 7H0v7h2c.55 0 1-.45 1-1V8c0-.56-.45-1-1-1z", - ], - tick: [ - "M14 3c-.28 0-.53.11-.71.29L6 10.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29s.53-.11.71-.29l8-8A1.003 1.003 0 0014 3z", - ], - "tick-circle": [ - "M8 16c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4-11c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z", - ], - time: [ - "M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm1-6.41V4c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L9 7.59z", - ], - "timeline-area-chart": [ - "M15 2.59L9.91 7.68 6.6 5.2l-.01.01C6.42 5.09 6.23 5 6 5c-.24 0-.44.09-.62.23v-.01L3 7.12V11h12V2.59zM15 12H2V3c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "timeline-bar-chart": [ - "M8 12h1c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1zm5 0h1c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm2 1H2c-.55 0-1 .45-1 1s.45 1 1 1h13c.55 0 1-.45 1-1s-.45-1-1-1zM3 12h1c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1z", - ], - "timeline-events": [ - "M8 11H7v1h1v-1zm-4 0H3v1h1v-1zm7-8c.6 0 1-.5 1-1V1c0-.5-.4-1-1-1s-1 .5-1 1v1c0 .5.5 1 1 1zM4 3c.5 0 1-.5 1-1V1c0-.5-.5-1-1-1S3 .5 3 1v1c0 .5.5 1 1 1zm10-2h-1v1c0 1.1-.9 2-2 2s-2-.9-2-2V1H6v1c0 1.1-.9 2-2 2s-2-.9-2-2V1H1c-.5 0-1 .5-1 1v12c0 .5.5 1 1 1h13c.6 0 1-.5 1-1V2c0-.5-.4-1-1-1zM5 13H2v-3h3v3zm0-4H2V6h3v3zm4 4H6v-3h3v3zm0-4H6V6h3v3zm4 4h-3v-3h3v3zm0-4h-3V6h3v3zm-1-2h-1v1h1V7z", - ], - "timeline-line-chart": [ - "M15 12H2V9.41l3-3L8.29 9.7c.18.19.43.3.71.3s.53-.11.71-.29l6-6a1.003 1.003 0 00-1.42-1.42L9 7.59l-3.29-3.3C5.53 4.11 5.28 4 5 4s-.53.11-.71.29L2 6.59V3c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - tint: [ - "M7.88 1s-4.9 6.28-4.9 8.9c.01 2.82 2.34 5.1 4.99 5.1 2.65-.01 5.03-2.3 5.03-5.13C12.99 7.17 7.88 1 7.88 1z", - ], - torch: [ - "M5 15c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H5v1zm7-15H4c-.55 0-1 .45-1 1v1h10V1c0-.55-.45-1-1-1zM5 7v6h6V7l2-4H3l2 4zm2 0c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1s-1-.45-1-1V7z", - ], - tractor: [ - "M3.5 9a3.5 3.5 0 110 7 3.5 3.5 0 010-7zm9.5 1a3 3 0 110 6 3 3 0 010-6zm-9.5 1a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm9.5 1a1 1 0 100 2 1 1 0 000-2zM5 0c1.46 0 2.527.668 3 2l.815 3.255a78.9 78.9 0 012.186.195L11 2h2l.001 3.688c.698.095 1.37.198 2.013.312.623.11.986.479.986 1v3.354a4.001 4.001 0 00-6.873 1.645H7.999l-.026-.002A4.5 4.5 0 00.659 9.01l-.654.001v-.829C.003 7.386.002 6.423 0 6.022 0 5.5.376 4.99 1 4.99V1a1 1 0 011-1h3zm1 2H3v2.99c1.29.024 2.554.069 3.781.135L6 2z", - ], - train: [ - "M13 14h-1l1 2H3l1-2H3c-1.1 0-2-.9-2-2V2C1 .9 4.13 0 8 0s7 .9 7 2v10c0 1.1-.9 2-2 2zm-2-2h2v-2h-2v2zM9 7h4V3H9v4zm-6 5h2v-2H3v2zm0-5h4V3H3v4z", - ], - translate: [ - "M15.89 14.56l-3.99-8h-.01c-.17-.33-.5-.56-.89-.56s-.72.23-.89.56h-.01L9 8.76 7.17 7.38l.23-.18C8.37 6.47 9 5.31 9 4V3h1c.55 0 1-.45 1-1s-.45-1-1-1H7c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1H1c-.55 0-1 .45-1 1s.45 1 1 1h6v1c0 .66-.32 1.25-.82 1.61l-.68.51-.68-.5C4.32 5.25 4 4.66 4 4H2c0 1.31.63 2.47 1.6 3.2l.23.17L1.4 9.2l.01.01C1.17 9.4 1 9.67 1 10c0 .55.45 1 1 1 .23 0 .42-.09.59-.21l.01.01 2.9-2.17 2.6 1.95-1.99 3.98h.01c-.07.13-.12.28-.12.44 0 .55.45 1 1 1 .39 0 .72-.23.89-.56h.01L8.62 14h4.76l.72 1.45h.01c.17.32.5.55.89.55.55 0 1-.45 1-1 0-.16-.05-.31-.11-.44zM9.62 12L11 9.24 12.38 12H9.62z", - ], - trash: [ - "M14.49 3.99h-13c-.28 0-.5.22-.5.5s.22.5.5.5h.5v10c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-10h.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5zm-8.5 9c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm3 0c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm3 0c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm2-12h-4c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1h-4c-.55 0-1 .45-1 1v1h14v-1c0-.55-.45-1-1-1z", - ], - tree: [ - "M9 11.857V16H7v-4.143L1 13l3.885-4.44L3 9l3.07-4.297L5 5l3-5 3 5-1.07-.297L13 9l-1.885-.44L15 13l-6-1.143z", - ], - "trending-down": [ - "M15 7c-.55 0-1 .45-1 1v.59l-4.29-4.3A.997.997 0 009 4c-.16 0-.31.05-.44.11V4.1L5 5.88 1.45 4.11v.01C1.31 4.05 1.16 4 1 4c-.55 0-1 .45-1 1 0 .39.23.72.56.89v.01l4 2v-.01c.13.06.28.11.44.11s.31-.05.44-.11v.01L8.8 6.22 12.59 10H12c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1z", - ], - "trending-up": [ - "M15 4h-3c-.55 0-1 .45-1 1s.45 1 1 1h.59L8.8 9.78 5.45 8.11v.01C5.31 8.05 5.16 8 5 8s-.31.05-.44.11V8.1l-4 2v.01c-.33.17-.56.5-.56.89 0 .55.45 1 1 1 .16 0 .31-.05.44-.11v.01L5 10.12l3.55 1.78v-.01c.14.06.29.11.45.11.28 0 .53-.11.71-.29L14 7.41V8c0 .55.45 1 1 1s1-.45 1-1V5c0-.55-.45-1-1-1z", - ], - truck: [ - "M12.5 0a.5.5 0 01.5.5V9a1 1 0 011 1v2h.5a.5.5 0 01.5.5v1a.5.5 0 01-.5.5H13v1a1 1 0 01-2 0v-1H5v1a1 1 0 01-2 0v-1H1.5a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5H2v-2a1 1 0 011-1V.5a.5.5 0 011 0V3a2 2 0 012-2h4a2 2 0 012 2V.5a.5.5 0 01.5-.5zM9 8H7a1 1 0 00-1 1v2a1 1 0 001 1h2a1 1 0 001-1V9a1 1 0 00-1-1zm3.5 3h-1a.5.5 0 100 1h1a.5.5 0 100-1zm-8 0h-1a.5.5 0 100 1h1a.5.5 0 100-1zM9 9a.5.5 0 01.5.5v1l-.008.09A.5.5 0 019 11H7l-.09-.008a.5.5 0 01-.41-.492v-1l.008-.09A.5.5 0 017 9zm2-5H5v2h6V4z", - ], - "two-columns": [ - "M3.99-.01h-3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-14c0-.55-.45-1-1-1zm11.71 7.3l-2-2a1.003 1.003 0 00-1.71.71v4a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71s-.11-.53-.29-.71zM9.99-.01h-3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-14c0-.55-.45-1-1-1z", - ], - unarchive: [ - "M13.382 0a1 1 0 01.894.553L16 4v11a1 1 0 01-1 1H1a1 1 0 01-1-1V4L1.724.553A1 1 0 012.618 0h10.764zM8 6c-.28 0-.53.11-.71.29l-2 2-.084.096A1.003 1.003 0 006.71 9.71l.29-.3V12l.007.116c.058.496.482.884.993.884.55 0 1-.45 1-1V9.41l.29.29.081.076A.97.97 0 0010 10a1.003 1.003 0 00.71-1.71l-2-2-.096-.084A1.002 1.002 0 008 6zm5-4H3L2 4h12l-1-2z", - ], - underline: [ - "M8 14c2.8 0 5-2.2 5-5V3c0-.6-.4-1-1-1s-1 .4-1 1v6c0 1.7-1.3 3-3 3s-3-1.3-3-3V3c0-.6-.4-1-1-1s-1 .4-1 1v6c0 2.8 2.2 5 5 5zM13.5 15h-11c-.3 0-.5.2-.5.5s.2.5.5.5h11c.3 0 .5-.2.5-.5s-.2-.5-.5-.5z", - ], - undo: [ - "M4 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm7-7H3.41L4.7 2.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3C.11 4.47 0 4.72 0 5c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L3.41 6H11c1.66 0 3 1.34 3 3s-1.34 3-3 3H7v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z", - ], - "ungroup-objects": [ - "M3.5 5C1.57 5 0 6.57 0 8.5S1.57 12 3.5 12 7 10.43 7 8.5 5.43 5 3.5 5zm9 0C10.57 5 9 6.57 9 8.5s1.57 3.5 3.5 3.5S16 10.43 16 8.5 14.43 5 12.5 5z", - ], - "unknown-vehicle": [ - "M10.507 9.75v-3.5c0-.089.023-.171.051-.25h-7.55c-.176 0-.061-.824 0-1l.729-1.63c.06-.177.095-.37.27-.37h4.5V1.01c-.166-.003-.32-.01-.5-.01-2.72 0-4.036.402-4.036.402-.508.155-1.079.711-1.268 1.237L1.94 4.756H.887c-.483 0-.88.423-.88.939s.397.939.88.939h.376L1.008 7c-.034.685 0 1.436 0 2v5c0 .657.384 1 1 1s1-.343 1-1v-1h10v1c0 .657.383 1 1 1s1-.343 1-1v-3.5h-3.75a.75.75 0 01-.75-.75zm-5.5.25h-2V8h2v2zm11-4.305zM15.34.826a2.807 2.807 0 00-.932-.598c-.386-.16-.868-.241-1.445-.241-.447 0-.851.076-1.213.228-.362.153-.67.364-.926.636s-.456.592-.598.963a3.535 3.535 0 00-.218 1.144V3h1.789c.003-.208.023-.405.069-.588.049-.193.124-.362.225-.506.102-.144.232-.259.39-.345.159-.087.348-.13.567-.13.325 0 .58.09.762.272.183.18.275.46.275.839.008.222-.031.407-.116.555a1.654 1.654 0 01-.335.408 7.4 7.4 0 01-.452.37c-.162.123-.316.27-.463.438a2.556 2.556 0 00-.384.611c-.11.239-.177.535-.2.889V6h1.645v-.1c.032-.248.111-.453.237-.618.126-.164.27-.31.433-.438.163-.128.335-.255.518-.383a2.413 2.413 0 00.878-1.117c.102-.255.152-.58.152-.975A2.241 2.241 0 0015.34.826zM12.007 7v2h2V7h-2z", - ], - unlock: [ - "M11.99-.01c-2.21 0-4 1.79-4 4v3h-7c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-7c0-.55-.45-1-1-1h-3v-3c0-1.1.9-2 2-2s2 .9 2 2v1c0 .55.45 1 1 1s1-.45 1-1v-1c0-2.21-1.79-4-4-4z", - ], - unpin: [ - "M9.39 1c-.5.5-.4 1.48.15 2.53L4.38 7.54C2.85 6.5 1.52 6.07 1 6.59l3.5 3.5c-.02.02-1.4 2.8-1.4 2.8l2.8-1.4 3.5 3.5c.53-.53.1-1.86-.95-3.38l4.02-5.16c1.04.55 2.01.65 2.51.14L9.39 1z", - ], - unresolve: [ - "M11 3c-.55 0-1.07.09-1.57.26a6.46 6.46 0 010 9.48c.5.17 1.02.26 1.57.26 2.76 0 5-2.24 5-5s-2.24-5-5-5zM9.78 9.38l.09-.27c.08-.36.13-.73.13-1.11s-.05-.75-.13-1.11l-.09-.27a5.32 5.32 0 00-.29-.79l-.12-.21c-.14-.27-.31-.52-.51-.76a.7.7 0 00-.08-.1c-.24-.27-.49-.52-.78-.74-.43-.32-.92-.58-1.45-.75l.01-.01c-.1-.03-.2-.05-.3-.08-.12-.03-.23-.07-.36-.09A5.28 5.28 0 005 3C2.24 3 0 5.24 0 8s2.24 5 5 5c.31 0 .61-.04.9-.09.12-.02.24-.06.36-.09.1-.03.21-.04.3-.08l-.01-.01c.88-.29 1.64-.8 2.22-1.49.03-.03.06-.07.09-.1.19-.24.36-.49.51-.76.04-.07.08-.14.11-.21.13-.25.23-.52.3-.79z", - ], - updated: [ - "M8 0a7.95 7.95 0 00-6 2.74V1c0-.55-.45-1-1-1S0 .45 0 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H3.54C4.64 2.78 6.22 2 8 2c3.31 0 6 2.69 6 6 0 2.61-1.67 4.81-4 5.63-.63.22-1.29.37-2 .37-3.31 0-6-2.69-6-6 0-.55-.45-1-1-1s-1 .45-1 1c0 4.42 3.58 8 8 8 .34 0 .67-.03 1-.07.02 0 .04-.01.06-.01C12.98 15.4 16 12.06 16 8c0-4.42-3.58-8-8-8zm3 5c-.28 0-.53.11-.71.29L7 8.58 5.71 7.29a1.003 1.003 0 00-1.42 1.42l2 2c.18.18.43.29.71.29.28 0 .53-.11.71-.29l4-4A1.003 1.003 0 0011 5z", - ], - upload: [ - "M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3 8c-.28 0-.53-.11-.71-.29L9 6.41V12c0 .55-.45 1-1 1s-1-.45-1-1V6.41l-1.29 1.3a1.003 1.003 0 01-1.42-1.42l3-3C7.47 3.11 7.72 3 8 3s.53.11.71.29l3 3A1.003 1.003 0 0111 8z", - ], - user: [ - "M7.99-.01A7.998 7.998 0 00.03 8.77c.01.09.03.18.04.28.02.15.04.31.07.47.02.11.05.22.08.34.03.13.06.26.1.38.04.12.08.25.12.37.04.11.08.21.12.32a6.583 6.583 0 00.3.65c.07.14.14.27.22.4.04.07.08.13.12.2l.27.42.1.13a7.973 7.973 0 003.83 2.82c.03.01.05.02.07.03.37.12.75.22 1.14.29l.2.03c.39.06.79.1 1.2.1s.81-.04 1.2-.1l.2-.03c.39-.07.77-.16 1.14-.29.03-.01.05-.02.07-.03a8.037 8.037 0 003.83-2.82c.03-.04.06-.08.09-.13.1-.14.19-.28.28-.42.04-.07.08-.13.12-.2.08-.13.15-.27.22-.41.04-.08.08-.17.12-.26.06-.13.11-.26.17-.39.04-.1.08-.21.12-.32.04-.12.08-.24.12-.37.04-.13.07-.25.1-.38.03-.11.06-.22.08-.34.03-.16.05-.31.07-.47.01-.09.03-.18.04-.28.02-.26.04-.51.04-.78-.03-4.41-3.61-7.99-8.03-7.99zm0 14.4c-1.98 0-3.75-.9-4.92-2.31.67-.36 1.49-.66 2.14-.95 1.16-.52 1.04-.84 1.08-1.27.01-.06.01-.11.01-.17-.41-.36-.74-.86-.96-1.44v-.01c0-.01-.01-.02-.01-.02-.05-.13-.09-.26-.12-.39-.28-.05-.44-.35-.5-.63-.06-.11-.18-.38-.15-.69.04-.41.2-.59.38-.67v-.06c0-.51.05-1.24.14-1.72.02-.13.05-.26.09-.39.17-.59.53-1.12 1.01-1.49.49-.38 1.19-.59 1.82-.59.62 0 1.32.2 1.82.59.48.37.84.9 1.01 1.49.04.13.07.26.09.4.09.48.14 1.21.14 1.72v.07c.18.08.33.26.37.66.03.31-.1.58-.16.69-.06.27-.21.57-.48.62-.03.13-.07.26-.12.38 0 .01-.01.04-.01.04-.21.57-.54 1.06-.94 1.42 0 .06.01.13.01.19.04.43-.12.75 1.05 1.27.65.29 1.47.6 2.14.95a6.415 6.415 0 01-4.93 2.31z", - ], - variable: [ - "M3.94 3.15c.47-.66 1.05-1.24 1.76-1.73l.13-.4c-1.11.45-2.05 1.01-2.84 1.7-1.02.88-1.8 1.9-2.32 3.05C.22 6.76 0 7.75 0 8.75c0 1.75.66 3.5 1.99 5.25l.13-.42c-.39-.94-.59-1.82-.59-2.63 0-1.28.22-2.64.67-4.1.45-1.45 1.03-2.69 1.74-3.7zm7.51 6.41l-.27-.15c-.3.41-.52.66-.66.77-.09.06-.21.1-.33.1-.15 0-.3-.1-.45-.28-.25-.33-.59-1.22-1.01-2.69.38-.65.69-1.08.95-1.28.19-.15.39-.22.59-.22.08 0 .22.03.43.08.2.06.39.08.54.08.22 0 .4-.07.54-.22.15-.15.22-.34.22-.57 0-.25-.07-.45-.22-.59-.15-.15-.35-.22-.63-.22-.24 0-.47.06-.69.17-.21.11-.49.36-.82.74-.25.28-.61.78-1.1 1.48a6.72 6.72 0 00-.97-2.38l-2.59.44-.05.27c.19-.04.36-.06.49-.06.26 0 .47.11.64.33.26.34.63 1.38 1.11 3.12-.37.49-.63.81-.77.96-.23.24-.41.4-.56.47-.11.06-.24.09-.39.09-.11 0-.29-.06-.53-.18-.17-.07-.32-.11-.45-.11-.25 0-.46.08-.62.24-.16.16-.24.37-.24.61 0 .23.08.42.23.57.15.15.35.22.61.22.25 0 .48-.05.7-.15.22-.1.49-.32.82-.65.33-.33.78-.86 1.36-1.59.22.69.42 1.19.58 1.51.16.31.35.54.56.68.21.14.47.21.79.21.31 0 .62-.11.93-.33.4-.29.82-.77 1.26-1.47zm2.56-8.54l-.12.42c.39.95.59 1.82.59 2.64 0 1.09-.17 2.26-.5 3.51-.26.96-.6 1.87-1.02 2.71-.42.85-.82 1.51-1.21 1.98-.39.48-.87.92-1.44 1.32l-.14.4c1.11-.45 2.05-1.02 2.84-1.7 1.03-.89 1.81-1.91 2.33-3.05.44-.99.66-1.99.66-3 0-1.73-.66-3.48-1.99-5.23z", - ], - "vertical-bar-chart-asc": [ - "M6 7c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1zM2 9c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1s1-.45 1-1v-5c0-.55-.45-1-1-1zm8-5c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1s1-.45 1-1V5c0-.55-.45-1-1-1zm4-4c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - "vertical-bar-chart-desc": [ - "M6 4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1s1-.45 1-1V5c0-.55-.45-1-1-1zM2 0c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm8 7c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1zm4 2c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1s1-.45 1-1v-5c0-.55-.45-1-1-1z", - ], - "vertical-distribution": [ - "M1 2h14c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1s.45 1 1 1zm14 11H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM3 5c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1H3z", - ], - video: [ - "M15 2H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zM5 11V5l6 3-6 3z", - ], - virus: [ - "M11.918 11.107l.737.737.052-.051A1 1 0 0114.2 13.12l-.078.087-1.414 1.414a1 1 0 01-1.492-1.327l.029-.033-.863-.863c-.426.231-.89.402-1.38.502L9 14l.117.007A1 1 0 019 16H7l-.117-.007A1 1 0 017 14v-1.1a4.967 4.967 0 01-1.447-.539l-.846.846.078.087a1 1 0 01-1.492 1.327l-1.414-1.414-.078-.087a1 1 0 011.492-1.327l.744-.744A4.986 4.986 0 013.23 9.5H2a1 1 0 01-1.993.117L0 9.5v-2a1 1 0 011.993-.117L2 7.5h1.025a4.973 4.973 0 01.905-2.405l-.512-.513-.125.125A1 1 0 011.8 3.38l.078-.087 1.414-1.414a1 1 0 011.529 1.277l.573.575a4.969 4.969 0 011.604-.63V2l-.116-.007a1 1 0 010-1.986L7 0h2a1 1 0 01.117 1.993L9 2l.001 1.1c.639.13 1.233.381 1.757.73l.535-.537-.078-.087a1 1 0 011.492-1.327l1.414 1.414.078.087a1 1 0 01-1.492 1.327l-.535.536a4.97 4.97 0 01.803 2.257H14l.007-.117A1 1 0 0116 7.5v2l-.007.117A1 1 0 0114 9.5h-1.229a4.987 4.987 0 01-.853 1.607zM10 9a1 1 0 100 2 1 1 0 000-2zM6.5 5a1.5 1.5 0 100 3 1.5 1.5 0 000-3z", - ], - "volume-down": [ - "M9 2c-.28 0-.53.11-.71.29L5.59 5H3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2.59l2.71 2.71c.17.18.42.29.7.29.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm3.57 1.44l-1.59 1.22C11.62 5.61 12 6.76 12 8s-.38 2.39-1.02 3.34l1.59 1.22C13.47 11.27 14 9.7 14 8c0-1.7-.53-3.27-1.43-4.56z", - ], - "volume-off": [ - "M11 2c-.28 0-.53.11-.71.29L7.59 5H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2.59l2.71 2.71c.17.18.42.29.7.29.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z", - ], - "volume-up": [ - "M7 1.86c-.28 0-.53.11-.71.29l-2.7 2.71H1c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2.59l2.71 2.71a1.003 1.003 0 001.71-.71v-10c-.01-.55-.46-1-1.01-1zm6.74-.99l-1.58 1.22A9.985 9.985 0 0114 7.86c0 2.16-.69 4.15-1.85 5.78l1.58 1.22c1.42-1.97 2.26-4.38 2.26-7 .01-2.61-.84-5.02-2.25-6.99zM8.98 4.52C9.62 5.48 10 6.63 10 7.86s-.38 2.39-1.02 3.34l1.59 1.22c.9-1.29 1.43-2.86 1.43-4.56 0-1.7-.53-3.27-1.43-4.56L8.98 4.52z", - ], - walk: [ - "M13 8h-2c-.16 0-.31-.05-.44-.11v.01l-1.02-.51-.37 1.86 1.38.92-.01.02c.27.17.46.46.46.81v4c0 .55-.45 1-1 1s-1-.45-1-1v-3.46l-1.27-.85-1.8 4.67h-.01A.98.98 0 015 16c-.55 0-1-.45-1-1 0-.13.03-.25.07-.36h-.01L7.39 6H5.62l-.73 1.45h-.01C4.72 7.77 4.39 8 4 8c-.55 0-1-.45-1-1 0-.16.05-.31.11-.44H3.1l1-2h.01c.17-.33.5-.56.89-.56h3.16l.29-.75C8.17 2.9 8 2.47 8 2c0-1.1.9-2 2-2s2 .9 2 2c0 1-.73 1.82-1.69 1.97l-.5 1.32 1.43.71H13c.55 0 1 .45 1 1s-.45 1-1 1z", - ], - "warning-sign": [ - "M15.84 13.5l.01-.01-7-12-.01.01c-.17-.3-.48-.5-.85-.5s-.67.2-.85.5l-.01-.01-7 12 .01.01c-.09.15-.15.31-.15.5 0 .55.45 1 1 1h14c.55 0 1-.45 1-1 0-.19-.06-.35-.15-.5zm-6.85-.51h-2v-2h2v2zm0-3h-2v-5h2v5z", - ], - "waterfall-chart": [ - "M8 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-4 4h1c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm7-6c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1s-1 .45-1 1v1c0 .55.45 1 1 1zm4-3h-1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 10H2V3c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - waves: [ - "M3 1a1 1 0 01.894.553c.102.202.393.607.779.957.419.381.72.49.827.49.108 0 .408-.109.827-.49.386-.35.677-.755.779-.957a1 1 0 011.788 0c.102.202.393.607.779.957.419.381.72.49.827.49.108 0 .408-.109.827-.49.386-.35.677-.755.779-.957a1 1 0 011.788 0c.173.344.38.75.637 1.072.277.347.437.375.469.375a1 1 0 110 2c-.968 0-1.642-.64-2.03-1.125a4.755 4.755 0 01-.076-.097 6.093 6.093 0 01-.221.212C12.175 4.442 11.393 5 10.5 5c-.892 0-1.675-.558-2.173-1.01A6.243 6.243 0 018 3.67c-.105.11-.214.217-.327.32C7.175 4.442 6.393 5 5.5 5c-.892 0-1.675-.558-2.173-1.01a6.119 6.119 0 01-.221-.212l-.075.097C2.64 4.36 1.968 5 1 5a1 1 0 010-2c.032 0 .191-.028.47-.375.256-.321.463-.728.636-1.072A1 1 0 013 1zm0 5a1 1 0 01.894.553c.102.202.393.607.779.957.419.381.72.49.827.49.108 0 .408-.109.827-.49.386-.35.677-.755.779-.957a1 1 0 011.788 0c.102.202.393.607.779.957.419.381.72.49.827.49.108 0 .408-.109.827-.49.386-.35.677-.755.779-.957a1 1 0 011.788 0c.173.344.38.75.637 1.072.277.347.437.375.469.375a1 1 0 110 2c-.968 0-1.642-.639-2.03-1.125a4.726 4.726 0 01-.076-.097 6.093 6.093 0 01-.221.212c-.498.452-1.28 1.01-2.173 1.01-.892 0-1.675-.558-2.173-1.01A6.243 6.243 0 018 8.67c-.105.11-.214.217-.327.32C7.175 9.442 6.393 10 5.5 10c-.892 0-1.675-.558-2.173-1.01a6.119 6.119 0 01-.221-.212l-.075.097C2.64 9.36 1.968 10 1 10a1 1 0 010-2c.032 0 .191-.028.47-.375.256-.321.463-.728.636-1.072A1 1 0 013 6zm.894 5.553a1 1 0 00-1.788 0c-.173.344-.38.75-.637 1.072-.278.347-.437.375-.469.375a1 1 0 100 2c.968 0 1.642-.639 2.03-1.125a4.9 4.9 0 00.076-.097c.072.073.146.143.221.212.498.452 1.28 1.01 2.173 1.01.892 0 1.675-.558 2.173-1.01.113-.103.222-.21.327-.32.105.11.214.217.327.32.498.452 1.28 1.01 2.173 1.01.892 0 1.675-.558 2.173-1.01.075-.069.149-.14.221-.212a4.9 4.9 0 00.075.097C13.36 14.36 14.032 15 15 15a1 1 0 100-2c-.032 0-.191-.028-.47-.375-.256-.321-.463-.728-.636-1.072a1 1 0 00-1.788 0c-.102.202-.393.607-.779.957-.419.381-.72.49-.827.49-.108 0-.408-.109-.827-.49-.386-.35-.677-.755-.779-.957a1 1 0 00-1.788 0c-.102.202-.393.607-.779.957-.419.381-.72.49-.827.49-.108 0-.408-.109-.827-.49-.386-.35-.677-.755-.779-.957z", - ], - widget: [ - "M13 11h2V5h-2v6zM3 5H1v6h2V5zm11-1c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM2 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM5 3h6V1H5v2zM2 0C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm3 15h6v-2H5v2z", - ], - "widget-button": [ - "M1 3h14c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1zm1 2v6h12V5H2zm3 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", - ], - "widget-footer": [ - "M14 0H2c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14H3v-3h10v3zm0-4H3V2h10v8z", - ], - "widget-header": [ - "M14 0H2c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14H3V6h10v8zm0-9H3V2h10v3z", - ], - wind: [ - "M10 4a2 2 0 112 2H4a1 1 0 000 2h8a4 4 0 10-4-4 1 1 0 002 0zM1 9a1 1 0 100 2h7.5a1.5 1.5 0 010 3c-.749 0-1.386-.538-1.52-1.199a1 1 0 10-1.96.398C5.35 14.82 6.83 16 8.5 16a3.5 3.5 0 100-7H1z", - ], - wrench: [ - "M15.83 3.7l-3.06 3.05-2.84-.7-.7-2.83L12.29.17a5.004 5.004 0 00-4.83 1.29 4.967 4.967 0 00-1.12 5.36L.58 12.58c-.36.36-.58.86-.58 1.41 0 1.1.9 2 2 2 .55 0 1.05-.22 1.41-.59l5.77-5.77c1.79.69 3.91.33 5.35-1.12 1.32-1.3 1.74-3.15 1.3-4.81z", - ], - "zoom-in": [ - "M7.99 5.99v-2c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2zm7.56 7.44l-2.67-2.68a6.94 6.94 0 001.11-3.76c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7c1.39 0 2.68-.42 3.76-1.11l2.68 2.67a1.498 1.498 0 102.12-2.12zm-8.56-1.44c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", - ], - "zoom-out": [ - "M3.99 5.99c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1h-6zm11.56 7.44l-2.67-2.68a6.94 6.94 0 001.11-3.76c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7c1.39 0 2.68-.42 3.76-1.11l2.68 2.67a1.498 1.498 0 102.12-2.12zm-8.56-1.44c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", - ], - "zoom-to-fit": [ - "M11 10a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42L12.59 8 11.3 9.29c-.19.18-.3.43-.3.71zM1 5c.55 0 1-.45 1-1V2h2c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v3c0 .55.45 1 1 1zm4 1a1.003 1.003 0 00-1.71-.71l-2 2C1.11 7.47 1 7.72 1 8c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L3.41 8 4.7 6.71c.19-.18.3-.43.3-.71zm1-1c.28 0 .53-.11.71-.29L8 3.41 9.29 4.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2C8.53 1.11 8.28 1 8 1s-.53.11-.71.29l-2 2A1.003 1.003 0 006 5zm9 6c-.55 0-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm0-11h-3c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zM4 14H2v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm6-3c-.28 0-.53.11-.71.29L8 12.59 6.71 11.3A.965.965 0 006 11a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 0010 11z", - ], - }, - xn = { - add: [ - "M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm5-9h-4V5c0-.55-.45-1-1-1s-1 .45-1 1v4H5c-.55 0-1 .45-1 1s.45 1 1 1h4v4c0 .55.45 1 1 1s1-.45 1-1v-4h4c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "add-clip": [ - "M15 0a1 1 0 011 1v3h3a1 1 0 110 2h-3v3a1 1 0 11-2 0V6h-3a1 1 0 110-2h3V1a1 1 0 011-1zM1 4a1 1 0 00-1 1v4a1 1 0 002 0V6h3a1 1 0 000-2H1zM0 19a1 1 0 001 1h4a1 1 0 100-2H2v-3a1 1 0 10-2 0v4zm15 1h-4a1 1 0 110-2h3v-3a1 1 0 112 0v4a1 1 0 01-1 1zm-7-5a3 3 0 100-6 3 3 0 000 6z", - ], - "add-column-left": [ - "M4 11h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1H8V7c0-.55-.45-1-1-1s-1 .45-1 1v2H4c-.55 0-1 .45-1 1s.45 1 1 1zM19 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-7 18H2V2h10v16zm6 0h-5V2h5v16z", - ], - "add-column-right": [ - "M10 11h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V7c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1zm9-11H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM7 18H2V2h5v16zm11 0H8V2h10v16z", - ], - "add-location": [ - "M10 0a1 1 0 010 2 8 8 0 108 8 1 1 0 012 0c0 5.523-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0zm0 6a4 4 0 110 8 4 4 0 010-8zm6-6c.6 0 1 .4 1 1v2h2c.6 0 1 .4 1 1s-.4 1-1 1h-2v2c0 .6-.4 1-1 1s-1-.4-1-1V5h-2c-.6 0-1-.4-1-1 0-.5.4-1 1-1h2V1c0-.6.4-1 1-1z", - ], - "add-row-bottom": [ - "M19 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18H2V8h16v10zm0-11H2V2h16v5zM7 14h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2v-2c0-.55-.45-1-1-1s-1 .45-1 1v2H7c-.55 0-1 .45-1 1s.45 1 1 1z", - ], - "add-row-top": [ - "M7 8h2v2c0 .55.45 1 1 1s1-.45 1-1V8h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V4c0-.55-.45-1-1-1s-1 .45-1 1v2H7c-.55 0-1 .45-1 1s.45 1 1 1zm12-8H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18H2v-5h16v5zm0-6H2V2h16v10z", - ], - "add-to-artifact": [ - "M13 12H1c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0 4H1c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zM1 6h9c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm12 2H1c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm6-4h-2V2c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V6h2c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "add-to-folder": [ - "M.01 10V6H20v10c0 .55-.45 1-1 1H9.995v-3.99C9.965 11.332 8.635 10 6.987 10H.01zM19 3c.55 0 1 .45.99 1v1H0V2c0-.55.45-1 1-1h5.997c.28 0 .53.11.71.29L9.414 3H19zM6.987 12c.55 0 .999.45 1.009 1.01v5c0 .55-.45 1-1 1s-.999-.45-.999-1v-2.59l-4.288 4.29a1.003 1.003 0 01-1.42-1.42L4.579 14H1.989c-.55 0-1-.45-1-1s.45-1 1-1h4.998z", - ], - airplane: [ - "M20 2c0-1.1-.9-2-2-2-.55 0-1.05.22-1.41.59l-4.84 4.84L2 1 1 3l7.53 5.64L4.17 13H1l-1 1 4 2 2 4 1-1v-3.17l4.36-4.36L17 19l2-1-4.43-9.74 4.84-4.84c.37-.37.59-.87.59-1.42z", - ], - "align-center": [ - "M5 5c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1H5zM1 3h18c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm12 12c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1h6zm4 2H3c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm2-8H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "align-justify": [ - "M1 3h18c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm18 14H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm0-12H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm0 4H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm0 4H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "align-left": [ - "M1 7h10c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm0-4h18c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm14 14H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm4-8H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zM1 15h6c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1z", - ], - "align-right": [ - "M19 17H5c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM1 3h18c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm18 10h-6c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H9c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "alignment-bottom": [ - "M12 16h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1zm7 2H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zM4 16h4c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1z", - ], - "alignment-horizontal-center": [ - "M19 9h-2V7c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v2H9V3c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v6H1c-.55 0-1 .45-1 1s.45 1 1 1h2v6c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-6h2v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "alignment-left": [ - "M1 0C.45 0 0 .45 0 1v18c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm11 11H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm7-8H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - "alignment-right": [ - "M19 0c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm-4 11H8c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm0-8H1c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - "alignment-top": [ - "M8 4H4c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm11-4H1C.45 0 0 .45 0 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm-3 4h-4c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1z", - ], - "alignment-vertical-center": [ - "M17 3h-6V1c0-.55-.45-1-1-1S9 .45 9 1v2H3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h6v2H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-2V9h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - annotation: [ - "M9.41 13.41l7.65-7.65-2.83-2.83-7.65 7.65 2.83 2.83zm10-10c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2-.55 0-1.05.22-1.41.59l-1.65 1.65 2.83 2.83 1.64-1.66zM18 18H2V2h8.93l2-2H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V7.07l-2 2V18zM4 16l4.41-1.59-2.81-2.79L4 16z", - ], - antenna: [ - "M2.01 10.758a8.025 8.025 0 001.01 3.204l.02.035c.034.058.061.117.084.178.163.44.054.951-.33 1.239-.435.328-1.059.242-1.342-.224a9.797 9.797 0 01-.221-.383 10 10 0 1117.48.106c-.269.474-.89.58-1.335.267-.392-.275-.518-.783-.37-1.228a1.19 1.19 0 01.078-.18l.019-.036A8.026 8.026 0 102.01 10.758zm4.272.772a1.464 1.464 0 01.091.32c.07.425-.052.87-.402 1.128-.44.325-1.068.235-1.316-.252a6 6 0 1110.734-.09c-.24.492-.867.593-1.312.275-.354-.253-.483-.695-.42-1.122a1.462 1.462 0 01.085-.321 4.021 4.021 0 00-5.87-4.878 4.02 4.02 0 00-1.59 4.94zm4.712 2.583A.999.999 0 0011 14v-4a1 1 0 10-2 0v4c0 .038.002.076.006.113l-3.753 4.223a1 1 0 001.494 1.328L10 16.005l3.252 3.66a1 1 0 101.495-1.33l-3.753-4.222z", - ], - "app-header": [ - "M19 0a1 1 0 011 1v18a1 1 0 01-1 1H1a1 1 0 01-1-1V1a1 1 0 011-1h18zM8 6a1 1 0 00-1.993-.117L6 6v8a1 1 0 001.993.117L8 14v-3h4v3a1 1 0 001.993.117L14 14V6a1 1 0 00-1.993-.117L12 6v3H8V6z", - ], - application: [ - "M3.5 9h9c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-9c-.28 0-.5.22-.5.5s.22.5.5.5zm0 2h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5s.22.5.5.5zM19 1H1c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm-1 16H2V6h16v11zM3.5 13h7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-7c-.28 0-.5.22-.5.5s.22.5.5.5z", - ], - applications: [ - "M15 5H1c-.55 0-1 .45-1 1v13c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 13H2V8h12v10zM3.5 10h7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-7c-.28 0-.5.22-.5.5s.22.5.5.5zm0 2h3c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-3c-.28 0-.5.22-.5.5s.22.5.5.5zm0 2h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5s.22.5.5.5zM19 0H5c-.55 0-1 .45-1 1v3h2V3h12v10h-1v2h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - archive: [ - "M16.434 0a1 1 0 01.857.486L20 5v14a1 1 0 01-1 1H1a1 1 0 01-1-1V5L2.709.486A1 1 0 013.566 0h12.868zM10 8c-.55 0-1 .45-1 1v4.58l-1.29-1.29-.081-.073A.996.996 0 007 11.99a1.003 1.003 0 00-.71 1.71l3 3 .096.084c.168.13.38.206.614.206.28 0 .53-.11.71-.29l3-3 .084-.096a1.003 1.003 0 00-1.504-1.324L11 13.58V9l-.007-.116A1.004 1.004 0 0010 8zm6-6H4L2 5.002h16L16 2z", - ], - "area-of-interest": [ - "M5 4.664C5 2.09 7.241 0 10 0s4.99 2.091 5 4.664C15 7.245 10 14 10 14S5 7.245 5 4.664zM8 5a2 2 0 104.001-.001A2 2 0 008 5zM.504 12.132l4.302-2.458c.322.576.662 1.145.995 1.681l.025.04-3.294 1.881L6.468 18h7.064l3.936-4.724-3.293-1.882.024-.039c.333-.536.673-1.105.995-1.681l4.302 2.458a1 1 0 01.272 1.508l-5 6A1 1 0 0114 20H6a1 1 0 01-.768-.36l-5-6a1 1 0 01.272-1.508z", - ], - array: [ - "M19 0a1 1 0 01.993.883L20 1v18a1 1 0 01-.883.993L19 20h-4a1 1 0 01-.117-1.993L15 18h3V2h-3a1 1 0 01-.993-.883L14 1a1 1 0 01.883-.993L15 0h4zM5 0a1 1 0 01.117 1.993L5 2H2v16h3a1 1 0 01.993.883L6 19a1 1 0 01-.883.993L5 20H1a1 1 0 01-.993-.883L0 19V1A1 1 0 01.883.007L1 0h4zm5 9a1 1 0 110 2 1 1 0 010-2zM6 9a1 1 0 110 2 1 1 0 010-2zm8 0a1 1 0 110 2 1 1 0 010-2z", - ], - "array-boolean": [ - "M19 0a1 1 0 01.993.883L20 1v18a1 1 0 01-.883.993L19 20h-4a1 1 0 01-.117-1.993L15 18h3V2h-3a1 1 0 01-.993-.883L14 1a1 1 0 01.883-.993L15 0h4zM5 0a1 1 0 01.117 1.993L5 2H2v16h3a1 1 0 01.993.883L6 19a1 1 0 01-.883.993L5 20H1a1 1 0 01-.993-.883L0 19V1A1 1 0 01.883.007L1 0h4zm10 7a1 1 0 01.993.883L16 8v4a1 1 0 01-.883.993L15 13H5a1 1 0 01-.993-.883L4 12V8a1 1 0 01.883-.993L5 7h10zm0 1h-5v4h5V8z", - ], - "array-date": [ - "M19 0a1 1 0 01.993.883L20 1v18a1 1 0 01-.883.993L19 20h-4a1 1 0 01-.117-1.993L15 18h3V2h-3a1 1 0 01-.993-.883L14 1a1 1 0 01.883-.993L15 0h4zM5 0a1 1 0 01.117 1.993L5 2H2v16h3a1 1 0 01.993.883L6 19a1 1 0 01-.883.993L5 20H1a1 1 0 01-.993-.883L0 19V1A1 1 0 01.883.007L1 0h4zm2.5 5a.5.5 0 01.5.5V6h4v-.5a.5.5 0 01.5-.5h1a.5.5 0 01.5.5V6h1a1 1 0 01.993.883L16 7v7a1 1 0 01-.883.993L15 15H5a1 1 0 01-.993-.883L4 14V7a1 1 0 01.883-.993L5 6h1v-.5a.5.5 0 01.5-.5h1zM15 9H5v5h10V9z", - ], - "array-numeric": [ - "M19 0a1 1 0 01.993.883L20 1v18a1 1 0 01-.883.993L19 20h-4a1 1 0 01-.117-1.993L15 18h3V2h-3a1 1 0 01-.993-.883L14 1a1 1 0 01.883-.993L15 0h4zM5 0a1 1 0 01.117 1.993L5 2H2v16h3a1 1 0 01.993.883L6 19a1 1 0 01-.883.993L5 20H1a1 1 0 01-.993-.883L0 19V1A1 1 0 01.883.007L1 0h4zm8.995 6.09c.32 0 .603.047.85.14a1.679 1.679 0 011.015.985c.09.23.135.482.135.755 0 .287-.063.552-.19.795a1.642 1.642 0 01-.57.615v.02l.101.05c.068.039.138.09.209.155.107.097.203.215.29.355a2.09 2.09 0 01.3 1.09c0 .313-.053.597-.16.85a1.898 1.898 0 01-1.12 1.065 2.42 2.42 0 01-.85.145c-.533 0-.99-.127-1.37-.38a1.702 1.702 0 01-.73-1.08c-.013-.067.013-.11.08-.13l.87-.2.041-.003c.038.004.064.028.079.073.073.2.193.37.36.51.167.14.39.21.67.21.32 0 .567-.095.74-.285.173-.19.26-.432.26-.725 0-.347-.1-.618-.3-.815-.2-.197-.47-.295-.81-.295h-.29l-.044-.006c-.037-.013-.056-.044-.056-.094V9.1l.006-.044c.013-.037.044-.056.094-.056h.27l.145-.008a.925.925 0 00.575-.262c.18-.18.27-.42.27-.72 0-.273-.08-.495-.24-.665-.16-.17-.383-.255-.67-.255-.253 0-.453.063-.6.19-.147.127-.25.297-.31.51-.02.06-.06.083-.12.07l-.85-.2-.042-.015c-.035-.02-.048-.055-.038-.105a1.684 1.684 0 01.645-1.035c.17-.13.37-.232.6-.305.23-.073.482-.11.755-.11zm-7.99.11l.044.006c.037.013.056.044.056.094v6.6l-.006.044c-.013.037-.044.056-.094.056h-.92l-.044-.006c-.037-.013-.056-.044-.056-.094V7.54h-.02l-1.04.73-.04.02c-.047.016-.07-.01-.07-.08V7.19l.008-.051a.196.196 0 01.062-.089l1.09-.79.051-.033a.295.295 0 01.129-.027h.85zm3.34-.11c.32 0 .603.05.85.15.247.1.455.235.625.405.17.17.3.37.39.6.09.23.135.478.135.745 0 .307-.057.588-.17.845a3.16 3.16 0 01-.47.745l-1.98 2.4V12h2.52l.044.006c.037.013.056.044.056.094v.8l-.006.044c-.013.037-.044.056-.094.056h-3.82l-.044-.006c-.037-.013-.056-.044-.056-.094v-.75l.006-.05a.165.165 0 01.044-.08l2.4-2.99.124-.167c.077-.11.143-.222.196-.333.08-.167.12-.347.12-.54a.92.92 0 00-.235-.64c-.157-.173-.378-.26-.665-.26-.273 0-.487.077-.64.23-.153.153-.247.36-.28.62-.013.067-.05.093-.11.08l-.88-.18-.043-.015c-.035-.02-.047-.055-.037-.105a1.78 1.78 0 01.56-1.115c.167-.157.372-.282.615-.375a2.35 2.35 0 01.845-.14z", - ], - "array-string": [ - "M19 0a1 1 0 01.993.883L20 1v18a1 1 0 01-.883.993L19 20h-4a1 1 0 01-.117-1.993L15 18h3V2h-3a1 1 0 01-.993-.883L14 1a1 1 0 01.883-.993L15 0h4zM5 0a1 1 0 01.117 1.993L5 2H2v16h3a1 1 0 01.993.883L6 19a1 1 0 01-.883.993L5 20H1a1 1 0 01-.993-.883L0 19V1A1 1 0 01.883.007L1 0h4zm2.012 6c.643 0 1.203.266 1.68.797.477.53.715 1.246.715 2.145a4.472 4.472 0 01-.965 2.814c-.644.83-1.66 1.5-3.047 2.011v-.581l.26-.104a3.87 3.87 0 001.624-1.285c.457-.632.686-1.29.686-1.971 0-.148-.023-.256-.07-.326-.023-.047-.054-.07-.093-.07-.038 0-.1.031-.186.093-.248.179-.558.268-.93.268-.45 0-.843-.18-1.18-.541A1.817 1.817 0 015 7.965c0-.527.194-.986.581-1.378A1.934 1.934 0 017.011 6zm5.593 0c.643 0 1.203.266 1.68.797.477.53.715 1.246.715 2.145a4.472 4.472 0 01-.965 2.814c-.644.83-1.659 1.5-3.047 2.011v-.581l.26-.104a3.87 3.87 0 001.624-1.285c.457-.632.686-1.29.686-1.971 0-.148-.023-.256-.07-.326-.023-.047-.054-.07-.093-.07-.038 0-.1.031-.186.093-.248.179-.558.268-.93.268-.45 0-.843-.18-1.18-.541a1.817 1.817 0 01-.506-1.285c0-.527.194-.986.581-1.378A1.934 1.934 0 0112.604 6z", - ], - "array-timestamp": [ - "M19 0a1 1 0 01.993.883L20 1v18a1 1 0 01-.883.993L19 20h-4a1 1 0 01-.117-1.993L15 18h3V2h-3a1 1 0 01-.993-.883L14 1a1 1 0 01.883-.993L15 0h4zM5 0a1 1 0 01.117 1.993L5 2H2v16h3a1 1 0 01.993.883L6 19a1 1 0 01-.883.993L5 20H1a1 1 0 01-.993-.883L0 19V1A1 1 0 01.883.007L1 0h4zm5 4a6 6 0 110 12 6 6 0 010-12zm0 1a5 5 0 100 10 5 5 0 000-10zm2.854 2.146a.5.5 0 01.057.638l-.057.07-2.5 2.5a.5.5 0 01-.638.057l-.07-.057-1.5-1.5a.5.5 0 01.638-.765l.07.057L10 9.293l2.146-2.147a.5.5 0 01.708 0z", - ], - "arrow-bottom-left": [ - "M18 3a1.003 1.003 0 00-1.71-.71L4 14.59V7c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1H5.41l12.3-12.29c.18-.18.29-.43.29-.71z", - ], - "arrow-bottom-right": [ - "M17 6c-.55 0-1 .45-1 1v7.59L3.71 2.29a1.003 1.003 0 00-1.42 1.42L14.59 16H7c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1z", - ], - "arrow-down": [ - "M16 11c-.3 0-.5.1-.7.3L11 15.6V2c0-.5-.4-1-1-1s-1 .5-1 1v13.6l-4.3-4.3c-.2-.2-.4-.3-.7-.3-.5 0-1 .4-1 1 0 .3.1.5.3.7l6 6c.2.2.4.3.7.3s.5-.1.7-.3l6-6c.2-.2.3-.4.3-.7 0-.6-.5-1-1-1z", - ], - "arrow-left": [ - "M18 9H4.41L8.7 4.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-6 6c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l6 6a1.003 1.003 0 001.42-1.42L4.41 11H18c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "arrow-right": [ - "M18.71 9.29l-6-6a1.003 1.003 0 00-1.42 1.42L15.59 9H2c-.55 0-1 .45-1 1s.45 1 1 1h13.59l-4.29 4.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l6-6c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z", - ], - "arrow-top-left": [ - "M17.71 16.29L5.41 4H13c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1s1-.45 1-1V5.41L16.29 17.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z", - ], - "arrow-top-right": [ - "M17 2H7c-.55 0-1 .45-1 1s.45 1 1 1h7.59L2.29 16.29a1.003 1.003 0 001.42 1.42L16 5.41V13c0 .55.45 1 1 1s1-.45 1-1V3c0-.55-.45-1-1-1z", - ], - "arrow-up": [ - "M16.7 7.3l-6-6c-.2-.2-.4-.3-.7-.3s-.5.1-.7.3l-6 6c-.2.2-.3.4-.3.7 0 .6.5 1 1 1 .3 0 .5-.1.7-.3L9 4.4V18c0 .5.4 1 1 1s1-.5 1-1V4.4l4.3 4.3c.2.2.4.3.7.3.5 0 1-.4 1-1 0-.3-.1-.5-.3-.7z", - ], - "arrows-horizontal": [ - "M19.7 9.3l-5-5c-.2-.2-.4-.3-.7-.3-.6 0-1 .4-1 1 0 .3.1.5.3.7L16.6 9H3.4l3.3-3.3c.2-.2.3-.4.3-.7 0-.6-.4-1-1-1-.3 0-.5.1-.7.3l-5 5c-.2.2-.3.4-.3.7s.1.5.3.7l5 5c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7L3.4 11h13.2l-3.3 3.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3l5-5c.2-.2.3-.4.3-.7s-.1-.5-.3-.7z", - ], - "arrows-vertical": [ - "M15 13c-.3 0-.5.1-.7.3L11 16.6V3.4l3.3 3.3c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7l-5-5c-.2-.2-.4-.3-.7-.3s-.5.1-.7.3l-5 5c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3L9 3.4v13.2l-3.3-3.3c-.2-.2-.4-.3-.7-.3-.6 0-1 .4-1 1 0 .3.1.5.3.7l5 5c.2.2.4.3.7.3s.5-.1.7-.3l5-5c.2-.2.3-.4.3-.7 0-.5-.4-1-1-1z", - ], - asterisk: [ - "M18.52 14.17l.01-.02L11.89 10l6.64-4.15-.01-.02A.97.97 0 0019 5c0-.55-.45-1-1-1-.2 0-.37.07-.52.17l-.01-.02L11 8.2V1c0-.55-.45-1-1-1S9 .45 9 1v7.2L2.53 4.15l-.01.02A.922.922 0 002 4c-.55 0-1 .45-1 1 0 .36.2.66.48.83l-.01.02L8.11 10l-6.64 4.15.01.02A.97.97 0 001 15c0 .55.45 1 1 1 .2 0 .37-.07.52-.17l.01.02L9 11.8V19c0 .55.45 1 1 1s1-.45 1-1v-7.2l6.47 4.04.01-.02c.15.11.32.18.52.18.55 0 1-.45 1-1 0-.36-.2-.66-.48-.83z", - ], - "automatic-updates": [ - "M10 18c-4.42 0-8-3.58-8-8 0-2.52 1.18-4.76 3-6.22V5c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1H2c-.55 0-1 .45-1 1s.45 1 1 1h2.06C1.61 3.82 0 6.71 0 10c0 5.52 4.48 10 10 10 .55 0 1-.45 1-1s-.45-1-1-1zm0-16c1.64 0 3.15.49 4.42 1.34l1.43-1.43A9.869 9.869 0 0010 0c-.55 0-1 .45-1 1s.45 1 1 1zm10 8c0-1.13-.2-2.21-.54-3.22L17.84 8.4A7.962 7.962 0 0115 16.22V15c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-2.06c2.45-1.82 4.06-4.71 4.06-8zm0-7a1.003 1.003 0 00-1.71-.71L12 8.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l7-7c.18-.18.29-.43.29-.71z", - ], - backlink: [ - "M18.387 19.79l-.094-.083L14 15.415V18a1 1 0 01-2 0l.003-5.075.017-.126.03-.111.044-.111.052-.098.067-.096.08-.09a1.01 1.01 0 01.112-.097l.11-.071.114-.054.105-.035.15-.03L13 12h5a1 1 0 110 2h-2.585l4.292 4.293a1 1 0 01-1.32 1.497zM7.036 9.136l-4.45 4.45-.117.127a2 2 0 002.818 2.818l.127-.117 4.45-4.449a4 4 0 01-.885 3.704l-.15.16-2 2A4 4 0 011.02 12.33l.15-.16 2-2a3.998 3.998 0 013.865-1.035zm6.671-3.843a1 1 0 01.083 1.32l-.083.094-7 7a1 1 0 01-1.497-1.32l.083-.094 7-7a1 1 0 011.414 0zm4.121-4.121a4 4 0 01.151 5.497l-.15.16-2 2a3.998 3.998 0 01-3.864 1.036l4.45-4.45.116-.128a2 2 0 00-2.818-2.818l-.127.117-4.45 4.45a4 4 0 01.885-3.705l.15-.16 2-2a4 4 0 015.657 0z", - ], - badge: [ - "M16.94 5.73c-.19-1.41.62-2.52 1.38-3.59L17.03.65C14.89 1.76 11.88 1.48 10 0 8.12 1.48 5.11 1.76 2.97.65L1.68 2.14c.76 1.07 1.57 2.18 1.38 3.59C2.68 8.59 0 10.94 1.4 14.08c.56 1.43 1.81 2.37 3.4 2.75 1.95.46 4.4.91 5.2 3.17.8-2.26 3.25-2.71 5.2-3.17 1.6-.38 2.84-1.32 3.4-2.75 1.4-3.14-1.28-5.49-1.66-8.35z", - ], - "ban-circle": [ - "M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm5 11H5c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z", - ], - "bank-account": [ - "M19.2 8.02l-.78-.18C18.03 6.4 17.2 5.08 16.08 4l.5-2.28c.11-.42-.22-.78-.61-.72-1.06.12-2 .54-2.67 1.26-1.06-.42-2.34-.66-3.56-.66-3.12 0-5.79 1.5-7.4 3.72-.23-.05-.45-.11-.67-.11C.72 5.21 0 5.98 0 7c0 .72.39 1.32.95 1.62-.06.42-.12.9-.12 1.38 0 2.16.89 4.08 2.28 5.58l-.33 2.04c-.11.72.45 1.38 1.12 1.38h.72c.56 0 1-.42 1.11-1.02l.06-.48c1.17.54 2.5.9 3.95.9 1.39 0 2.78-.3 3.95-.9l.06.48c.11.6.56 1.02 1.11 1.02h.72c.67 0 1.22-.66 1.11-1.38l-.33-1.98c.78-.78 1.34-1.74 1.73-2.76l1-.24c.5-.12.89-.6.89-1.2V9.22c.11-.6-.28-1.08-.78-1.2zM15 10c-.6 0-1-.7-1-1.5S14.4 7 15 7s1 .7 1 1.5-.4 1.5-1 1.5zM7.55 5.83a.99.99 0 01-1.38-.28.99.99 0 01.28-1.38c2.34-1.56 4.77-1.56 7.11 0 .46.31.58.93.28 1.39-.31.46-.93.58-1.39.28-1.67-1.12-3.23-1.12-4.9-.01z", - ], - barcode: [ - "M6 16.98h2v-14H6v14zm3 0h1v-14H9v14zm-6 0h2v-14H3v14zm-3 0h2v-14H0v14zm16 0h2v-14h-2v14zm-4 0h1v-14h-1v14zm7-14v14h1v-14h-1zm-5 14h1v-14h-1v14z", - ], - blank: [], - "blocked-person": [ - "M11.55 15.92c-1.48-.65-1.28-1.05-1.33-1.59-.01-.07-.01-.15-.01-.23.51-.45.92-1.07 1.19-1.78 0 0 .01-.04.02-.05.06-.15.11-.32.15-.48.34-.07.54-.44.61-.78.06-.11.14-.35.17-.62C10.33 9.42 8.92 7.38 8.92 5c0-.3.05-.58.09-.87-.33-.08-.67-.13-.99-.13-.79 0-1.68.25-2.31.73-.61.47-1.07 1.13-1.29 1.86-.05.16-.09.33-.11.5-.12.6-.17 1.51-.17 2.14v.08c-.24.09-.45.32-.49.83-.04.39.12.73.2.87.08.35.28.72.63.78.04.17.09.33.15.48 0 .01.01.02.01.03l.01.01c.27.72.7 1.35 1.22 1.8 0 .07-.01.14-.01.21-.05.54.1.94-1.38 1.59C3 16.56.77 17.26.32 18.31-.15 19.38.04 20 .04 20h15.95s.18-.62-.27-1.67c-.46-1.06-2.69-1.75-4.17-2.41zM14.97 0c-2.78 0-5.03 2.24-5.03 5s2.25 5 5.03 5S20 7.76 20 5s-2.25-5-5.03-5zm-3.03 5c0-1.66 1.35-3 3.02-3 .47 0 .9.11 1.29.3l-4.01 3.99c-.18-.4-.3-.83-.3-1.29zm3.03 3c-.47 0-.9-.11-1.29-.3l4.01-3.99c.19.39.3.82.3 1.29 0 1.66-1.36 3-3.02 3z", - ], - bold: [ - "M14.3 9c.4-.8.7-1.6.7-2.5C15 4 13 2 10.5 2H5c-.6 0-1 .4-1 1v13c0 .6.4 1 1 1h6.5c2.5 0 4.5-2 4.5-4.5 0-1.4-.7-2.7-1.7-3.5zM7 5h3.5c.8 0 1.5.7 1.5 1.5S11.3 8 10.5 8H7V5zm4.5 9H7v-3h4.5c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5z", - ], - book: [ - "M3 1v18c0 .55.45 1 1 1h2V0H4c-.55 0-1 .45-1 1zm14-1h-2v8l-2-2-2 2V0H7v20h10c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - bookmark: [ - "M6 0c-.55 0-1 .45-1 1v18c0 .55.32.68.71.29L9.3 15.7a.996.996 0 011.41 0l3.59 3.59c.38.39.7.26.7-.29v-8-4.5V1c0-.55-.45-1-1-1H6z", - ], - box: [ - "M19.89 6.56l-2.99-6h-.01C16.72.23 16.39 0 16 0H4c-.39 0-.72.23-.89.56H3.1l-3 6h.01C.05 6.69 0 6.84 0 7v12c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V7c0-.16-.05-.31-.11-.44zM11 2h4.38l2 4H11V2zM4.62 2H9v4H2.62l2-4zM18 18H2V8h16v10zM8 12h4c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1z", - ], - briefcase: [ - "M19 5h-4V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v3H1c-.55 0-1 .45-1 1v5h4v-1h2v1h8v-1h2v1h4V6c0-.55-.45-1-1-1zm-6 0H7V3h6v2zm3 8h-2v-1H6v1H4v-1H0v6c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-6h-4v1z", - ], - "bring-data": [ - "M18 18a1 1 0 010 2H2a1 1 0 010-2h16zM9.995 3.005c.55 0 1 .45 1 .999v9.584l1.29-1.288a1.002 1.002 0 011.42 1.419l-3 2.996a1.015 1.015 0 01-1.42 0l-3-2.997a1.002 1.002 0 011.42-1.419l1.29 1.29V4.013c0-.55.45-1.009 1-1.009zM16 0a1 1 0 110 2 1 1 0 010-2zm-3 0a1 1 0 110 2 1 1 0 010-2zm-3 0a1 1 0 110 2 1 1 0 010-2zM7 0a1 1 0 110 2 1 1 0 010-2zM4 0a1 1 0 110 2 1 1 0 010-2z", - ], - buggy: [ - "M15.836 1.014a1 1 0 011.058.539l2.482 4.962.02-.004a.5.5 0 01.604.49v4.5a.5.5 0 01-.5.5h-3.93a1.5 1.5 0 00-1.248.667l-1.406 2.11A.5.5 0 0112.5 15H8a.5.5 0 01-.354-.146l-2.414-2.415A1.5 1.5 0 004.172 12H.5a.5.5 0 01-.5-.5v-3A.5.5 0 01.5 8h.823L3.072 3.63a1 1 0 01.764-.615l12-2zm.289 3.472l1.231 2.462-2.758.591 1.527-3.053zM14.5 3.264l-1.56 3.12-.252-.638-.825-2.043 2.637-.44zm-9.78 1.63l5.122-.854.988 2.445.899 2.27L10.232 11H7.707L4.854 8.147A.5.5 0 004.5 8H3.477l1.242-3.106zM3 19a3 3 0 100-6 3 3 0 000 6zm14 0a3 3 0 100-6 3 3 0 000 6z", - ], - build: [ - "M19.43 16.67L9.31 7.81l1.47-1.56c.41-.44-.15-.8.15-1.6 1.08-2.76 4.19-2.99 4.19-2.99s.45-.47.87-.92C11.98-1 9.26.7 8.04 1.8L3.83 6.25l-.86.92c-.48.51-.48 1.33 0 1.84l-.87.92c-.48-.51-1.26-.51-1.74 0s-.48 1.33 0 1.84l1.74 1.84c.48.51 1.26.51 1.74 0s.48-1.33 0-1.84l.87-.92c.48.51 1.26.51 1.74 0l1.41-1.49 8.81 10.07c.76.76 2 .76 2.76 0 .76-.76.76-2 0-2.76z", - ], - calculator: [ - "M16 0H4c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM7 18H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V8h2v2zm4 8H9v-2h2v2zm0-4H9v-2h2v2zm0-4H9V8h2v2zm4 8h-2v-6h2v6zm0-8h-2V8h2v2zm0-4H5V2h10v4z", - ], - calendar: [ - "M15 5c.6 0 1-.4 1-1V2c0-.5-.4-1-1-1s-1 .5-1 1v2c0 .6.4 1 1 1zM5 5c.6 0 1-.4 1-1V2c0-.5-.4-1-1-1s-1 .5-1 1v2c0 .6.4 1 1 1zm13-2h-1v1c0 1.1-.9 2-2 2s-2-.9-2-2V3H7v1c0 1.1-.9 2-2 2s-2-.9-2-2V3H2c-.5 0-1 .5-1 1v14c0 .5.5 1 1 1h16c.5 0 1-.5 1-1V4c0-.5-.5-1-1-1zM7 17H3v-4h4v4zm0-5H3V8h4v4zm5 5H8v-4h4v4zm0-5H8V8h4v4zm5 5h-4v-4h4v4zm0-5h-4V8h4v4z", - ], - camera: [ - "M10 8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm9-4h-3.59L13.7 2.29A.956.956 0 0013 2H7c-.28 0-.53.11-.71.29L4.59 4H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h4.11c1.26 1.24 2.99 2 4.89 2s3.63-.76 4.89-2H19c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM4 8H2V6h2v2zm6 8c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", - ], - "caret-down": [ - "M16 7c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1 0 .24.1.46.24.63l-.01.01 5 6 .01-.01c.19.22.45.37.76.37s.57-.15.76-.37l.01.01 5-6-.01-.01c.14-.17.24-.39.24-.63z", - ], - "caret-left": [ - "M13 4c-.24 0-.46.1-.63.24l-.01-.01-6 5 .01.01c-.22.19-.37.45-.37.76s.15.57.37.76l-.01.01 6 5 .01-.01c.17.14.39.24.63.24.55 0 1-.45 1-1V5c0-.55-.45-1-1-1z", - ], - "caret-right": [ - "M14 10c0-.31-.15-.57-.37-.76l.01-.01-6-5-.01.01C7.46 4.1 7.24 4 7 4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1 .24 0 .46-.1.63-.24l.01.01 6-5-.01-.01c.22-.19.37-.45.37-.76z", - ], - "caret-up": [ - "M15.76 12.37l.01-.01-5-6-.01.01C10.57 6.15 10.31 6 10 6s-.57.15-.76.37l-.01-.01-5 6 .01.01c-.14.17-.24.39-.24.63 0 .55.45 1 1 1h10c.55 0 1-.45 1-1 0-.24-.1-.46-.24-.63z", - ], - "cargo-ship": [ - "M12.5 1.25h4a1 1 0 011 1V5h-5V1.25zM2.75 5a.25.25 0 00-.25.25v6H.883a.5.5 0 00-.429.757l1.672 2.787c.17.284.384.533.63.741-.458.057-.959.09-1.506.09a.625.625 0 100 1.25c2.583 0 4.268-.68 5.202-1.146.687.466 1.88 1.146 3.548 1.146 1.65 0 2.837-.666 3.528-1.132l.005.003c.244.131.6.3 1.07.468.938.335 2.321.661 4.147.661a.625.625 0 100-1.25c-.319 0-.622-.01-.91-.03.398-.318.717-.738.914-1.23l.972-2.43a.5.5 0 00-.464-.685H5v-6A.25.25 0 004.75 5h-2zm3.455 11.95a.625.625 0 01.658.041c.569.407 1.597 1.134 3.137 1.134s2.568-.727 3.137-1.134a.625.625 0 01.724-.001l.007.005.045.029c.044.027.114.069.21.12.194.104.493.247.9.392.812.29 2.053.589 3.727.589a.625.625 0 110 1.25c-1.826 0-3.21-.326-4.148-.661a7.894 7.894 0 01-1.069-.468l-.005-.003c-.691.466-1.878 1.132-3.528 1.132-1.667 0-2.861-.68-3.548-1.146-.934.467-2.619 1.146-5.202 1.146a.625.625 0 110-1.25c2.66 0 4.23-.787 4.955-1.176zM17.5 6.25h-5V10h4a1 1 0 001-1V6.25zm-11.25-4a1 1 0 011-1h4V5h-5V2.25zm5 4h-5V9a1 1 0 001 1h4V6.25z", - ], - "cell-tower": [ - "M11.5 8.32c.31-.35.51-.81.51-1.32 0-1.1-.9-2-2-2s-2 .9-2 2c0 .51.2.97.51 1.32L5.06 18.69c-.17.52.11 1.09.63 1.26s1.09-.11 1.26-.63L8.39 15h3.23l1.44 4.32c.17.52.74.81 1.26.63s.81-.74.63-1.26L11.5 8.32zM10.95 13H9.06l.95-2.84.94 2.84zM5.31 10.73a.996.996 0 101.37-1.45c-1.4-1.33-1.28-3.35-.01-4.54.4-.38.43-1.01.05-1.41-.36-.41-1-.43-1.4-.06-2.09 1.95-2.28 5.3-.01 7.46z", - "M4.6 12.2C3 11.1 2 9 2 7c0-2.1.9-3.9 2.6-5.2.5-.3.5-1 .2-1.4-.3-.5-1-.5-1.4-.2C1.2 1.9-.1 4.2 0 7c.1 2.7 1.4 5.3 3.4 6.8.2.1.4.2.6.2.3 0 .6-.1.8-.4.4-.5.3-1.1-.2-1.4zM13.27 10.69c.38.4 1.01.42 1.41.04 2.27-2.16 2.08-5.51-.01-7.46a.996.996 0 10-1.36 1.46c1.28 1.19 1.39 3.21-.01 4.54-.39.39-.41 1.02-.03 1.42z", - "M16.6.2c-.4-.3-1.1-.3-1.4.2-.3.4-.3 1.1.2 1.4C17.1 3.1 18 4.9 18 7c0 2-1 4.1-2.6 5.2-.5.3-.6.9-.2 1.4.2.3.5.4.8.4.2 0 .4-.1.6-.2C18.7 12.3 20 9.7 20 7c.09-2.8-1.2-5.1-3.4-6.8z", - ], - changes: [ - "M18 16H2c-1.1 0-2 .9-2 2s.9 2 2 2h16c1.1 0 2-.9 2-2s-.9-2-2-2zM3 5c.28 0 .53-.11.71-.29L5 3.41V13c0 .55.45 1 1 1s1-.45 1-1V3.41L8.29 4.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-3-3C6.53.11 6.28 0 6 0s-.53.11-.71.29l-3 3A1.003 1.003 0 003 5zm7.29 5.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3a1.003 1.003 0 00-1.42-1.42L15 10.59V1c0-.55-.45-1-1-1s-1 .45-1 1v9.59L11.71 9.3A.965.965 0 0011 9a1.003 1.003 0 00-.71 1.71z", - ], - chart: [ - "M7 11v8c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-8l-2 2-4-2zm-7 8c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-8l-6 3v5zM17 7l-3 3v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8.74c-.26.15-.58.26-1 .26-1.92 0-2-2-2-2zm2-6h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.59L10.8 8.78 7.45 7.11v.01C7.31 7.05 7.16 7 7 7s-.31.05-.44.11V7.1l-6 3v.01c-.33.17-.56.5-.56.89 0 .55.45 1 1 1 .16 0 .31-.05.44-.11v.01L7 9.12l3.55 1.78v-.01c.14.06.29.11.45.11.28 0 .53-.11.71-.29L18 4.41V6c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1z", - ], - chat: [ - "M19 0H7c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h5.59l3.71 3.71c.17.18.42.29.7.29.55 0 1-.45 1-1v-3h1c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM7 13c-1.1 0-2-.9-2-2V4H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h1v3a1.003 1.003 0 001.71.71L7.41 16H13c.55 0 1-.45 1-1v-.17L12.17 13H7z", - ], - "chevron-backward": [ - "M8.41 10l5.29-5.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L7 8.59V4c0-.55-.45-1-1-1s-1 .45-1 1v12c0 .55.45 1 1 1s1-.45 1-1v-4.59l5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L8.41 10z", - ], - "chevron-down": [ - "M16 6c-.28 0-.53.11-.71.29L10 11.59l-5.29-5.3a1.003 1.003 0 00-1.42 1.42l6 6c.18.18.43.29.71.29s.53-.11.71-.29l6-6A1.003 1.003 0 0016 6z", - ], - "chevron-forward": [ - "M13 3c-.55 0-1 .45-1 1v4.59l-5.29-5.3a1.003 1.003 0 00-1.42 1.42l5.3 5.29-5.29 5.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l5.29-5.3V16c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - "chevron-left": [ - "M8.41 10l5.29-5.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-6 6c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l6 6a1.003 1.003 0 001.42-1.42L8.41 10z", - ], - "chevron-right": [ - "M13.71 9.29l-6-6a1.003 1.003 0 00-1.42 1.42l5.3 5.29-5.29 5.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l6-6c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z", - ], - "chevron-up": [ - "M16.71 12.29l-6-6C10.53 6.11 10.28 6 10 6s-.53.11-.71.29l-6 6a1.003 1.003 0 001.42 1.42L10 8.41l5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z", - ], - circle: [ - "M10 0C4.5 0 0 4.5 0 10s4.5 10 10 10 10-4.5 10-10S15.5 0 10 0zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z", - ], - "circle-arrow-down": [ - "M14 10c-.28 0-.53.11-.71.29L11 12.59V5c0-.55-.45-1-1-1s-1 .45-1 1v7.59L6.71 10.3A.965.965 0 006 10a1.003 1.003 0 00-.71 1.71l4 4c.18.18.43.29.71.29s.53-.11.71-.29l4-4A1.003 1.003 0 0014 10zM10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z", - ], - "circle-arrow-left": [ - "M15 9H7.41L9.7 6.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-4 4c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L7.41 11H15c.55 0 1-.45 1-1s-.45-1-1-1zm-5-9C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z", - ], - "circle-arrow-right": [ - "M15.71 9.29l-4-4a1.003 1.003 0 00-1.42 1.42L12.59 9H5c-.55 0-1 .45-1 1s.45 1 1 1h7.59l-2.29 2.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71zM10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z", - ], - "circle-arrow-up": [ - "M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.71-13.71C10.53 4.11 10.28 4 10 4s-.53.11-.71.29l-4 4a1.003 1.003 0 001.42 1.42L9 7.41V15c0 .55.45 1 1 1s1-.45 1-1V7.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-4-4z", - ], - citation: [ - "M4 1C1.79 1 0 2.79 0 5s1.79 4 4 4c.1 0 .2-.01.3-.02C3.82 11.32 2.53 13 1 13c-.55 0-1 .45-1 1s.45 1 1 1c3.87 0 7-4.48 7-10 0-2.21-1.79-4-4-4zM16 1c-2.21 0-4 1.79-4 4s1.79 4 4 4c.1 0 .2-.01.3-.02C15.82 11.32 14.53 13 13 13c-.55 0-1 .45-1 1s.45 1 1 1c3.87 0 7-4.48 7-10 0-2.21-1.79-4-4-4z", - ], - clean: [ - "M7 0L5 5 0 6.998 5 9l2 5 2-5 5-1.995L9 5zM15 10l-1.5 3.496-3.5 1.499 3.5 1.498L15 20l1.5-3.507L20 15l-3.5-1.504z", - ], - clip: [ - "M0 1a1 1 0 011-1h5a1 1 0 010 2H2v4a1 1 0 01-2 0V1zm1 19a1 1 0 01-1-1v-5a1 1 0 112 0v4h4a1 1 0 110 2H1zm18 0a1 1 0 001-1v-5a1 1 0 10-2 0v4h-4a1 1 0 100 2h5zm0-20a1 1 0 011 1v5a1 1 0 11-2 0V2h-4a1 1 0 110-2h5zm-9 14a4 4 0 100-8 4 4 0 000 8z", - ], - clipboard: [ - "M13 2c0-.55-.45-1-1-1h-.78a1.98 1.98 0 00-3.44 0H7c-.55 0-1 .45-1 1v2h7V2z", - "M16 2h-2v3H5V2H3c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h13c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z", - ], - cloud: [ - "M15 7c-.12 0-.24.03-.36.04C13.83 4.69 11.62 3 9 3 5.69 3 3 5.69 3 9c0 .05.01.09.01.14A3.98 3.98 0 000 13c0 2.21 1.79 4 4 4h11c2.76 0 5-2.24 5-5s-2.24-5-5-5z", - ], - "cloud-download": [ - "M15 4c-.12 0-.24.03-.36.04C13.83 1.69 11.62 0 9 0 5.69 0 3 2.69 3 6c0 .05.01.09.01.14A3.98 3.98 0 000 10c0 2.21 1.79 4 4 4h.78c.55-.61 1.34-1 2.22-1v-2c0-1.66 1.34-3 3-3s3 1.34 3 3v2c.88 0 1.66.38 2.2.98C17.87 13.87 20 11.69 20 9c0-2.76-2.24-5-5-5zm-2 11c-.28 0-.53.11-.71.29L11 16.59V11c0-.55-.45-1-1-1s-1 .45-1 1v5.59L7.71 15.3A.965.965 0 007 15a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0013 15z", - ], - "cloud-upload": [ - "M10.71 10.29c-.18-.18-.43-.29-.71-.29s-.53.11-.71.29l-3 3a1.003 1.003 0 001.42 1.42L9 13.41V19c0 .55.45 1 1 1s1-.45 1-1v-5.59l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-3-3zM15 4c-.12 0-.24.03-.36.04C13.83 1.69 11.62 0 9 0 5.69 0 3 2.69 3 6c0 .05.01.09.01.14A3.98 3.98 0 000 10c0 2.21 1.79 4 4 4 0-.83.34-1.58.88-2.12l3-3a2.993 2.993 0 014.24 0l3 3-.01.01c.52.52.85 1.23.87 2.02C18.28 13.44 20 11.42 20 9c0-2.76-2.24-5-5-5z", - ], - code: [ - "M6 6a1.003 1.003 0 00-1.71-.71l-4 4C.11 9.47 0 9.72 0 10c0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L2.41 10 5.7 6.71c.19-.18.3-.43.3-.71zm6-4c-.46 0-.83.31-.95.73l-4 14c-.02.09-.05.17-.05.27 0 .55.45 1 1 1 .46 0 .83-.31.95-.73l4-14c.02-.09.05-.17.05-.27 0-.55-.45-1-1-1zm7.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42l3.3 3.29-3.29 3.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z", - ], - "code-block": [ - "M19 5h-2V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v2H9V3c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v2H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM8.71 15.29a1.003 1.003 0 01-1.42 1.42l-4-4C3.11 12.53 3 12.28 3 12s.11-.53.29-.71l4-4a1.003 1.003 0 011.42 1.42L5.41 12l3.3 3.29zm8-2.58l-4 4a1.003 1.003 0 01-1.42-1.42l3.3-3.29-3.29-3.29A.965.965 0 0111 8a1.003 1.003 0 011.71-.71l4 4c.18.18.29.43.29.71s-.11.53-.29.71z", - ], - cog: [ - "M19 8h-2.31c-.14-.46-.33-.89-.56-1.3l1.7-1.7a.996.996 0 000-1.41l-1.41-1.41a.996.996 0 00-1.41 0l-1.7 1.7c-.41-.22-.84-.41-1.3-.55V1c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v2.33c-.48.14-.94.34-1.37.58L5 2.28a.972.972 0 00-1.36 0L2.28 3.64c-.37.38-.37.99 0 1.36L3.9 6.62c-.24.44-.44.89-.59 1.38H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2.31c.14.46.33.89.56 1.3L2.17 15a.996.996 0 000 1.41l1.41 1.41c.39.39 1.02.39 1.41 0l1.7-1.7c.41.22.84.41 1.3.55V19c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-2.33c.48-.14.94-.35 1.37-.59L15 17.72c.37.37.98.37 1.36 0l1.36-1.36c.37-.37.37-.98 0-1.36l-1.62-1.62c.24-.43.45-.89.6-1.38H19c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-9 6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z", - ], - "collapse-all": [ - "M9.29 8.71c.18.18.43.29.71.29s.53-.11.71-.29l6-6a1.003 1.003 0 00-1.42-1.42L10 6.59l-5.29-5.3a1.003 1.003 0 00-1.42 1.42l6 6zm1.42 2.58c-.18-.18-.43-.29-.71-.29s-.53.11-.71.29l-6 6a1.003 1.003 0 001.42 1.42l5.29-5.3 5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-6-6z", - ], - "column-layout": [ - "M19 1H1c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM5 17H2V3h3v14zm4 0H6V3h3v14zm9 0h-8V3h8v14z", - ], - comment: [ - "M19 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3v4a1.003 1.003 0 001.71.71l4.7-4.71H19c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM4 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", - ], - comparison: [ - "M6 8H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm13-6h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 3h-5V3h5v2zM6 14H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zM6 2H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm4-2c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm9 14h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-5v-2h5v2zm0-9h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm0 3h-5V9h5v2z", - ], - compass: [ - "M15 10c0 .14-.03.28-.09.4l-3.99 8.98-.01.02a.991.991 0 01-1.82 0l-.01-.02-3.99-8.98c-.06-.12-.09-.26-.09-.4s.03-.28.09-.4L9.08.62 9.09.6a.991.991 0 011.82 0l.01.02 3.99 8.98c.06.12.09.26.09.4zm-5-6.54L7.09 10h5.81L10 3.46z", - ], - compressed: [ - "M19.89 6.56l-2.99-6h-.01C16.72.23 16.39 0 16 0H4c-.39 0-.72.23-.89.56H3.1l-3 6h.01C.05 6.69 0 6.84 0 7v12c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V7c0-.16-.05-.31-.11-.44zM11 2h4.38l2 4H11V2zM4.62 2H9v4H2.62l2-4zM18 18H2V8h7v4.59L6.71 10.3A.965.965 0 006 10a1.003 1.003 0 00-.71 1.71l4 4c.18.18.43.29.71.29s.53-.11.71-.29l4-4a1.003 1.003 0 00-1.42-1.42L11 12.59V8h7v10z", - ], - confirm: [ - "M9.71 5.29a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l7-7a1.003 1.003 0 00-1.42-1.42L12 7.59l-2.29-2.3zm7.93 2.32c.23.75.36 1.56.36 2.39 0 4.42-3.58 8-8 8s-8-3.58-8-8a7.998 7.998 0 0111.8-7.04l1.46-1.46C13.73.56 11.93 0 10 0 4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10c0-1.4-.29-2.73-.81-3.95l-1.55 1.56z", - ], - console: [ - "M19 19H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h18c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1zM18 6H2v11h16V6zM4 8c.28 0 .53.11.71.29l2 2c.18.18.29.43.29.71s-.11.53-.29.71l-2 2a1.003 1.003 0 01-1.42-1.42L4.59 11l-1.3-1.29A1.003 1.003 0 014 8zm5 4h3c.55 0 1 .45 1 1s-.45 1-1 1H9c-.55 0-1-.45-1-1s.45-1 1-1z", - ], - contrast: [ - "M19 8h-1.26c-.19-.73-.48-1.42-.85-2.06l.94-.94a.996.996 0 000-1.41l-1.41-1.41a.996.996 0 00-1.41 0l-.94.94c-.65-.38-1.34-.67-2.07-.86V1c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1.26c-.76.2-1.47.5-2.13.89L5 2.28a.972.972 0 00-1.36 0L2.28 3.64c-.37.38-.37.98 0 1.36l.87.87c-.39.66-.69 1.37-.89 2.13H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h1.26c.19.73.48 1.42.85 2.06l-.94.94a.996.996 0 000 1.41l1.41 1.41c.39.39 1.02.39 1.41 0l.94-.94c.64.38 1.33.66 2.06.85V19c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1.26c.76-.2 1.47-.5 2.13-.89l.88.87c.37.37.98.37 1.36 0l1.36-1.36c.37-.38.37-.98 0-1.36l-.87-.87c.4-.65.7-1.37.89-2.13H19c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-9 7c-2.76 0-5-2.24-5-5s2.24-5 5-5v10z", - ], - control: [ - "M17 10h-7v7h7v-7zm0-7h-7v6h7V3zM9 3H3v14h6V3zm10-3H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18H2V2h16v16z", - ], - "credit-card": [ - "M19 3H1c-.55 0-1 .45-1 1v2h20V4c0-.55-.45-1-1-1zM0 16c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V8H0v8zm6.5-2h7c.28 0 .5.22.5.5s-.22.5-.5.5h-7c-.28 0-.5-.22-.5-.5s.22-.5.5-.5zm-4 0h2c.28 0 .5.22.5.5s-.22.5-.5.5h-2c-.28 0-.5-.22-.5-.5s.22-.5.5-.5z", - ], - cross: [ - "M11.41 10l4.29-4.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-4.29-4.3a1.003 1.003 0 00-1.42 1.42L8.59 10 4.3 14.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4.29-4.3 4.29 4.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z", - ], - crown: [ - "M2 8l4 2 4-5 4 5 4-2-1 7H3L2 8zm8-6a1 1 0 110 2 1 1 0 010-2zM1 5a1 1 0 110 2 1 1 0 010-2zm18 0a1 1 0 110 2 1 1 0 010-2zM3 16h14v2H3v-2z", - ], - cube: [ - "M1.953 4.481l7.41-4.02c.394-.215.88-.215 1.275 0l7.409 4.02L10 9.22 1.953 4.48zm-.817.68L9.5 10.085v9.281a1.316 1.316 0 01-.138-.064l-7.714-4.186A1.211 1.211 0 011 14.057v-8.35c0-.193.048-.38.136-.547zm17.728 0c.088.166.136.353.136.546v8.35c0 .438-.247.842-.648 1.06l-7.714 4.186c-.045.024-.091.046-.138.064v-9.281l8.364-4.926z", - ], - "cube-add": [ - "M17 3h2a1 1 0 010 2h-2v2a1 1 0 01-2 0V5h-2a1 1 0 010-2h2V1a1 1 0 012 0v2zm-3.969 4.435L10 9.22 1.953 4.48l7.41-4.02c.394-.215.88-.215 1.275 0l1.33.721A3.001 3.001 0 0013 7c0 .148.01.293.031.435zm.319.972A3 3 0 0019 7v7.057c0 .438-.247.842-.648 1.06l-7.714 4.186c-.045.024-.091.046-.138.064v-9.281l2.85-1.679zM1.136 5.16L9.5 10.086v9.281a1.316 1.316 0 01-.138-.064l-7.714-4.186A1.211 1.211 0 011 14.057v-8.35c0-.193.048-.38.136-.547z", - ], - "cube-remove": [ - "M11.968 1.182A3.001 3.001 0 0013 7h.77L10 9.22 1.953 4.48l7.41-4.02c.394-.215.88-.215 1.275 0l1.33.721zM19 7v7.057c0 .438-.247.842-.648 1.06l-7.714 4.186c-.045.024-.091.046-.138.064v-9.281L15.74 7H19zM1.136 5.16L9.5 10.086v9.281a1.316 1.316 0 01-.138-.064l-7.714-4.186A1.211 1.211 0 011 14.057v-8.35c0-.193.048-.38.136-.547zM13 3h6a1 1 0 010 2h-6a1 1 0 010-2z", - ], - "curved-range-chart": [ - "M19 16H3.02l2.14-1.74c2.25 1.7 7.33.46 11.83-2.99l-1.29-1.5c-3.56 2.74-7.31 4.03-8.93 3.19l10.55-8.57-.63-.78-10.59 8.6c-.64-1.64 1.46-4.91 5.09-7.7L9.9 3.01c-4.6 3.54-6.91 8.12-5.41 10.51L2 15.54V3c0-.55-.45-1-1-1s-1 .45-1 1v14a.998.998 0 001 1h18c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - cut: [ - "M16 2s.72-1.28 0-2l-5.29 6.25 1.28 1.54L16 2zm.08 10c-.55 0-1.07.12-1.54.32L4.31 0c-.7.72 0 2 0 2l4.45 6.56-3.19 3.77C5.09 12.12 4.56 12 4 12c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.65-.17-1.26-.45-1.8l2.54-3.67 2.49 3.67c-.27.54-.44 1.15-.44 1.8 0 2.21 1.76 4 3.92 4 2.17 0 3.92-1.79 3.92-4 .02-2.21-1.74-4-3.9-4zM4 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm12.08 0c-1.08 0-1.96-.9-1.96-2s.88-2 1.96-2 1.96.9 1.96 2-.88 2-1.96 2z", - ], - cycle: [ - "M16 10a4 4 0 110 8 4 4 0 010-8zM4 10a4 4 0 110 8 4 4 0 010-8zm7.299-5.543l.087.089 1.93 2.232 2.048.708a1 1 0 01.65 1.16l-.031.112a1 1 0 01-1.16.65l-.112-.031-2.302-.796a1 1 0 01-.337-.197l-.092-.094-1.387-1.603-1.891 1.982 2.046 2.274a1 1 0 01.25.547l.007.122v4.24a1 1 0 01-1.993.117l-.007-.117-.001-3.857-2.408-2.676a1 1 0 01-.063-1.26l.082-.099 3.29-3.45a1 1 0 011.394-.053zM16 12a2 2 0 100 4 2 2 0 000-4zM4 12a2 2 0 100 4 2 2 0 000-4zm9.5-10a1.5 1.5 0 110 3 1.5 1.5 0 010-3z", - ], - dashboard: [ - "M6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM4 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-5C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm6-9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-8 5c0 1.1.9 2 2 2s2-.9 2-2c0-.33-2-8-2-8s-2 7.67-2 8zm6-9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z", - ], - "data-connection": [ - "M2 11.9c.935.674 2.339 1.217 4.023 1.536A6.996 6.996 0 009.393 20c-3.988-.019-7.231-1.083-7.387-2.4L2 17.5v-5.6zM13 8c3.315 0 6 2.685 6 6s-2.685 6-6 6-6-2.685-6-6 2.685-6 6-6zm1 1l-4 6h2.5l-.5 4 4-6h-2.5l.5-4zm3-4.6v3.855a7.003 7.003 0 00-10.779 3.992c-2.408-.391-4.097-1.202-4.214-2.142L2 10V4.4c1.525 1.1 4.3 1.85 7.5 1.85S15.475 5.5 17 4.4zM9.5 0C13.637 0 17 1.125 17 2.5S13.637 5 9.5 5C5.35 5 2 3.875 2 2.5S5.35 0 9.5 0z", - ], - "data-lineage": [ - "M1.053 0C.47 0 0 .471 0 1.053V4.21c0 .58.471 1.052 1.053 1.052h3.275a6.332 6.332 0 003.728 4.738 6.33 6.33 0 00-3.728 4.737l-3.275-.001C.47 14.737 0 15.208 0 15.789v3.158C0 19.53.471 20 1.053 20h7.435c.581 0 1.053-.471 1.053-1.053V15.79c0-.58-.472-1.052-1.053-1.052H5.406a5.293 5.293 0 015.195-4.21v2.105c0 .58.471 1.052 1.052 1.052h7.294c.582 0 1.053-.471 1.053-1.052V7.368c0-.58-.471-1.052-1.053-1.052h-7.294c-.581 0-1.052.471-1.052 1.052v2.106a5.293 5.293 0 01-5.194-4.21h3.081c.581 0 1.053-.472 1.053-1.053V1.053C9.54.47 9.069 0 8.488 0H1.053z", - ], - database: [ - "M2.01 5.1v5.4c0 1.38 3.58 2.5 8 2.5s8-1.12 8-2.5V5.1c-1.49 1.13-4.51 1.9-8 1.9-3.48 0-6.5-.77-8-1.9zm8 .9c4.42 0 8-1.12 8-2.5s-3.58-2.5-8-2.5-8 1.12-8 2.5S5.6 6 10.01 6zm-8 6.1v5.4c0 1.38 3.58 2.5 8 2.5s8-1.12 8-2.5v-5.4c-1.49 1.13-4.51 1.9-8 1.9-3.48 0-6.5-.77-8-1.9z", - ], - delete: [ - "M15 6a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10l3.29-3.29c.19-.18.3-.43.3-.71zm-5-6C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z", - ], - delta: ["M10 0L0 20h20L10 0zM9 6l6 12H3L9 6z"], - "derive-column": [ - "M7.1 8.2h-.99c.28-1.11.66-1.92 1.12-2.43.28-.32.56-.48.83-.48.05 0 .1.02.13.05.03.03.05.07.05.12 0 .04-.04.13-.11.25a.64.64 0 00-.12.35c0 .15.06.28.18.39.12.11.27.16.45.16.2 0 .36-.07.49-.2s.2-.31.2-.54c0-.26-.1-.47-.3-.63-.19-.16-.51-.24-.95-.24-.68 0-1.3.19-1.85.58-.56.38-1.09 1.02-1.59 1.91-.17.3-.34.5-.49.59-.15.08-.4.13-.74.12l-.23.77h.95l-1.39 5.24c-.23.86-.39 1.39-.47 1.59-.12.29-.3.54-.54.75-.1.08-.21.12-.35.12-.04 0-.07-.01-.1-.03l-.03-.04c0-.02.03-.07.1-.13.07-.07.1-.17.1-.31 0-.15-.05-.28-.16-.38-.11-.1-.27-.15-.47-.15-.25 0-.44.07-.59.2-.15.12-.23.28-.23.46 0 .19.09.36.27.5.19.14.47.21.86.21.61 0 1.16-.15 1.63-.46.48-.31.89-.78 1.25-1.43.35-.64.72-1.68 1.09-3.11l.8-3.03h.96l.24-.77zM19 0h-9c-.55 0-1 .45-1 1v3h2V2h7v16h-7v-2H9v3c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-8.79 13.49c.15.28.32.49.52.61.19.12.44.19.73.19.28 0 .57-.1.86-.3.38-.25.77-.69 1.17-1.31l-.25-.14c-.27.37-.48.6-.61.69-.09.06-.19.09-.31.09-.14 0-.28-.09-.42-.26-.23-.29-.54-1.09-.93-2.4.35-.59.64-.97.87-1.15.17-.13.35-.2.55-.2.07 0 .2.03.39.08s.36.08.5.08c.2 0 .37-.07.5-.2.15-.14.22-.31.22-.52 0-.22-.07-.4-.2-.53s-.33-.2-.58-.2c-.22 0-.43.05-.63.15-.2.1-.45.32-.75.67-.23.25-.56.7-1.01 1.33a6.52 6.52 0 00-.91-2.15l-2.39.39-.05.25c.18-.03.33-.05.45-.05.24 0 .43.1.59.3.25.31.59 1.24 1.02 2.8-.34.44-.58.73-.7.87-.21.22-.38.36-.52.43-.1.05-.22.08-.35.08-.1 0-.26-.05-.49-.16a1.01 1.01 0 00-.42-.11c-.23 0-.42.07-.57.22-.15.14-.23.33-.23.55 0 .21.07.38.21.51.14.13.33.2.56.2.23 0 .44-.05.64-.14.2-.09.45-.29.75-.59s.72-.78 1.25-1.43c.21.61.39 1.06.54 1.35z", - ], - desktop: [ - "M19 0H1C.45 0 0 .45 0 1v13c0 .55.45 1 1 1h5.67l-.5 3H5c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1h-1.17l-.5-3H19c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 13H2V2h16v11z", - ], - diagnosis: [ - "M4 2a1 1 0 01.117 1.993L4 4v5a2 2 0 001.85 1.995L6 11a2 2 0 001.995-1.85L8 9V4a1 1 0 01-.117-1.993L8 2h1a1 1 0 01.993.883L10 3v6a4.002 4.002 0 01-3 3.874V13a3 3 0 003 3 4 4 0 003.995-3.8L14 12V8.792a2.5 2.5 0 112 0V12a6 6 0 01-6 6 5 5 0 01-4.995-4.783L5 13v-.126A4.002 4.002 0 012.005 9.2L2 9V3a1 1 0 01.883-.993L3 2h1z", - ], - "diagram-tree": [ - "M19 10v5h-2v-4h-6v4H9v-4H3v4H1v-5a1 1 0 011-1h7V5h2v4h7a1 1 0 011 1zM1 16h2a1 1 0 011 1v2a1 1 0 01-1 1H1a1 1 0 01-1-1v-2a1 1 0 011-1zm16 0h2a1 1 0 011 1v2a1 1 0 01-1 1h-2a1 1 0 01-1-1v-2a1 1 0 011-1zm-8 0h2a1 1 0 011 1v2a1 1 0 01-1 1H9a1 1 0 01-1-1v-2a1 1 0 011-1zM9 0h2a1 1 0 011 1v2a1 1 0 01-1 1H9a1 1 0 01-1-1V1a1 1 0 011-1z", - ], - "direction-left": ["M20 3.02l-20 7 20 7-5-7z"], - "direction-right": ["M20 10.02l-20-7 5 7-5 7z"], - disable: [ - "M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM2 10c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L3.69 14.9A7.902 7.902 0 012 10zm8 8c-1.85 0-3.55-.63-4.9-1.69L16.31 5.1A7.902 7.902 0 0118 10c0 4.42-3.58 8-8 8z", - ], - document: [ - "M11.98 0h-8c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h13c.55 0 1-.45 1-1V6l-6-6zm4 18h-11V2h6v5h5v11z", - ], - "document-open": [ - "M8 15c0 .55.45 1 1 1s1-.45 1-1v-5c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1h2.59L1.3 16.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 12.41V15zm5-15H5c-.55 0-1 .45-1 1v6h2V2h6v5h5v11H6v-.76L4.04 19.2c.1.45.48.8.96.8h13c.55 0 1-.45 1-1V6l-6-6z", - ], - "document-share": [ - "M14.09 10.09c-.31.31-.67.57-1.09.72V18H2V2h6v5h1.18c.15-.42.39-.8.7-1.11v-.01l2.45-2.45c-.42-.29-.78-.65-1.01-1.11L9 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h13c.55 0 1-.45 1-1V9.24l-.88.88-.03-.03zM19 0h-5c-.55 0-1 .45-1 1s.45 1 1 1h2.59L11.3 7.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L18 3.41V6c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - dollar: [ - "M15.57 11.19c-.27-.51-.63-.93-1.07-1.26-.44-.33-.95-.6-1.51-.79-.56-.2-1.14-.36-1.72-.5-.6-.14-1.19-.26-1.75-.38-.57-.13-1.07-.27-1.51-.44-.44-.17-.8-.38-1.07-.63s-.41-.59-.41-1c0-.33.09-.6.28-.81.19-.21.42-.36.69-.47.27-.11.57-.18.88-.22.31-.04.58-.06.8-.06.71 0 1.35.14 1.9.41.55.27.91.81 1.06 1.62h3.36c-.09-.84-.32-1.56-.69-2.16-.37-.6-.83-1.08-1.38-1.45-.56-.37-1.18-.64-1.86-.81-.19-.05-.38-.07-.57-.1V1c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1.1c-.22.03-.43.05-.66.1-.73.13-1.39.37-1.98.71-.6.34-1.09.8-1.47 1.35-.39.56-.58 1.25-.58 2.08 0 .76.13 1.41.4 1.93.26.52.62.95 1.06 1.28.44.33.94.6 1.5.79.55.2 1.13.36 1.74.5.58.14 1.16.26 1.72.38s1.07.26 1.51.43c.44.17.8.39 1.09.66.28.27.43.63.45 1.06.02.43-.08.78-.3 1.04-.22.26-.49.47-.83.6-.34.14-.7.23-1.09.28-.39.05-.73.07-1.03.07-.87 0-1.61-.2-2.23-.59-.62-.39-.98-1.08-1.07-2.06H3c.02.9.19 1.68.52 2.34.33.66.78 1.21 1.35 1.65.57.44 1.25.77 2.03.98.35.1.71.16 1.08.21V19c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.13c.25-.04.5-.07.76-.13.77-.18 1.47-.46 2.1-.85.63-.39 1.14-.9 1.54-1.53.4-.63.59-1.39.59-2.29.01-.75-.13-1.37-.4-1.88z", - ], - dot: ["M10 6a4 4 0 100 8 4 4 0 100-8z"], - "double-caret-horizontal": [ - "M8 4c-.24 0-.46.1-.63.24l-.01-.01-6 5 .01.01c-.22.19-.37.45-.37.76s.15.57.37.76l-.01.01 6 5 .01-.01c.17.14.39.24.63.24.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm11 6c0-.31-.15-.57-.37-.76l.01-.01-6-5-.01.01C12.46 4.1 12.24 4 12 4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1 .24 0 .46-.1.63-.24l.01.01 6-5-.01-.01c.22-.19.37-.45.37-.76z", - ], - "double-caret-vertical": [ - "M5 9h10c.55 0 1-.45 1-1 0-.24-.1-.46-.24-.63l.01-.01-5-6-.01.01C10.57 1.15 10.31 1 10 1s-.57.15-.76.37l-.01-.01-5 6 .01.01C4.1 7.54 4 7.76 4 8c0 .55.45 1 1 1zm10 2H5c-.55 0-1 .45-1 1 0 .24.1.46.24.63l-.01.01 5 6 .01-.01c.19.22.45.37.76.37s.57-.15.76-.37l.01.01 5-6-.01-.01c.14-.17.24-.39.24-.63 0-.55-.45-1-1-1z", - ], - "double-chevron-down": [ - "M9.29 10.71c.18.18.43.29.71.29s.53-.11.71-.29l6-6a1.003 1.003 0 00-1.42-1.42L10 8.59l-5.29-5.3a1.003 1.003 0 00-1.42 1.42l6 6zM16 9c-.28 0-.53.11-.71.29L10 14.59l-5.29-5.3a1.003 1.003 0 00-1.42 1.42l6 6c.18.18.43.29.71.29s.53-.11.71-.29l6-6A1.003 1.003 0 0016 9z", - ], - "double-chevron-left": [ - "M5.41 10l5.29-5.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-6 6c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l6 6a1.003 1.003 0 001.42-1.42L5.41 10zm6 0l5.29-5.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-6 6c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l6 6a1.003 1.003 0 001.42-1.42L11.41 10z", - ], - "double-chevron-right": [ - "M11 10c0-.28-.11-.53-.29-.71l-6-6a1.003 1.003 0 00-1.42 1.42L8.59 10 3.3 15.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l6-6c.18-.18.29-.43.29-.71zm5.71-.71l-6-6a1.003 1.003 0 00-1.42 1.42l5.3 5.29-5.29 5.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l6-6c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z", - ], - "double-chevron-up": [ - "M4 11c.28 0 .53-.11.71-.29L10 5.41l5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-6-6A.997.997 0 0010 3c-.28 0-.53.11-.71.29l-6 6A1.003 1.003 0 004 11zm6.71-1.71A.997.997 0 0010 9c-.28 0-.53.11-.71.29l-6 6a1.003 1.003 0 001.42 1.42l5.29-5.3 5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-6-6z", - ], - "doughnut-chart": [ - "M16 10c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6V0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10h-4zm-.09-1h4.04C19.48 4.28 15.72.52 11 .05V4.1A5.98 5.98 0 0115.91 9z", - ], - download: [ - "M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm4.71 11.71l-4 4c-.18.18-.43.29-.71.29s-.53-.11-.71-.29l-4-4a1.003 1.003 0 011.42-1.42L9 12.59V5c0-.55.45-1 1-1s1 .45 1 1v7.59l2.29-2.29c.18-.19.43-.3.71-.3a1.003 1.003 0 01.71 1.71z", - ], - "drag-handle-horizontal": [ - "M7.5 11c-.83 0-1.5.67-1.5 1.5S6.67 14 7.5 14 9 13.33 9 12.5 8.33 11 7.5 11zm-5-5C1.67 6 1 6.67 1 7.5S1.67 9 2.5 9 4 8.33 4 7.5 3.33 6 2.5 6zm0 5c-.83 0-1.5.67-1.5 1.5S1.67 14 2.5 14 4 13.33 4 12.5 3.33 11 2.5 11zm15-2c.83 0 1.5-.67 1.5-1.5S18.33 6 17.5 6 16 6.67 16 7.5 16.67 9 17.5 9zm-5 2c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm5 0c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-10-5C6.67 6 6 6.67 6 7.5S6.67 9 7.5 9 9 8.33 9 7.5 8.33 6 7.5 6zm5 0c-.83 0-1.5.67-1.5 1.5S11.67 9 12.5 9 14 8.33 14 7.5 13.33 6 12.5 6z", - ], - "drag-handle-vertical": [ - "M7.5 6C6.67 6 6 6.67 6 7.5S6.67 9 7.5 9 9 8.33 9 7.5 8.33 6 7.5 6zm0 5c-.83 0-1.5.67-1.5 1.5S6.67 14 7.5 14 9 13.33 9 12.5 8.33 11 7.5 11zm0 5c-.83 0-1.5.67-1.5 1.5S6.67 19 7.5 19 9 18.33 9 17.5 8.33 16 7.5 16zm5-12c.83 0 1.5-.67 1.5-1.5S13.33 1 12.5 1 11 1.67 11 2.5 11.67 4 12.5 4zm-5-3C6.67 1 6 1.67 6 2.5S6.67 4 7.5 4 9 3.33 9 2.5 8.33 1 7.5 1zm5 10c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-10c-.83 0-1.5.67-1.5 1.5S11.67 9 12.5 9 14 8.33 14 7.5 13.33 6 12.5 6z", - ], - draw: [ - "M17.7 12.7c0-.1 0-.2-.1-.3l-2-7c-.1-.3-.3-.6-.6-.7L1.8 0l-.6.5L7.7 7c.3-.2.6-.3 1-.3 1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2c0-.4.1-.7.3-1L.5 1.2l-.5.6L4.7 15c.1.3.4.5.7.6l7 2c.1 0 .2.1.3.1.3 0 .5-.1.7-.3l4-4c.2-.2.3-.5.3-.7zm1 1c-.3 0-.5.1-.7.3l-4 4c-.2.2-.3.4-.3.7 0 .5.4 1 1 1 .3 0 .5-.1.7-.3l4-4c.2-.2.3-.4.3-.7 0-.6-.5-1-1-1z", - ], - "drawer-left": [ - "M9 0a1 1 0 011 1v18a1 1 0 01-1 1H1a1 1 0 01-1-1V1a1 1 0 011-1h8zM8 2H2v16h6V2zm2 7h6.59L14.3 6.71A.965.965 0 0114 6a1.003 1.003 0 011.71-.71l4 4c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-4 4a1.003 1.003 0 01-1.42-1.42l2.3-2.29H10V9z", - ], - "drawer-left-filled": [ - "M1 0h8a1 1 0 011 1v18a1 1 0 01-1 1H1a1 1 0 01-1-1V1a1 1 0 011-1zm9 9h6.59L14.3 6.71A.965.965 0 0114 6a1.003 1.003 0 011.71-.71l4 4c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-4 4a1.003 1.003 0 01-1.42-1.42l2.3-2.29H10V9z", - ], - "drawer-right": [ - "M19 0a1 1 0 011 1v18a1 1 0 01-1 1h-8a1 1 0 01-1-1V1a1 1 0 011-1h8zm-1 2h-6v16h6V2zm-8 7H3.41L5.7 6.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-4 4C.11 9.47 0 9.72 0 10c0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L3.41 11H10V9z", - ], - "drawer-right-filled": [ - "M11 0h8a1 1 0 011 1v18a1 1 0 01-1 1h-8a1 1 0 01-1-1V1a1 1 0 011-1zm-1 9H3.41L5.7 6.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-4 4C.11 9.47 0 9.72 0 10c0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L3.41 11H10V9z", - ], - "drive-time": [ - "M20.01 7.7c0-.63-.5-1.14-1.1-1.14h-1.32l-.95-2.57c-.24-.64-.95-1.31-1.59-1.5 0 0-1.65-.49-5.05-.49s-5.04.49-5.04.49c-.63.19-1.35.86-1.59 1.5l-.95 2.57H1.1C.5 6.56 0 7.07 0 7.7c0 .63.5 1.14 1.1 1.14h.47l-.34.91c-.24.64-.43 1.72-.43 2.4v5.39c0 .8.63 1.45 1.4 1.45.77 0 1.4-.65 1.4-1.45v-.83h12.8v.83c0 .8.63 1.45 1.4 1.45s1.4-.65 1.4-1.45v-5.39c0-.68-.19-1.77-.43-2.4l-.34-.91h.47c.61 0 1.11-.51 1.11-1.14zm-16.47.34l1.12-3.16c.08-.22.32-.39.54-.39h9.6c.22 0 .46.17.54.39l1.12 3.16c.08.21-.04.39-.26.39H3.8c-.22-.01-.34-.18-.26-.39zm.96 4.94c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.68 1.5 1.5c0 .83-.67 1.5-1.5 1.5zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", - ], - duplicate: [ - "M15 4H1c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 14H2V6h12v12zm5-18H5c-.55 0-1 .45-1 1v2h2V2h12v12h-1v2h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - edit: [ - "M4.59 12.59l2.83 2.83 7.65-7.65-2.83-2.83-7.65 7.65zM2 18l4.41-1.59-2.81-2.79L2 18zM16 2c-.55 0-1.05.22-1.41.59l-1.65 1.65 2.83 2.83 1.65-1.65A2.006 2.006 0 0016 2z", - ], - eject: [ - "M4 12h12c.55 0 1-.45 1-1 0-.25-.1-.47-.25-.64l.01-.01-6-7-.01.01C10.57 3.14 10.3 3 10 3s-.57.14-.75.36l-.01-.01-6 7 .01.01c-.15.17-.25.39-.25.64 0 .55.45 1 1 1zm12 1H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1z", - ], - emoji: [ - "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0zm0 2a8 8 0 100 16 8 8 0 000-16zm-4 8l.015.215C6.219 12.42 7.925 14 10 14a4 4 0 003.995-3.8L14 10h2l-.013.238C15.754 13.552 13.163 16 10 16a6 6 0 01-5.996-5.775L4 10h2zm1.5-4a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm5 0a1.5 1.5 0 110 3 1.5 1.5 0 010-3z", - ], - endorsed: [ - "M19.83 9.38L18.81 7.6V5.62c0-.45-.23-.85-.61-1.08l-1.71-1-1.02-1.76a1.25 1.25 0 00-1.08-.61h-2.03l-1.74-1c-.38-.23-.87-.23-1.25 0l-1.74 1H5.65c-.44 0-.85.23-1.08.61L3.58 3.5l-1.8 1.04c-.38.24-.62.64-.62 1.08v2.06L.17 9.4c-.11.19-.17.4-.17.61s.06.42.17.61l.99 1.72v2.06c0 .45.23.85.61 1.08l1.78 1.02.99 1.72c.23.38.63.61 1.08.61h1.99l1.74 1c.19.11.41.17.62.17.21 0 .42-.06.61-.17l1.74-1h2.03c.44 0 .85-.23 1.08-.61l1.02-1.76 1.71-1c.38-.23.61-.64.61-1.08v-1.97l1.02-1.78c.27-.38.27-.85.04-1.25zm-5.08-.71l-5.01 5.01c-.18.18-.43.29-.71.29-.28 0-.53-.11-.71-.29l-3.01-3.01a1.003 1.003 0 011.42-1.42l2.3 2.3 4.31-4.3a1.003 1.003 0 011.71.71c0 .28-.12.53-.3.71z", - ], - envelope: [ - "M0 4.01v11.91l6.27-6.27L0 4.01zm18.91-1.03H1.09L10 10.97l8.91-7.99zm-5.18 6.66L20 15.92V4.01l-6.27 5.63zm-3.23 2.9c-.13.12-.31.19-.5.19s-.37-.07-.5-.19l-2.11-1.89-6.33 6.33h17.88l-6.33-6.33-2.11 1.89z", - ], - equals: [ - "M4 7h12a1 1 0 010 2H4a1 1 0 110-2zm0 4h12a1 1 0 010 2H4a1 1 0 010-2z", - ], - eraser: [ - "M18.71 8.43c.39-.4.39-1.05 0-1.45l-5.53-5.72a.967.967 0 00-1.4 0L1.29 12.1c-.39.4-.39 1.05 0 1.45l4.25 4.39 2.13 2.05h9.27c.02 0 .03.01.05.01.55 0 1-.45 1-1s-.45-1-1-1H9.46l.05-.05h.01l.81-.84 8.38-8.68zM7.52 17.94l-4.95-5.12 4.46-4.61 4.95 5.12-4.46 4.61z", - ], - error: [ - "M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm1 16H9v-2h2v2zm0-3H9V4h2v9z", - ], - euro: [ - "M8.89 4.47c.56-.31 1.23-.47 2.03-.47.44 0 .85.07 1.25.22.4.14.76.35 1.07.6.17.14.33.3.47.47l2.32-2.32c-.16-.15-.3-.32-.47-.46-.62-.49-1.33-.87-2.12-1.13-.8-.25-1.64-.38-2.52-.38-1.24 0-2.35.22-3.33.66-.99.44-1.82 1.05-2.49 1.82-.68.78-1.2 1.68-1.56 2.72-.09.26-.13.54-.2.8H2c-.55 0-1 .45-1 1s.45 1 1 1h1.04c-.01.2-.04.38-.04.58 0 .15.03.28.03.42H2c-.55 0-1 .45-1 1s.45 1 1 1h1.31c.07.3.13.6.23.89.36 1.02.88 1.92 1.56 2.67.68.76 1.51 1.35 2.49 1.79.98.43 2.09.65 3.33.65.99 0 1.9-.15 2.73-.46.83-.3 1.55-.74 2.17-1.32.03-.03.05-.06.08-.09l-2.41-2.15c-.01.01-.02.02-.02.03-.61.67-1.46 1-2.54 1-.8 0-1.47-.16-2.03-.47-.56-.31-1.01-.72-1.35-1.24-.28-.38-.47-.83-.63-1.3H12c.55 0 1-.45 1-1s-.45-1-1-1H6.56c0-.14-.02-.28-.02-.42 0-.2.02-.39.03-.58H13c.55 0 1-.45 1-1s-.45-1-1-1H6.94c.15-.46.34-.9.59-1.28.35-.52.8-.94 1.36-1.25zM18 11.38v0z", - ], - exchange: [ - "M2.5 8a2.5 2.5 0 000 5 2.5 2.5 0 000-5zm10.35 3.15a.495.495 0 10-.7.7L13.3 13H5.5c-.28 0-.5.22-.5.5s.22.5.5.5h7.79l-1.15 1.15c-.08.09-.14.21-.14.35a.495.495 0 00.85.35l2-2c.09-.09.15-.21.15-.35s-.06-.26-.15-.35l-2-2zM17.5 8a2.5 2.5 0 000 5 2.5 2.5 0 000-5zM7.15 9.85a.495.495 0 10.7-.7L6.71 8h7.79c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H6.71l1.15-1.15c.08-.09.14-.21.14-.35a.495.495 0 00-.85-.35l-2 2c-.09.09-.15.21-.15.35s.06.26.15.35l2 2z", - ], - "exclude-row": [ - "M1 3h18c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zM0 13a1.003 1.003 0 001.71.71L4 11.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L5.41 10 7.7 7.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L4 8.59l-2.29-2.3A1.003 1.003 0 00.29 7.71L2.59 10 .3 12.29c-.19.18-.3.43-.3.71zm18-5h-7c-1.1 0-2 .9-2 2s.9 2 2 2h7c1.1 0 2-.9 2-2s-.9-2-2-2zm1 9H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "expand-all": [ - "M4 9c.28 0 .53-.11.71-.29L10 3.41l5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-6-6C10.53 1.11 10.28 1 10 1s-.53.11-.71.29l-6 6A1.003 1.003 0 004 9zm12 2c-.28 0-.53.11-.71.29L10 16.59 4.71 11.3A.965.965 0 004 11a1.003 1.003 0 00-.71 1.71l6 6c.18.18.43.29.71.29s.53-.11.71-.29l6-6A1.003 1.003 0 0016 11z", - ], - export: [ - "M5 7c.28 0 .53-.11.71-.29L9 3.41V15c0 .55.45 1 1 1s1-.45 1-1V3.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-5-5C10.53.11 10.28 0 10 0s-.53.11-.71.29l-5 5A1.003 1.003 0 005 7zm14 7c-.55 0-1 .45-1 1v3H2v-3c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1z", - ], - "eye-off": [ - "M20 9.96v-.03-.01-.02-.02a.794.794 0 00-.21-.43c-.55-.69-1.19-1.3-1.85-1.87l-3.93 2.62a3.966 3.966 0 01-3.96 3.77c-.47 0-.91-.1-1.33-.24l-2.24 1.49c.52.21 1.05.39 1.6.51 1.21.27 2.43.28 3.64.05 1.11-.21 2.17-.64 3.17-1.18 1.56-.84 2.99-2 4.23-3.3.23-.24.46-.49.67-.75a.87.87 0 00.21-.43v-.02-.02-.01-.03V10v-.04zm-.46-5.14c.27-.18.46-.47.46-.82 0-.55-.45-1-1-1-.21 0-.39.08-.54.18l-.01-.02L15 5.46c-.95-.53-1.95-.96-3.01-1.2a9.158 9.158 0 00-3.65-.04c-1.11.21-2.17.64-3.17 1.18-1.56.84-2.99 2-4.23 3.3-.23.24-.46.48-.67.75-.27.34-.27.76 0 1.1.64.79 1.39 1.5 2.16 2.15.26.21.52.41.79.61L.44 15.16l.01.02A1 1 0 000 16c0 .55.45 1 1 1 .21 0 .39-.08.54-.18l.01.02 18-12-.01-.02zm-8.67 3.4c-.25-.12-.53-.2-.83-.2-1.1 0-1.99.89-1.99 1.99 0 .03.02.06.02.09l-1.78 1.19c-.14-.4-.22-.83-.22-1.28 0-2.19 1.78-3.97 3.98-3.97 1.01 0 1.91.38 2.61 1l-1.79 1.18z", - ], - "eye-on": [ - "M13.3 8.71c.18.18.43.29.71.29s.53-.11.71-.29l4.99-5a1.003 1.003 0 00-1.42-1.42L14 6.58l-2.29-2.29a.956.956 0 00-.7-.29 1.003 1.003 0 00-.71 1.71l3 3zM20 9.96v-.03-.01-.02-.02a.823.823 0 00-.21-.44c-.44-.55-.94-1.05-1.46-1.52l-2.2 2.2c-.55.54-1.3.88-2.12.88-.05 0-.09-.01-.14-.01a3.978 3.978 0 01-3.86 3.02 4.007 4.007 0 01-1.66-7.65A2.97 2.97 0 018.02 5c0-.28.05-.54.12-.8-1.05.22-2.07.64-3.02 1.15-1.57.85-3 2.02-4.24 3.33-.23.25-.46.5-.67.76-.28.35-.28.77 0 1.12.64.8 1.4 1.52 2.17 2.17 1.66 1.41 3.56 2.58 5.66 3.06 1.21.27 2.43.29 3.65.05 1.11-.21 2.18-.65 3.18-1.19 1.57-.85 3-2.02 4.24-3.33.23-.24.46-.49.67-.76.11-.12.18-.27.21-.44v-.02-.02-.01-.03V10c.01-.01.01-.03.01-.04zm-9.99 2.05c1.03 0 1.87-.79 1.98-1.8l-.09-.09-.01.01-2.1-2.11c-1 .11-1.77.95-1.77 1.98-.01 1.11.89 2.01 1.99 2.01z", - ], - "eye-open": [ - "M10.01 7.984A2.008 2.008 0 008.012 9.99c0 1.103.9 2.006 1.998 2.006a2.008 2.008 0 001.998-2.006c0-1.103-.9-2.006-1.998-2.006zM20 9.96v-.03-.01-.02-.02a.827.827 0 00-.21-.442c-.64-.802-1.398-1.514-2.168-2.166-1.658-1.404-3.566-2.587-5.664-3.058a8.982 8.982 0 00-3.656-.05c-1.11.2-2.178.641-3.177 1.183-1.569.852-2.997 2.016-4.246 3.33-.23.25-.46.49-.67.761-.279.351-.279.773 0 1.124.64.802 1.4 1.514 2.169 2.166 1.658 1.404 3.566 2.577 5.664 3.058 1.209.271 2.438.281 3.656.05 1.11-.21 2.178-.651 3.177-1.193 1.569-.852 2.997-2.016 4.246-3.33.23-.24.46-.49.67-.751.11-.12.179-.271.209-.442v-.02-.02-.01-.03V10v-.04zM10.01 14A4.003 4.003 0 016.014 9.99a4.003 4.003 0 013.996-4.011 4.003 4.003 0 013.996 4.011 4.003 4.003 0 01-3.996 4.011z", - ], - "fast-backward": [ - "M18 3c-.23 0-.42.09-.59.21l-.01-.01L11 8V4c0-.55-.45-1-1-1-.23 0-.42.09-.59.21L9.4 3.2l-8 6 .01.01C1.17 9.4 1 9.67 1 10s.17.6.41.79l-.01.01 8 6 .01-.01c.17.12.36.21.59.21.55 0 1-.45 1-1v-4l6.4 4.8.01-.01c.17.12.36.21.59.21.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - "fast-forward": [ - "M19 10c0-.33-.17-.6-.41-.79l.01-.01-8-6-.01.01C10.42 3.09 10.23 3 10 3c-.55 0-1 .45-1 1v4L2.6 3.2l-.01.01C2.42 3.09 2.23 3 2 3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1 .23 0 .42-.09.59-.21l.01.01L9 12v4c0 .55.45 1 1 1 .23 0 .42-.09.59-.21l.01.01 8-6-.01-.01c.24-.19.41-.46.41-.79z", - ], - feed: [ - "M2.5 15a2.5 2.5 0 000 5 2.5 2.5 0 000-5zm.5-5c-.55 0-1 .45-1 1s.45 1 1 1c2.76 0 5 2.24 5 5 0 .55.45 1 1 1s1-.45 1-1c0-3.87-3.13-7-7-7zM3 0c-.55 0-1 .45-1 1s.45 1 1 1c8.28 0 15 6.72 15 15 0 .55.45 1 1 1s1-.45 1-1C20 7.61 12.39 0 3 0zm0 5c-.55 0-1 .45-1 1s.45 1 1 1c5.52 0 10 4.48 10 10 0 .55.45 1 1 1s1-.45 1-1C15 10.37 9.63 5 3 5z", - ], - "feed-subscribed": [ - "M2.5 15a2.5 2.5 0 000 5 2.5 2.5 0 000-5zM3 2c1.76 0 3.44.31 5.01.87.03-.71.31-1.35.75-1.85C6.96.37 5.03 0 3 0c-.55 0-1 .45-1 1s.45 1 1 1zm10.32 4.67a.99.99 0 001.4 0l4.98-4.98c.19-.17.3-.42.3-.7 0-.55-.45-1-1-1a.99.99 0 00-.7.29l-4.27 4.27-2.28-2.28a.99.99 0 00-.7-.29c-.55 0-.99.45-.99 1 0 .28.11.52.29.7l2.97 2.99zM3 10c-.55 0-1 .45-1 1s.45 1 1 1c2.76 0 5 2.24 5 5 0 .55.45 1 1 1s1-.45 1-1c0-3.87-3.13-7-7-7zm13.94-2.69l-.82.82-.02-.02c-.2.2-.42.37-.67.51A14.8 14.8 0 0118 17c0 .55.45 1 1 1s1-.45 1-1c0-3.61-1.14-6.94-3.06-9.69zM3 5c-.55 0-1 .45-1 1s.45 1 1 1c5.52 0 10 4.48 10 10 0 .55.45 1 1 1s1-.45 1-1C15 10.37 9.63 5 3 5z", - ], - film: [ - "M19 2h-5v3H6V2H1c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h5v-3h8v3h5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zM4 17H2v-2h2v2zm0-3H2v-2h2v2zm0-3H2V9h2v2zm0-3H2V6h2v2zm0-3H2V3h2v2zm10 8H6V7h8v6zm4 4h-2v-2h2v2zm0-3h-2v-2h2v2zm0-3h-2V9h2v2zm0-3h-2V6h2v2zm0-3h-2V3h2v2z", - ], - filter: [ - "M18 1H2a1.003 1.003 0 00-.71 1.71L7 8.41V18a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71V8.41l5.71-5.71c.18-.17.29-.42.29-.7 0-.55-.45-1-1-1z", - ], - "filter-keep": [ - "M15 2c0-.55-.45-1-1-1H1a1.003 1.003 0 00-.71 1.71L5 7.41V16a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71V7.41l4.71-4.71c.18-.17.29-.42.29-.7zm4 11c-.28 0-.53.11-.71.29L15 16.59l-1.29-1.29A.965.965 0 0013 15a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l4-4A1.003 1.003 0 0019 13z", - ], - "filter-list": [ - "M15 2c0-.55-.45-1-1-1H1a1.003 1.003 0 00-.71 1.71L5 7.41V16a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71V7.41l4.71-4.71c.18-.17.29-.42.29-.7zm-4 8c0 .55.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1h-7c-.55 0-1 .45-1 1zm8 7h-7c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1zm0-4h-7c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "filter-open": [ - "M15 2c0 .28-.11.53-.29.7L10 7.41V13c0 .28-.11.53-.29.71l-3 3A1.003 1.003 0 015 16V7.41L.29 2.71A1.003 1.003 0 011 1h13c.55 0 1 .45 1 1zm4.707 11.293a1 1 0 010 1.414l-4 4c-.63.63-1.707.184-1.707-.707v-8c0-.89 1.077-1.337 1.707-.707l4 4z", - ], - "filter-remove": [ - "M15 2c0-.55-.45-1-1-1H1a1.003 1.003 0 00-.71 1.71L5 7.41V16a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71V7.41l4.71-4.71c.18-.17.29-.42.29-.7zm2.91 13.5l1.79-1.79c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-1.79 1.79-1.79-1.79a1.003 1.003 0 00-1.42 1.42l1.79 1.79-1.79 1.79a1.003 1.003 0 001.42 1.42l1.79-1.79 1.79 1.79a1.003 1.003 0 001.42-1.42l-1.8-1.79z", - ], - flag: [ - "M3 3c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1zm0-3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm2 4.08v8.28c3.01-2.41 8.67 2.64 13 0V4.08C13.61 7.14 8.01 1 5 4.08z", - ], - flame: [ - "M11.622 0c0 1.71.49 3.077 1.472 4.103C16.364 6.496 18 9.23 18 12.308c0 3.418-1.962 5.983-5.887 7.692 2.887-3 2.453-4.23-.49-8C8.5 13.5 9 14.5 9.5 16.5c-1.048 0-2 0-2.5-.5 0 .684 1.197 2.5 1.952 4-3.924-1.026-8.123-7.18-6.651-7.692.981-.342 2.126-.171 3.434.513C4.1 6.667 6.062 2.393 11.622 0z", - ], - flash: [ - "M4.96 6.37a1.003 1.003 0 001.42-1.42l-2-2a1.07 1.07 0 00-.71-.28 1.003 1.003 0 00-.71 1.71l2 1.99zm9.37.3c.28 0 .53-.11.71-.29l2-2a1.003 1.003 0 00-1.42-1.42l-2 2a1.003 1.003 0 00.71 1.71zM10 5c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1S9 .45 9 1v3c0 .55.45 1 1 1zm-5 5c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1zm14-1h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm-9-3c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.04 1.63a1.003 1.003 0 00-1.42 1.42l2 2a1.003 1.003 0 001.42-1.42l-2-2zM10 15c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1v-3c0-.55-.45-1-1-1zm-4.33-1.67c-.28 0-.53.11-.71.29l-2 2a1.003 1.003 0 001.42 1.42l2-2a1.003 1.003 0 00-.71-1.71z", - ], - "floppy-disk": [ - "M14 1h-3v5h3V1zm5.71 2.29l-3-3A.997.997 0 0016 0h-1v7H5V0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V4c0-.28-.11-.53-.29-.71zM17 19H3v-8c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v8z", - ], - "flow-branch": [ - "M14.425 7.953a3.98 3.98 0 01.562 2.045 3.98 3.98 0 01-.583 2.08L18 15.671V12.98c0-.248.097-.496.29-.689.379-.379 1.047-.38 1.426 0a.94.94 0 01.283.696l-.001 5.049a.957.957 0 01-.276.69.955.955 0 01-.69.273h-5.059a.971.971 0 01-.689-.289 1.026 1.026 0 010-1.417.972.972 0 01.69-.29h2.702l-3.634-3.573a3.998 3.998 0 01-5.924-2.431H1a1 1 0 010-2h6.12a3.998 3.998 0 015.96-2.409L16.665 3l-2.694-.001a.972.972 0 01-.689-.29 1.035 1.035 0 010-1.425.94.94 0 01.696-.283l5.05.001c.248 0 .497.083.69.276a.954.954 0 01.272.69l.001 5.052a.971.971 0 01-.29.689 1.028 1.028 0 01-1.419 0 .972.972 0 01-.29-.69V4.323l-3.567 3.63z", - ], - "flow-end": [ - "M12 9.919a3.998 3.998 0 014-3.92c2.21 0 4 1.79 4 3.997a3.998 3.998 0 01-4 3.996 3.998 3.998 0 01-4-3.916.967.967 0 01-.28.612L7.685 14.71a.958.958 0 01-.686.285c-.536 0-.994-.461-.994-.997 0-.273.107-.528.283-.704l2.379-2.302H.98c-.537 0-.976-.46-.976-.996s.44-.992.976-.992h7.676L6.287 6.687a.957.957 0 01-.283-.686c0-.536.458-.996.994-.996.274 0 .51.1.686.285l4.027 4.024c.159.158.27.365.29.605z", - ], - "flow-linear": [ - "M5.125 10.997H.976C.439 10.997 0 10.537 0 10c0-.536.44-.993.976-.993h4.148a4.002 4.002 0 017.752 0h3.776L14.293 6.69a.962.962 0 01-.285-.687c0-.537.46-1.001.996-1.001a.96.96 0 01.698.3l4.005 4.015c.176.176.293.41.293.683a.972.972 0 01-.283.693L15.702 14.7a.997.997 0 01-.698.297c-.537 0-.996-.453-.996-.99 0-.273.107-.517.283-.692l2.371-2.318h-3.787a4.002 4.002 0 01-7.75 0z", - ], - "flow-review": [ - "M6.13 9.004A4.005 4.005 0 0110.012 6c1.87 0 3.44 1.278 3.881 3.005h2.768l-2.354-2.317a.97.97 0 01-.283-.691c0-.536.462-.995 1-.995.273 0 .517.107.693.283l4 4.041a.97.97 0 01.284.692.956.956 0 01-.293.682l-3.991 3.997a.944.944 0 01-.694.292c-.537 0-1-.46-1-.997a.97.97 0 01.284-.692l2.345-2.29h-2.765a4.005 4.005 0 01-3.875 2.981 4.005 4.005 0 01-3.874-2.981H3.349l2.376 2.308a.97.97 0 01.283.691 1 1 0 01-.994.983.989.989 0 01-.713-.291L.293 10.699A.956.956 0 010 10.017a.97.97 0 01.283-.692l4.03-4.037a.996.996 0 01.701-.283c.537 0 .994.464.994 1a.97.97 0 01-.283.691L3.34 9.004h2.79z", - ], - "flow-review-branch": [ - "M13.04 13.424c-.6.36-1.302.568-2.052.568a4 4 0 01-3.868-2.999H3.342l2.372 2.31c.176.176.283.42.283.694 0 .537-.452.998-.988.998a.935.935 0 01-.691-.289L.292 10.683A.96.96 0 010 9.999c0-.274.107-.518.283-.694l4.035-4.04a.973.973 0 01.691-.288c.536 0 .988.47.988 1.007a.975.975 0 01-.283.694L3.332 8.984h3.786a4 4 0 013.87-3.006c.771 0 1.492.22 2.102.599l3.565-3.57-2.538-.003a.974.974 0 01-.69-.29c-.38-.38-.38-1.052-.002-1.431A.94.94 0 0114.122 1l4.896.005a.96.96 0 01.69.277c.193.193.27.442.27.69l.005 4.9a.971.971 0 01-.289.69 1.023 1.023 0 01-1.416 0 .975.975 0 01-.29-.691l-.003-2.54-3.554 3.62c.351.596.553 1.291.553 2.034 0 .763-.213 1.477-.583 2.084l3.595 3.595.003-2.54c0-.249.097-.497.29-.69.38-.38 1.05-.381 1.429-.002a.94.94 0 01.282.697l-.005 4.9a.927.927 0 01-.277.675.974.974 0 01-.69.291L13.974 19a.97.97 0 01-.69-.29 1.03 1.03 0 01.002-1.42.974.974 0 01.69-.29l2.696-.003-3.632-3.573z", - ], - flows: [ - "M17.5 7.93a2.5 2.5 0 00-2.45 2h-2.3l-4.01-4-.75.75 3.26 3.25h-6.3a2.5 2.5 0 100 1h6.3l-3.26 3.25.75.75 4.01-4h2.3a2.5 2.5 0 102.45-3z", - ], - "folder-close": [ - "M0 17c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V7H0v10zM19 4H9.41l-1.7-1.71A.997.997 0 007 2H1c-.55 0-1 .45-1 1v3h20V5c0-.55-.45-1-1-1z", - ], - "folder-new": [ - "M12.994 7c0 1.655 1.344 3 2.998 3a3.002 3.002 0 002.999-3H20v10c0 .55-.45 1-1 1H1.01c-.55 0-1-.45-1-1V7h12.984zM10.76 6H0V3c0-.55.45-1 1-1h3.998c.28 0 .53.11.71.29L7.415 4h2.579c0 .768.29 1.469.765 2zm8.23-3c.55 0 1 .45 1 1s-.45 1-1 1h-1.998v2c0 .55-.45 1-1 1s-1-.45-1-1V5h-1.998c-.55 0-1-.45-1-1s.45-1 1-1h1.999V1c0-.55.45-1 .999-1 .55 0 1 .45 1 1v2h1.999z", - ], - "folder-open": [ - "M20 9c0-.55-.45-1-1-1H5c-.43 0-.79.27-.93.65h-.01l-3 8h.01c-.04.11-.07.23-.07.35 0 .55.45 1 1 1h14c.43 0 .79-.27.93-.65h.01l3-8h-.01c.04-.11.07-.23.07-.35zM3.07 7.63C3.22 7.26 3.58 7 4 7h14V5c0-.55-.45-1-1-1H8.41l-1.7-1.71A.997.997 0 006 2H1c-.55 0-1 .45-1 1v12.31l3.07-7.68z", - ], - "folder-shared": [ - "M11 4H9.41l-1.7-1.71A.997.997 0 007 2H1c-.55 0-1 .45-1 1v3h11.78C11.3 5.47 11 4.77 11 4zm8-1h-5c-.55 0-1 .45-1 1s.45 1 1 1h2.59L12.3 9.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L18 6.41V9c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1zm-2.46 7.7l-1.42 1.42a2.996 2.996 0 11-4.24-4.24l.88-.88H0v10c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-5.18c-.31.11-.65.18-1 .18-1.02 0-1.92-.52-2.46-1.3z", - ], - "folder-shared-open": [ - "M3.07 7.63C3.22 7.26 3.58 7 4 7h7.76l.54-.54A2.97 2.97 0 0111 4H8.41l-1.7-1.71A.997.997 0 006 2H1c-.55 0-1 .45-1 1v12.31l3.07-7.68zm13.47 3.07l-1.42 1.42A2.996 2.996 0 0110 10c0-.77.3-1.47.78-2H5c-.43 0-.79.27-.93.65h-.01l-3 8h.01c-.04.11-.07.23-.07.35 0 .55.45 1 1 1h14c.43 0 .79-.27.93-.65h.01l2.01-5.36c-1-.01-1.88-.52-2.41-1.29zM19 3h-5c-.55 0-1 .45-1 1s.45 1 1 1h2.59L12.3 9.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L18 6.41V9c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - follower: [ - "M11.54 15.92c-1.48-.65-1.28-1.05-1.33-1.59-.01-.07-.01-.15-.01-.23.51-.45.92-1.07 1.19-1.78 0 0 .01-.04.02-.05.06-.15.11-.32.15-.48.34-.07.54-.44.61-.78.08-.14.23-.48.2-.87-.05-.5-.25-.73-.47-.82v-.09c0-.63-.06-1.55-.17-2.15-.02-.17-.06-.33-.11-.5a3.69 3.69 0 00-1.29-1.86C9.69 4.25 8.8 4 8.01 4c-.8 0-1.69.25-2.32.73-.61.47-1.06 1.13-1.28 1.86-.05.17-.09.33-.11.5-.12.6-.18 1.51-.18 2.14v.08c-.23.09-.44.32-.49.83-.04.39.12.73.2.87.08.35.28.72.63.78.04.17.09.33.15.48 0 .01.01.02.01.03l.01.01c.27.72.7 1.35 1.22 1.8 0 .07-.01.14-.01.21-.05.54.1.94-1.38 1.59-1.48.65-3.71 1.35-4.16 2.4C-.16 19.38.02 20 .02 20h15.95s.18-.62-.27-1.67c-.46-1.06-2.68-1.75-4.16-2.41zm8.15-12.63l-3-3a.956.956 0 00-.7-.29 1.003 1.003 0 00-.71 1.71L16.58 3H13c-.55 0-1 .45-1 1s.45 1 1 1h3.58l-1.29 1.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.3-.71z", - ], - following: [ - "M11.55 15.92c-1.48-.65-1.28-1.05-1.33-1.59-.01-.07-.01-.15-.01-.23.51-.45.92-1.07 1.19-1.78 0 0 .01-.04.02-.05.06-.15.11-.32.15-.48.34-.07.54-.44.61-.78.08-.14.23-.48.2-.87-.05-.5-.25-.73-.47-.82v-.09c0-.63-.06-1.55-.17-2.15-.02-.17-.06-.33-.11-.5a3.69 3.69 0 00-1.29-1.86C9.7 4.25 8.81 4 8.02 4c-.79 0-1.68.25-2.31.73-.61.47-1.07 1.13-1.29 1.86-.05.16-.09.33-.11.5-.12.6-.18 1.51-.18 2.14v.08c-.23.09-.44.32-.48.83-.04.39.12.73.2.87.08.35.28.72.63.78.04.17.09.33.15.48 0 .01.01.02.01.03l.01.01c.27.72.7 1.35 1.22 1.8 0 .07-.01.14-.01.21-.05.54.1.94-1.38 1.59C3 16.56.77 17.26.32 18.31-.15 19.38.04 20 .04 20h15.95s.18-.62-.27-1.67c-.46-1.06-2.69-1.75-4.17-2.41zM19 3h-3.58l1.29-1.29A1.003 1.003 0 0015.29.29l-3 3c-.17.18-.28.43-.28.71 0 .28.11.53.29.71l3 3c.18.18.43.29.7.29a1.003 1.003 0 00.71-1.71L15.42 5H19c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - font: [ - "M17.93 18.64l-7-18C10.78.27 10.42 0 10 0s-.78.27-.93.64l-7 18c-.04.11-.07.23-.07.36 0 .55.45 1 1 1 .42 0 .78-.27.93-.64L6.41 13h7.19l2.47 6.36c.15.37.51.64.93.64.55 0 1-.45 1-1 0-.13-.03-.25-.07-.36zM7.18 11L10 3.76 12.82 11H7.18z", - ], - fork: [ - "M16.71 11.29a1.003 1.003 0 00-1.42 1.42l1.3 1.29h-2.17l-8-8h10.17L15.3 7.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-3-3a1.003 1.003 0 00-1.42 1.42L16.59 4H1c-.55 0-1 .45-1 1s.45 1 1 1h2.59l9.71 9.71c.17.18.42.29.7.29h2.59l-1.29 1.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-3-3z", - ], - form: [ - "M2 13v4h4v-4H2zm-1-2h6c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1v-6c0-.55.45-1 1-1zm11-7h7c.55 0 1 .45 1 1s-.45 1-1 1h-7c-.55 0-1-.45-1-1s.45-1 1-1zM8 1a1.003 1.003 0 01.71 1.71l-5 6C3.53 8.89 3.28 9 3 9s-.53-.11-.71-.29l-2-2a1.003 1.003 0 011.42-1.42L3 6.59l4.29-5.3C7.47 1.11 7.72 1 8 1zm4 13h7c.55 0 1 .45 1 1s-.45 1-1 1h-7c-.55 0-1-.45-1-1s.45-1 1-1z", - ], - "full-circle": ["M9.96 0a10 10 0 100 20 10 10 0 100-20z"], - "full-stacked-chart": [ - "M15 16h2c.55 0 1-.45 1-1v-5h-4v5c0 .55.45 1 1 1zM12 2c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v4h4V2zm6 4h-4v3h4V6zm0-4c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v3h4V2zm-6 5H8v5h4V7zm-9 9h2c.55 0 1-.45 1-1v-3H2v3c0 .55.45 1 1 1zm6 0h2c.55 0 1-.45 1-1v-2H8v2c0 .55.45 1 1 1zm10 1H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zM6 2c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v3h4V2zm0 4H2v5h4V6z", - ], - fullscreen: [ - "M3.41 2H6c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v5c0 .55.45 1 1 1s1-.45 1-1V3.41L7.29 8.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L3.41 2zM8 11c-.28 0-.53.11-.71.29L2 16.59V14c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1H3.41l5.29-5.29c.19-.18.3-.43.3-.71 0-.55-.45-1-1-1zM19 0h-5c-.55 0-1 .45-1 1s.45 1 1 1h2.59L11.3 7.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L18 3.41V6c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm0 13c-.55 0-1 .45-1 1v2.59l-5.29-5.29A.965.965 0 0012 11a1.003 1.003 0 00-.71 1.71l5.3 5.29H14c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1z", - ], - function: [ - "M10.14 5.82H8.73c.4-1.66.94-2.87 1.6-3.64.4-.48.8-.72 1.18-.72.08 0 .14.02.19.07.05.05.07.1.07.18 0 .07-.05.19-.16.37s-.16.36-.16.52c0 .23.08.43.25.59a.9.9 0 00.64.25c.28 0 .51-.1.7-.3.19-.2.28-.47.28-.81 0-.39-.14-.7-.42-.94-.28-.24-.74-.36-1.36-.36-.97 0-1.86.29-2.65.87-.79.56-1.54 1.52-2.26 2.85-.24.46-.48.75-.7.88-.22.13-.57.19-1.06.19l-.32 1.15H5.9l-1.99 7.85c-.33 1.29-.56 2.09-.67 2.39-.17.44-.43.81-.77 1.12a.74.74 0 01-.5.19c-.05 0-.1-.02-.14-.05l-.04-.07c0-.03.05-.1.15-.2.1-.1.15-.26.15-.47 0-.23-.08-.42-.23-.57-.16-.15-.38-.23-.67-.23-.35 0-.63.1-.85.29-.21.2-.32.43-.32.7 0 .29.13.54.39.75.25.22.65.33 1.2.33.88 0 1.66-.23 2.33-.69.68-.46 1.27-1.17 1.78-2.14.51-.96 1.03-2.52 1.56-4.66l1.14-4.54H9.8l.34-1.15zm6.8 1.95c.25-.2.51-.29.78-.29.1 0 .29.04.56.11.27.08.51.11.72.11.29 0 .52-.1.72-.3.18-.19.28-.45.28-.77 0-.33-.1-.6-.29-.8-.19-.2-.47-.29-.82-.29-.32 0-.62.08-.9.23-.28.15-.64.49-1.08 1-.33.38-.81 1.05-1.44 2a9.712 9.712 0 00-1.31-3.22l-3.4.59-.07.37c.25-.05.47-.08.64-.08.34 0 .62.15.84.44.35.46.84 1.85 1.46 4.19-.49.66-.82 1.09-1 1.3-.3.33-.55.54-.74.64-.15.08-.32.12-.51.12-.14 0-.38-.08-.7-.24-.22-.1-.42-.16-.59-.16-.33 0-.6.11-.82.32-.21.22-.32.49-.32.83 0 .31.1.57.3.77.2.2.47.29.8.29.32 0 .63-.07.92-.21.29-.14.64-.43 1.08-.88.43-.45 1.03-1.16 1.79-2.14.29.93.55 1.61.76 2.03.21.42.46.73.74.91.28.19.62.28 1.04.28.4 0 .81-.15 1.23-.44.55-.38 1.1-1.04 1.68-1.97l-.35-.21c-.39.55-.68.89-.87 1.03-.12.09-.27.13-.44.13-.2 0-.4-.13-.59-.38-.33-.43-.77-1.63-1.33-3.6.47-.86.89-1.44 1.23-1.71z", - ], - "gantt-chart": [ - "M4 7h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zm3 2v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1zm12 3h-6c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm0 4H2V3c0-.55-.45-1-1-1s-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - geofence: [ - "M8 11l.075.003.126.017.111.03.111.044.098.052.096.067.09.08c.036.035.068.073.097.112l.071.11.054.114.035.105.03.148L9 12V18a1 1 0 01-1.993.117L7 18v-3.586l-5.293 5.293a1 1 0 01-1.497-1.32l.083-.094L5.584 13h-3.58a1 1 0 01-.117-1.993L2.004 11H8zm3.018-11a1.003 1.003 0 01.39.087l.12.063.031.02.1.078 8.027 7.026.062.064.068.086.044.068.064.128.04.117.024.113.011.108v.1l-.007.073-.019.103-.037.121-.039.09-.05.087-4.996 7.994c-.06.097-.137.183-.226.254l-.093.067-.095.053-.087.037-.125.037a1.018 1.018 0 01-.218.026H11v-5a3 3 0 00-2.824-2.995L8 9H3V6a1 1 0 01.321-.734l.098-.08 7-5a1.01 1.01 0 01.45-.178L11.018 0z", - ], - geolocation: ["M0 8.33l9.17 2.5 2.5 9.17L20 0z"], - geosearch: [ - "M8 18.88c-3.79 0-6.88-3.09-6.88-6.88 0-.61.08-1.22.23-1.79.03.01.06-.01.1-.01h.09v.55c0 .23.21.42.44.42.04 0 .09-.01.12-.02l.9.88c.09.09.23.09.32 0s.09-.23 0-.32l-.86-.9c0-.02.05-.04.05-.07v-.13c0-.18.1-.25.29-.41h.53c.1 0 .19-.01.27-.05.01-.01.02 0 .03-.01.02-.01.03-.02.05-.04.01-.01.02-.01.02-.02l.02-.02 1.13-1.13c-.16-.32-.3-.65-.42-.99h-.64v-.53c0-.01.06.06.06-.1h.38c-.04-.16-.08-.32-.1-.48h-.71c.2-.16.42-.31.64-.45C4.02 6.09 4 5.8 4 5.5c0-.14.01-.28.02-.43C1.62 6.46 0 9.04 0 12c0 4.41 3.59 8 8 8 3.87 0 7.09-2.77 7.82-6.44l-.97-1.1c-.26 3.57-3.23 6.42-6.85 6.42zm-2.12-3.67v-.35h.15c.29 0 .49-.23.49-.53v-.68c0-.01.01-.01 0-.02L4.71 11.8h-.77c-.29 0-.47.24-.47.53v2c0 .29.18.53.47.53h.33v2.02c0 .28.28.51.56.51s.56-.23.56-.51v-1.22h-.01c.29 0 .5-.16.5-.45zm13.83-2.92l-3.68-3.68c.14-.21.27-.42.38-.65.02-.04.04-.07.05-.11.11-.22.2-.45.28-.69v-.01c.07-.24.13-.48.17-.73l.03-.17c.04-.24.06-.49.06-.75C17 2.46 14.54 0 11.5 0S6 2.46 6 5.5 8.46 11 11.5 11c.26 0 .51-.02.76-.06l.17-.03c.25-.04.49-.1.73-.17h.01c.24-.08.47-.17.69-.28.04-.02.07-.04.11-.05.23-.11.44-.24.65-.38l3.68 3.68c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71zM11.5 9.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm1.93 5.33v-.65c0-.11-.13-.21-.24-.21-.11 0-.24.09-.24.21v.65c0 .11.13.21.24.21.11 0 .24-.1.24-.21zm-2.41.67h.83c.29 0 .46-.21.46-.5v-1.86l.23-.22c-.34.05-.69.08-1.04.08-.36 0-.7-.03-1.05-.08.03.05.06.1.08.16V15c.01.29.2.5.49.5z", - ], - "git-branch": [ - "M15 2c-1.66 0-3 1.34-3 3 0 1.3.84 2.4 2 2.82V9c0 1.1-.9 2-2 2H8c-.73 0-1.41.21-2 .55V5.82C7.16 5.4 8 4.3 8 3c0-1.66-1.34-3-3-3S2 1.34 2 3c0 1.3.84 2.4 2 2.82v8.37C2.84 14.6 2 15.7 2 17c0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.25-.77-2.3-1.85-2.75C6.45 13.52 7.16 13 8 13h4c2.21 0 4-1.79 4-4V7.82C17.16 7.4 18 6.3 18 5c0-1.66-1.34-3-3-3zM5 2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM15 6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", - ], - "git-commit": [ - "M19 9h-4.1a5 5 0 00-9.8 0H1c-.55 0-1 .45-1 1s.45 1 1 1h4.1a5 5 0 009.8 0H19c.55 0 1-.45 1-1s-.45-1-1-1zm-9 4c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", - ], - "git-merge": [ - "M15 8c-1.3 0-2.4.84-2.82 2H11c-2.49 0-4.54-1.83-4.92-4.21A2.995 2.995 0 005 0C3.34 0 2 1.34 2 3c0 1.3.84 2.4 2 2.81v8.37C2.84 14.6 2 15.7 2 17c0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.3-.84-2.4-2-2.82V9.86C7.27 11.17 9.03 12 11 12h1.18A2.996 2.996 0 0018 11c0-1.66-1.34-3-3-3zM5 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM5 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm10 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", - ], - "git-new-branch": [ - "M17 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1V5h1c.55 0 1-.45 1-1s-.45-1-1-1zm-3 4.86V9c0 1.1-.9 2-2 2H8c-.73 0-1.41.21-2 .55V5.82C7.16 5.4 8 4.3 8 3c0-1.66-1.34-3-3-3S2 1.34 2 3c0 1.3.84 2.4 2 2.82v8.37C2.84 14.6 2 15.7 2 17c0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.25-.77-2.3-1.85-2.75C6.45 13.52 7.16 13 8 13h4c2.21 0 4-1.79 4-4V7.86c-.32.08-.65.14-1 .14s-.68-.06-1-.14zM5 2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", - ], - "git-pull": [ - "M17 14.18V7c0-2.21-1.79-4-4-4h-2.59l1.29-1.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3C7.11 3.47 7 3.72 7 4c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L10.41 5H13c1.1 0 2 .9 2 2v7.18A2.996 2.996 0 0016 20c1.66 0 3-1.34 3-3 0-1.3-.84-2.4-2-2.82zM16 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM4 1C2.34 1 1 2.34 1 4c0 1.3.84 2.4 2 2.82v7.37C1.84 14.6 1 15.7 1 17c0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.3-.84-2.4-2-2.82V6.82C6.16 6.4 7 5.3 7 4c0-1.66-1.34-3-3-3zm0 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM4 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", - ], - "git-push": [ - "M15 11c0-.28-.11-.53-.29-.71l-3-3C11.53 7.11 11.28 7 11 7s-.53.11-.71.29l-3 3a1.003 1.003 0 001.42 1.42l1.29-1.3V19c0 .55.45 1 1 1s1-.45 1-1v-8.59l1.29 1.29c.18.19.43.3.71.3.55 0 1-.45 1-1zm4-11H1C.45 0 0 .45 0 1v16c0 .55.45 1 1 1h7v-2H2v-2h6v-1H4V2h14v11h-4v1h4v2h-4v2h5c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM5 8h2V6H5v2zm2-5H5v2h2V3z", - ], - "git-repo": [ - "M7 3H5v2h2V3zm0 6H5v2h2V9zm0-3H5v2h2V6zm12-6H1C.45 0 0 .45 0 1v16c0 .55.45 1 1 1h4v2l2-1 2 1v-2h10c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 16H9v-1H5v1H2v-2h16v2zm0-3H4V2h14v11z", - ], - glass: [ - "M17 6V0H3v6c0 3.53 2.61 6.43 6 6.92V18H6c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1h-3v-5.08c3.39-.49 6-3.39 6-6.92z", - ], - globe: [ - "M7.53 4.37c.1-.1.1-.26 0-.35l-.68-.68c-.1-.1-.25-.1-.35 0-.1.1-.1.26 0 .35l.68.68c.1.1.25.1.35 0zm3.17.06h.3c.09 0 .16-.01.16-.1 0-.09-.07-.1-.16-.1h-.3c-.09 0-.16.01-.16.1s.07.1.16.1zm.98 1.15c.09 0 .19-.08.19-.17v-.42c0-.09-.1-.17-.19-.17s-.19.08-.19.17v.42c0 .09.1.17.19.17zm-6.5 4.19c-.35 0-.56.28-.56.63v2.37c0 .35.21.62.56.62h.39v2.4c0 .34.33.61.67.61s.67-.27.67-.61v-1.44h-.02c.35 0 .6-.19.6-.54v-.41h.18c.35 0 .58-.28.58-.62v-.81c0-.01.01-.01 0-.02L6.1 9.77h-.92zM10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8 0-.74.11-1.46.3-2.14h.03v.65c0 .28.25.5.53.5.05 0 .1-.01.15-.02l1.05 1.05c.1.11.28.11.38 0 .1-.1.11-.27 0-.38L3.42 8.59c0-.03.05-.05.05-.08v-.16c0-.22.12-.3.34-.49h.63c.12 0 .23-.01.32-.07.01-.01.02 0 .03-.01.02-.02.04-.03.06-.04.01-.01.02-.01.03-.02l.02-.02 2.15-2.15c.24-.24.24-.63 0-.86-.23-.24-.62-.19-.86.04l-.41.46H5v-.64c0-.01.07.07.07-.12h.87c.17 0 .3-.12.3-.29 0-.17-.13-.29-.3-.29H4.88C6.27 2.7 8.05 2 10 2s3.73.7 5.12 1.86h-1.58l-.01-.04c-.06 0-.12 0-.17.04l-.71.7c-.09.09-.09.23 0 .31.09.09.23.09.32 0l.56-.6.01-.03h.34c0 .19-.1.13-.1.16v.1c0 .29-.2.5-.49.5h-.51c-.25 0-.52.28-.52.54v.23h-.12c-.16 0-.27.08-.27.24v.33h-.32c-.23 0-.41.15-.41.38 0 .22.18.35.41.35.1 0 .19.04.26-.16l.06.01.66-.59h.23l.53.5c.04.04.11.03.16-.01.04-.04.04-.16 0-.2L13 6.15h.32l.12.16c.25.25.65.23.89-.02l.12-.14H15c.02 0 .11.07.11.07v.33s-.06-.01-.07-.01h-.49c-.16 0-.28.13-.28.29 0 .16.13.29.28.29h.49c.01 0 .07-.01.07-.01v.2c-.19.28-.33.57-.62.57h-1.28s0-.01-.01-.01l-.58-.58a.622.622 0 00-.89 0l-.58.58s0 .01-.01.01h-.34c-.35 0-.67.28-.67.63v1.25c0 .35.32.61.67.61h1.22c.46.19.78.48.97.94v2.28c0 .35.23.6.58.6h.98c.35 0 .54-.25.54-.6v-2.2l1.21-1.17.04-.02.02-.01h.04c.1-.11.2-.26.2-.42V8.49c0-.25-.22-.44-.42-.63h.58c.02.38.29.57.63.57h.43c.13.51.18 1.03.18 1.57 0 4.42-3.58 8-8 8zm6.16-5.65c-.14 0-.29.11-.29.25v.77c0 .14.15.25.29.25.14 0 .29-.11.29-.25v-.77c0-.14-.15-.25-.29-.25zM10.5 3.48c0-.34-.28-.57-.62-.57h-.74c-.34 0-.57.25-.57.59 0 .05-.13.06.06.1v.64c0 .2.09.36.29.36.2 0 .29-.16.29-.36v-.19h.68c.33 0 .61-.23.61-.57z", - ], - "globe-network": [ - "M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm7.39 7h-3.63c-.31-1.99-.92-3.66-1.72-4.73 2.45.65 4.41 2.42 5.35 4.73zM13 10c0 .69-.04 1.36-.11 2H7.11a18.419 18.419 0 010-4h5.77c.08.64.12 1.31.12 2zm-3-8c1.07 0 2.25 2.05 2.75 5h-5.5c.5-2.95 1.68-5 2.75-5zm-2.04.27C7.16 3.34 6.55 5.01 6.24 7H2.61c.94-2.31 2.9-4.08 5.35-4.73zM2 10c0-.69.11-1.36.28-2h3.83a18.419 18.419 0 000 4H2.28c-.17-.64-.28-1.31-.28-2zm.61 3h3.63c.31 1.99.92 3.66 1.72 4.73A7.996 7.996 0 012.61 13zM10 18c-1.07 0-2.25-2.05-2.75-5h5.5c-.5 2.95-1.68 5-2.75 5zm2.04-.27c.79-1.07 1.4-2.74 1.72-4.73h3.63a7.996 7.996 0 01-5.35 4.73zM13.89 12a18.419 18.419 0 000-4h3.83c.17.64.28 1.31.28 2s-.11 1.36-.28 2h-3.83z", - ], - graph: [ - "M17.5 4A2.5 2.5 0 0015 6.5c0 .06.01.12.02.18l-1.9.84C12.38 6.6 11.27 6 10 6c-.83 0-1.59.25-2.23.68L4.91 4.14c.05-.21.09-.42.09-.64a2.5 2.5 0 00-5 0A2.5 2.5 0 002.5 6c.42 0 .81-.11 1.16-.3l2.79 2.48C6.17 8.73 6 9.34 6 10c0 1.41.73 2.64 1.83 3.35l-.56 1.67A2.498 2.498 0 005 17.5a2.5 2.5 0 005 0c0-.74-.32-1.39-.83-1.85l.56-1.68c.09.01.18.03.27.03 2.21 0 4-1.79 4-4 0-.22-.03-.44-.07-.65l2.02-.9c.43.34.96.55 1.55.55a2.5 2.5 0 000-5z", - ], - "graph-remove": [ - "M17.41 4l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L16 2.59 13.71.3A.965.965 0 0013 0a1.003 1.003 0 00-.71 1.71L14.59 4 12.3 6.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L16 5.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L17.41 4zM19 10c-.83 0-1.55-.36-2.09-.91l-.03.03-.88-.88-.88.88a2.996 2.996 0 11-4.24-4.24l.88-.88-.88-.88.03-.03C10.36 2.55 10 1.83 10 1c0-.35.07-.68.18-.99-.06 0-.12-.01-.18-.01C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10c0-.06-.01-.12-.01-.18-.31.11-.64.18-.99.18z", - ], - "greater-than": [ - "M12.838 10l-9.154 3.051a1 1 0 00.632 1.898l12-4c.912-.304.912-1.594 0-1.898l-12-4a1 1 0 00-.632 1.898L12.838 10z", - ], - "greater-than-or-equal-to": [ - "M3.684 11.051a1 1 0 00.632 1.898l12-4c.912-.304.912-1.594 0-1.898l-12-4a1 1 0 00-.632 1.898L12.838 8l-9.154 3.051zM4 15h12a1 1 0 110 2H4a1 1 0 010-2z", - ], - grid: [ - "M19 11c.55 0 1-.45 1-1s-.45-1-1-1h-2V5h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V1c0-.55-.45-1-1-1s-1 .45-1 1v2h-4V1c0-.55-.45-1-1-1S9 .45 9 1v2H5V1c0-.55-.45-1-1-1S3 .45 3 1v2H1c-.55 0-1 .45-1 1s.45 1 1 1h2v4H1c-.55 0-1 .45-1 1s.45 1 1 1h2v4H1c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h4v2c0 .55.45 1 1 1s1-.45 1-1v-2h4v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2v-4h2zM9 15H5v-4h4v4zm0-6H5V5h4v4zm6 6h-4v-4h4v4zm0-6h-4V5h4v4z", - ], - "grid-view": [ - "M0 19c0 .55.45 1 1 1h8v-9H0v8zM0 1v8h9V0H1C.45 0 0 .45 0 1zm19-1h-8v9h9V1c0-.55-.45-1-1-1zm-8 20h8c.55 0 1-.45 1-1v-8h-9v9z", - ], - "group-objects": [ - "M6 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm8-3H6c-3.31 0-6 2.69-6 6s2.69 6 6 6h8c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 11H6c-2.76 0-5-2.24-5-5s2.24-5 5-5h8c2.76 0 5 2.24 5 5s-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z", - ], - "grouped-bar-chart": [ - "M12 16h1c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1zm7 1H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm-3-1h1c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1zm-9 0h1c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1zm-4 0h1c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v13c0 .55.45 1 1 1z", - ], - hand: [ - "M17 5c-.42 0-.79.27-.93.64L14.38 10h-.77l1.34-6.67c.03-.1.05-.21.05-.33a.998.998 0 00-1.98-.19h-.01L11.57 10H11V1c0-.55-.45-1-1-1S9 .45 9 1v9h-.2L6.97 2.76a.997.997 0 00-1.73-.41l-.03.03c-.01.02-.02.03-.03.04-.01.02-.01.03-.02.04v.01c-.01.01-.02.02-.02.03v.01c-.02.01-.02.02-.03.03 0 0 0 .01-.01.01 0 .01 0 .02-.01.03 0 0 0 .01-.01.01 0 .01-.01.02-.01.03 0 0 0 .01-.01.01 0 .01-.01.02-.01.03 0 .01 0 .01-.01.02 0 .01-.01.02-.01.03 0 .01 0 .01-.01.02 0 .01-.01.02-.01.03v.02c0 .01 0 .02-.01.03V3c0 .05 0 .09.01.14l1.45 10.25L6 12.7v.01L3.84 9.45h-.01A.98.98 0 003 9c-.55 0-1 .45-1 1 0 .2.06.39.17.55L6 18.44C7.06 19.4 8.46 20 10 20c3.31 0 6-2.69 6-6v-1.84l.01-.03v-.06l1.94-5.75A1.003 1.003 0 0017 5z", - ], - "hand-down": [ - "M17.68 9.84C15.91 9 14.27 6.49 13.45 4.9 12.41 2.43 12.21 0 7.87 0 5.49 0 3.95.76 3.05 2.65 2.31 4.2 2 5.48 2 9.79v.99c0 .82.69 1.48 1.54 1.48.38 0 .73-.14 1-.36.19.6.78 1.05 1.47 1.05.47 0 .89-.2 1.17-.52.26.47.77.79 1.36.79.65 0 1.2-.39 1.43-.93l.03.77v5.44c0 .48.23.91.59 1.18.21.19.5.32.85.32h.06c.83 0 1.5-.67 1.5-1.5v-8.24l.01-.67c.85.98 1.92 1.76 3.24 1.89 1.79.19 2.09-1.33 1.43-1.64z", - ], - "hand-left": [ - "M15.1 6.54c-1.58-.81-4.09-2.46-4.94-4.23-.31-.65-1.82-.35-1.64 1.43.13 1.33.91 2.4 1.89 3.24L9.74 7H1.5C.67 7 0 7.67 0 8.5v.06c0 .36.13.64.32.85.27.36.7.59 1.18.59h5.44l.78.01c-.54.23-.93.78-.93 1.43 0 .59.32 1.1.79 1.36-.32.28-.52.7-.52 1.17 0 .69.44 1.28 1.05 1.47-.22.27-.36.62-.36 1 0 .85.66 1.54 1.48 1.54h.99c4.31 0 5.59-.31 7.14-1.05 1.89-.9 2.65-2.44 2.65-4.82-.01-4.32-2.44-4.52-4.91-5.57z", - ], - "hand-right": [ - "M20 8.5c0-.83-.67-1.5-1.5-1.5h-8.24l-.67-.01c.98-.85 1.76-1.92 1.89-3.24.18-1.79-1.33-2.08-1.65-1.43-.84 1.76-3.35 3.41-4.93 4.23C2.43 7.59 0 7.79 0 12.13c0 2.38.76 3.92 2.65 4.82C4.2 17.69 5.48 18 9.79 18h.99c.82 0 1.48-.69 1.48-1.54 0-.38-.14-.73-.36-1 .6-.19 1.05-.78 1.05-1.47 0-.47-.2-.89-.52-1.17.47-.26.79-.77.79-1.36 0-.65-.39-1.2-.93-1.43l.77-.03h5.44c.48 0 .91-.23 1.18-.59.19-.21.32-.49.32-.85v-.03-.03z", - ], - "hand-up": [ - "M16.46 7.74c-.38 0-.73.14-1 .36-.19-.6-.78-1.05-1.47-1.05-.47 0-.89.2-1.17.52-.26-.47-.77-.79-1.36-.79-.65 0-1.2.39-1.43.93L10 6.94V1.5c0-.48-.23-.91-.59-1.18C9.2.13 8.92 0 8.56 0H8.5C7.67 0 7 .67 7 1.5v8.24l-.01.67c-.84-.98-1.92-1.76-3.24-1.89-1.79-.18-2.08 1.33-1.43 1.65 1.77.84 3.41 3.35 4.23 4.94 1.05 2.47 1.25 4.9 5.58 4.9 2.38 0 3.92-.76 4.82-2.65.74-1.56 1.05-2.84 1.05-7.15v-.99c0-.81-.69-1.48-1.54-1.48z", - ], - hat: [ - "M18.5 13c1.118 0 1.466.534 1.498 1.366L20 14.5v.5c0 1.945-5.69 3-10 3S0 16.945 0 15v-.5c0-.908.323-1.5 1.5-1.5.895 0 3.5 1.2 8.5 1.2l.411-.003C15.143 14.134 17.631 13 18.5 13zm-5-10c1.725 0 2.954 2.729 3.688 8.186-1.455.263-3.805.72-6.392.801l-.434.01L10 12c-2.896 0-5.585-.524-7.189-.814C3.546 5.73 4.775 3 6.5 3 8.6 3 8.329 5.5 10 5.5S11.5 3 13.5 3z", - ], - header: [ - "M16 1c-.55 0-1 .45-1 1v7H5V2c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1v-7h10v7c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1z", - ], - "header-one": [ - "M10 0c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1s-1-.45-1-1V9H2v6c0 .55-.45 1-1 1s-1-.45-1-1V1c0-.55.45-1 1-1s1 .45 1 1v6h7V1c0-.55.45-1 1-1zm7.4 10.77c.17-.2.29-.46.34-.77H19v10h-1.5v-7.11H15v-1.24c.32 0 .63-.03.93-.08.31-.06.58-.16.83-.29.26-.12.47-.3.64-.51z", - ], - "header-three": [ - "M10.989 1c0-.55-.45-1-.999-1-.55 0-.999.45-.999 1v6H1.998V1c0-.55-.45-1-.999-1C.449 0 0 .45 0 1v14c0 .55.45 1 .999 1 .55 0 .999-.45.999-1V9h6.993v6c0 .55.45 1 .999 1 .55 0 .999-.45.999-1V1zm7.461 13.645c.49.11.87.38 1.14.82.27.44.41.97.41 1.61a3 3 0 01-.24 1.23c-.16.36-.38.67-.66.92-.27.25-.59.44-.96.58-.37.14-.75.21-1.16.21-.5 0-.93-.08-1.3-.24a2.55 2.55 0 01-.93-.68c-.25-.29-.44-.65-.57-1.06-.13-.42-.2-.88-.21-1.38h1.39c-.02.58.11 1.07.38 1.46.28.39.68.58 1.23.58.47 0 .86-.15 1.17-.45.31-.3.47-.72.47-1.27 0-.37-.07-.67-.2-.89-.13-.22-.3-.39-.51-.5-.21-.11-.45-.18-.71-.21-.26-.03-.53-.04-.81-.03v-1.17c.22.01.45 0 .68-.05.23-.05.43-.13.61-.24.18-.11.32-.27.43-.47.11-.2.16-.45.16-.74 0-.41-.12-.74-.37-.99s-.57-.37-.96-.37c-.24 0-.45.06-.63.17-.18.11-.33.26-.45.45s-.2.4-.26.63c-.05.23-.08.47-.07.72h-1.39c.01-.47.09-.9.23-1.3s.33-.75.57-1.04c.24-.3.53-.53.87-.69.34-.17.73-.25 1.16-.25.33 0 .66.05.98.16.32.11.61.27.87.48.26.21.47.47.62.8.15.32.23.7.23 1.12 0 .48-.09.91-.29 1.27-.2.36-.5.63-.92.79v.02z", - ], - "header-two": [ - "M16.6 17.41c-.22.17-.4.36-.56.55-.16.19-.27.4-.33.61h4.28V20H14c.01-.81.18-1.52.53-2.13.35-.6.81-1.13 1.41-1.58.28-.23.58-.46.89-.68.31-.22.59-.46.85-.71.26-.26.48-.53.63-.83.16-.3.25-.64.26-1.02 0-.18-.02-.37-.06-.57-.04-.2-.11-.39-.22-.56s-.26-.31-.45-.43-.44-.18-.75-.18c-.28 0-.52.06-.71.19s-.34.3-.45.52c-.11.22-.2.48-.25.78-.05.3-.08.62-.09.97h-1.43c0-.54.07-1.04.2-1.5.13-.47.32-.87.58-1.2.26-.34.58-.6.95-.78.37-.19.81-.29 1.3-.29.54 0 .99.09 1.35.29.36.19.65.44.87.74.22.29.38.62.47.97.09.35.14.68.14 1 0 .4-.05.75-.16 1.07-.11.32-.26.61-.44.88-.19.27-.4.52-.63.74-.24.22-.48.43-.73.63s-.5.38-.75.56c-.26.17-.5.35-.71.53zM10 0c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1s-1-.45-1-1V9H2v6c0 .55-.45 1-1 1s-1-.45-1-1V1c0-.55.45-1 1-1s1 .45 1 1v6h7V1c0-.55.45-1 1-1z", - ], - headset: [ - "M18.97 9H19A9 9 0 001 9h.03C.41 9.73 0 10.8 0 12c0 1.74.84 3.2 2 3.76V16c0 1.66 1.34 3 3 3h3c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1H5c-.55 0-1-.45-1-1 .55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-.92C3.57 4.61 6.47 2 10 2s6.43 2.61 6.92 6H16c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h1c1.66 0 3-1.79 3-4 0-1.2-.41-2.27-1.03-3z", - ], - heart: [ - "M20 6.25C20 3.35 17.65 1 14.75 1c-1.02 0-1.95.31-2.75.82v-.04c-.09.06-.17.12-.26.19-.04.03-.09.06-.14.1-.68.51-1.24 1.18-1.6 1.96-.4-.86-1.04-1.57-1.8-2.1-.04-.02-.07-.05-.1-.08a7 7 0 00-.6-.33c-.13-.04-.23-.1-.35-.15-.05-.02-.1-.05-.15-.07v.02C6.45 1.13 5.87 1 5.25 1A5.25 5.25 0 000 6.25c0 .09.01.17.01.25H0c0 .06.01.12.02.18s.01.12.02.18C.13 7.89.44 9 1.07 10.17 2.23 12.33 4.1 14.11 7 16.53v.01c.9.75 1.89 1.55 3 2.46.71-.58 1.38-1.12 2-1.63 3.48-2.86 5.64-4.78 6.93-7.18.63-1.17.94-2.27 1.03-3.3.01-.07.01-.14.02-.21 0-.06.01-.11.02-.17h-.01c0-.09.01-.17.01-.26z", - ], - "heart-broken": [ - "M8.11 7.45C8.05 7.31 8 7.16 8 7c0-.07.03-.13.04-.19h-.02l.86-4.32A5.159 5.159 0 005.25 1 5.25 5.25 0 000 6.25c0 .09.01.17.01.25H0c0 .06.01.12.02.18s.01.12.02.18C.13 7.89.44 9 1.07 10.17c1.38 2.58 3.76 4.6 7.71 7.83l-.76-3.8h.02c-.01-.07-.04-.13-.04-.2 0-.21.08-.39.18-.54l-.02-.01 1.68-2.52-1.73-3.48zM20 6.25C20 3.35 17.65 1 14.75 1c-1.54 0-2.92.67-3.88 1.73l-.83 4.13 1.85 3.69h-.01c.07.14.12.29.12.45 0 .21-.08.39-.18.54l.02.01-1.77 2.66.81 4.07c4.16-3.39 6.63-5.45 8.05-8.1.63-1.17.94-2.27 1.03-3.3.01-.07.01-.14.02-.21 0-.06.01-.11.02-.17h-.01c0-.08.01-.16.01-.25z", - ], - "heat-grid": [ - "M14 12h6V8h-6v4zM0 12h6V8H0v4zm1-3h4v2H1V9zm-1 7c0 .55.45 1 1 1h5v-4H0v3zM19 3h-5v4h6V4c0-.55-.45-1-1-1zm0 3h-4V4h4v2zM0 4v3h6V3H1c-.55 0-1 .45-1 1zm7 3h6V3H7v4zm7 10h5c.55 0 1-.45 1-1v-3h-6v4zm-7 0h6v-4H7v4zm1-3h4v2H8v-2zm-1-2h6V8H7v4z", - ], - heatmap: [ - "M6 0a6 6 0 100 12A6 6 0 106 0z", - "M10.5 8a4.5 4.5 0 100 9 4.5 4.5 0 100-9z", - "M16.5 7a3.5 3.5 0 100 7 3.5 3.5 0 100-7zM18 16a2 2 0 100 4 2 2 0 100-4zM2.5 14a2.5 2.5 0 100 5 2.5 2.5 0 100-5zM16.5 0a2.5 2.5 0 100 5 2.5 2.5 0 100-5z", - ], - helicopter: [ - "M10 3v2H1V3.5a.5.5 0 00-1 0v5a.5.5 0 001 0V7l5 2c0 1.54.824 3.575 3 4.835V16H5.5a.5.5 0 100 1H16.5a.5.5 0 00.224-.053l2-1a.5.5 0 10-.448-.894L16.382 16H15v-1.1A5.002 5.002 0 0014 5h-1V3h6.5a.5.5 0 000-1h-16a.5.5 0 000 1H10zm4 13v-1c-1.608 0-2.928-.258-4-.683V16h4zm0-6V6a4 4 0 014 4h-4z", - ], - help: [ - "M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM7.41 4.62c.65-.54 1.51-.82 2.56-.82.54 0 1.03.08 1.48.25.44.17.83.39 1.14.68.32.29.56.63.74 1.02.17.39.26.82.26 1.27s-.08.87-.24 1.23c-.16.37-.4.73-.71 1.11l-1.21 1.58c-.14.17-.28.33-.32.48-.05.15-.11.35-.11.6v.97H9v-2s.06-.58.24-.81l1.21-1.64c.25-.3.41-.56.51-.77s.14-.44.14-.67c0-.35-.11-.63-.32-.85s-.5-.33-.88-.33c-.37 0-.67.11-.89.33-.22.23-.37.54-.46.94-.03.12-.11.17-.23.16l-1.95-.29c-.12-.01-.16-.08-.14-.22.13-.93.52-1.67 1.18-2.22zM9 14h2.02L11 16H9v-2z", - ], - "helper-management": [ - "M17 10h-3v3h3v-3zm0 4h-3v3h3v-3zm0-8h-3v3h3V6zm2-6H1C.4 0 0 .4 0 1v18c0 .5.4 1 1 1h18c.5 0 1-.5 1-1V1c0-.6-.5-1-1-1zm-1 18H2V2h16v16zm-9-4H6v3h3v-3zm4 0h-3v3h3v-3z", - ], - "high-priority": ["M12 16v4H8v-4h4zm1-16l-1 14H8L7 0h6z"], - highlight: [ - "M11.22 14.09l3.03-3.03.71.71L20 6.73l-5.71-5.71-5.04 5.04.71.71-3.02 3.04 4.28 4.28zm6.8 3.91h-16c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zm-15-1h4.04c.28 0 .53-.11.71-.3l2.02-2.02-3.44-3.45-4.04 4.04c-.18.18-.3.44-.3.71.01.57.46 1.02 1.01 1.02z", - ], - history: [ - "M10 0C6.71 0 3.82 1.6 2 4.05V2c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H3.76C5.23 3.17 7.47 2 10 2c4.42 0 8 3.58 8 8s-3.58 8-8 8-8-3.58-8-8c0-.55-.45-1-1-1s-1 .45-1 1c0 5.52 4.48 10 10 10s10-4.48 10-10S15.52 0 10 0zm0 3c-.55 0-1 .45-1 1v6c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L11 9.59V4c0-.55-.45-1-1-1z", - ], - home: [ - "M2 12v7c0 .55.45 1 1 1h5v-7h4v7h5c.55 0 1-.45 1-1v-7l-8-8-8 8zm17.71-2.71L17 6.59V3c0-.55-.45-1-1-1s-1 .45-1 1v1.59L10.71.3C10.53.11 10.28 0 10 0s-.53.11-.71.29l-9 9a1.003 1.003 0 001.42 1.42L10 2.41l8.29 8.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z", - ], - "horizontal-bar-chart": [ - "M1 1c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1zm3 5h11c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm8 8H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm7-6H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h15c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1z", - ], - "horizontal-bar-chart-asc": [ - "M1 9h11c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zm0-5h9c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zm18 12H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zM1 14h14c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1z", - ], - "horizontal-bar-chart-desc": [ - "M10 16H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm2-5H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h11c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm3-5H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zm4-5H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1z", - ], - "horizontal-distribution": [ - "M12 2H8c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zM1 0C.45 0 0 .45 0 1v18c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm18 0c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - hurricane: [ - "M0 14c1.648.775 3 1 4 1-1-1-2-3.112-2-5a5.098 5.098 0 000-.045C2 5.17 6.201 1 11.172 1c3.206 0 6.9.667 8.828 5-1.648-.775-3-1-4-1 1 1 2 3.112 2 5v.045C18 14.83 13.799 19 8.828 19c-3.206 0-6.9-.667-8.828-5zm10-7a3 3 0 100 6 3 3 0 000-6z", - ], - "id-number": [ - "M2 5v10h16V5H2zm0-2h16c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H2c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2z", - "M8.88 12.38c-.17-.39-1.01-.66-1.56-.9-.56-.24-.48-.39-.5-.6v-.09c.19-.17.35-.4.45-.67 0 0 0-.02.01-.02l.06-.18c.13-.03.2-.17.23-.29.03-.05.09-.18.08-.33-.04-.18-.11-.27-.2-.3v-.03c0-.24-.02-.58-.06-.81-.01-.06-.02-.12-.04-.19-.08-.27-.25-.52-.48-.7C6.63 7.09 6.3 7 6 7s-.63.09-.87.27c-.23.17-.4.42-.48.7-.02.06-.03.13-.04.19-.04.22-.06.57-.06.81V9c-.09.03-.17.12-.19.31-.01.14.05.27.08.32.03.14.1.27.23.3.02.06.03.12.06.18v.01c.11.27.27.51.47.68v.08c-.02.2.04.35-.51.6-.56.24-1.39.51-1.56.9-.19.39-.12.62-.12.62h5.98c-.01 0 .06-.23-.11-.62zM12 7h4c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1s.45-1 1-1zM12 11h4c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1s.45-1 1-1z", - ], - "image-rotate-left": [ - "M10.5 13c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM14 7H1c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h13c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 10l-5-3-1 2-2-4-3 4.5V9h11v8zm3-15h-1.59l.29-.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-2 2c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42l-.3-.29H16c1.1 0 2 .9 2 2v3c0 .55.45 1 1 1s1-.45 1-1V6c0-2.21-1.79-4-4-4z", - ], - "image-rotate-right": [ - "M5.29 4.29a1.003 1.003 0 001.42 1.42l2-2C8.89 3.53 9 3.28 9 3c0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42l.3.29H4C1.79 2 0 3.79 0 6v3c0 .55.45 1 1 1s1-.45 1-1V6c0-1.1.9-2 2-2h1.59l-.3.29zM15.5 13c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM19 7H6c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h13c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 10l-5-3-1 2-2-4-3 4.5V9h11v8z", - ], - import: [ - "M9.29 15.71c.18.18.43.29.71.29s.53-.11.71-.29l5-5a1.003 1.003 0 00-1.42-1.42L11 12.59V1c0-.55-.45-1-1-1S9 .45 9 1v11.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l5 5zM19 14c-.55 0-1 .45-1 1v3H2v-3c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1z", - ], - inbox: [ - "M16.92 3.56l-.01-.02c-.16-.35-.5-.6-.91-.6H4c-.41 0-.76.25-.91.6l-.01.02L0 10.49v6.46c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-6.46l-3.08-6.93zM15 10.95c-.55 0-1 .45-1 1v1H6v-1c0-.55-.45-1-1-1H1.98l2.67-6h10.7l2.67 6H15z", - ], - "inbox-filtered": [ - "M10.262 3l1.958 1.958v.05H4.65l-2.67 5.997H5c.55 0 1 .45 1 .999v1h8v-1c0-.55.45-1 1-1h3.02l-.635-1.426.625-.63c.354-.353.598-.8.707-1.289L20 10.545v6.456c0 .55-.45.999-1 .999H1c-.55 0-1-.45-1-1v-6.455L3.08 3.62l.01-.02c.15-.35.5-.6.91-.6h6.262zm9.088-3a.642.642 0 01.46 1.1l-3.03 3.03v2.95c0 .18-.07.34-.19.46l-1.28 1.29c-.11.1-.27.17-.45.17-.35 0-.64-.29-.64-.64V4.13L11.19 1.1a.642.642 0 01.45-1.1h7.71z", - ], - "inbox-geo": [ - "M7.427 3a7.467 7.467 0 00-.411 2.009H4.65l-2.67 5.996H5c.55 0 1 .45 1 .999v1h8V13c.165.01.332 0 .5 0a7.48 7.48 0 005.5-2.4V17c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1v-6.455L3.08 3.62l.01-.02c.15-.35.5-.6.91-.6h3.427zm5.715-.596a.133.133 0 01-.193 0l-.374-.374a.133.133 0 010-.193.133.133 0 01.193 0l.373.374a.133.133 0 010 .193zm1.743.033c-.05 0-.088-.006-.088-.055 0-.05.038-.056.088-.056h.165c.05 0 .088.006.088.055 0 .05-.038.056-.088.056h-.165zm.539.632c-.05 0-.104-.044-.104-.094v-.23c0-.05.054-.094.104-.094.05 0 .104.044.104.094v.23c0 .05-.055.094-.104.094zm-3.575 2.304h.506l1.182 1.2c.006.005 0 .005 0 .01v.446c0 .187-.126.341-.319.341h-.098v.226c0 .192-.138.296-.33.296h.01v.792c0 .188-.181.336-.368.336s-.369-.149-.369-.335v-1.32h-.214c-.193 0-.308-.149-.308-.341V5.72c0-.192.115-.346.308-.346zM14.5 0C17.536 0 20 2.464 20 5.5S17.536 11 14.5 11A5.502 5.502 0 019 5.5C9 2.464 11.464 0 14.5 0zm0 9.9c2.431 0 4.4-1.969 4.4-4.4 0-.297-.027-.583-.099-.864h-.236c-.188 0-.336-.104-.347-.313h-.319c.11.104.231.209.231.346v.705c0 .088-.055.17-.11.23h-.022l-.011.006-.022.011-.666.643v1.21c0 .193-.104.33-.296.33h-.54c-.192 0-.319-.137-.319-.33V6.221a.915.915 0 00-.533-.518h-.671c-.192 0-.368-.143-.368-.335V4.68c0-.192.176-.346.368-.346l.193-.005.319-.32a.342.342 0 01.489 0l.319.32c.005 0 .005.005.005.005h.704c.16 0 .237-.16.341-.313v-.11l-.038.005h-.27a.159.159 0 01-.153-.16c0-.087.066-.159.154-.159h.269l.039.006V3.42s-.05-.038-.061-.038h-.302l-.067.076a.342.342 0 01-.489.011l-.066-.088h-.176l.248.259c.021.022.021.088 0 .11-.028.022-.067.028-.088.006l-.292-.276h-.127l-.363.325-.033-.006c-.038.11-.087.089-.143.089-.126 0-.225-.072-.225-.193 0-.127.099-.209.225-.209h.176v-.182c0-.088.061-.131.149-.131h.066v-.127c0-.143.149-.297.286-.297h.28c.16 0 .27-.115.27-.275V2.42c0-.016.055.017.055-.088h-.187l-.005.017-.308.33a.123.123 0 01-.177 0c-.049-.044-.049-.121 0-.171l.391-.385c.027-.022.06-.022.094-.022l.005.022h.869A4.376 4.376 0 0014.5 1.1a4.402 4.402 0 00-2.816 1.018h.583c.094 0 .165.066.165.159s-.072.16-.165.16h-.478c0 .104-.039.06-.039.066v.351h.429l.226-.252c.132-.127.346-.155.473-.022a.332.332 0 010 .473l-1.183 1.182-.011.011c-.005.005-.011.005-.016.011a.115.115 0 00-.034.022c-.005.006-.01 0-.016.006a.309.309 0 01-.176.038h-.347c-.12.104-.187.148-.187.27v.088c0 .016-.027.027-.027.043l.561.589c.06.06.055.154 0 .209a.143.143 0 01-.209 0l-.578-.578a.425.425 0 01-.082.011c-.154 0-.292-.12-.292-.274v-.358h-.016c-.104.374-.165.77-.165 1.177 0 2.431 1.969 4.4 4.4 4.4zm3.388-3.107c.077 0 .16.06.16.137v.424c0 .077-.083.137-.16.137s-.16-.06-.16-.137V6.93c0-.077.083-.137.16-.137zm-3.113-4.879c0 .187-.154.314-.335.314h-.374v.104c0 .11-.05.198-.16.198s-.16-.088-.16-.198V1.98c-.104-.022-.033-.028-.033-.055 0-.187.127-.325.314-.325h.407c.187 0 .341.127.341.314z", - ], - "inbox-search": [ - "M7.136 3a6.327 6.327 0 00-.098 2.009H4.65l-2.67 5.996H5c.55 0 1 .45 1 .999v1h8v-1c0-.55.45-1 1-1h1.076l1.14 1.14a2.767 2.767 0 001.974.806c.282 0 .554-.042.81-.12V17c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1v-6.455L3.08 3.62l.01-.02c.15-.35.5-.6.91-.6h3.136zm3.244 1.33c0 1.62 1.31 2.93 2.93 2.93s2.93-1.31 2.93-2.93-1.31-2.93-2.93-2.93-2.93 1.31-2.93 2.93zm6.47 2.43l2.89 2.85c.13.15.22.35.23.56 0 .43-.35.78-.78.78-.23 0-.42-.08-.56-.22l-2.87-2.87c-.17.1-.33.2-.51.29-.03.01-.06.03-.09.04-.18.07-.35.15-.55.21-.19.06-.37.11-.57.14-.05.01-.1.02-.14.02-.2.03-.39.05-.6.05A4.3 4.3 0 019 4.31C9 1.93 10.93.01 13.3 0c2.37 0 4.3 1.93 4.3 4.3 0 .21-.02.4-.05.6-.01.05-.01.09-.02.14-.04.2-.08.38-.14.58-.05.19-.13.36-.21.54-.01.03-.03.06-.04.09-.08.18-.18.34-.29.51z", - ], - "inbox-update": [ - "M10.083 3a6.04 6.04 0 00.001 2.009H4.65l-2.67 5.996H5c.55 0 1 .45 1 .999v1h8v-1c0-.55.45-1 1-1h3.02l-.53-1.19a5.97 5.97 0 001.824-.811L20 10.545v6.456c0 .55-.45.999-1 .999H1c-.55 0-1-.45-1-1v-6.455L3.08 3.62l.01-.02c.15-.35.5-.6.91-.6h6.083zM16 8a4 4 0 110-8 4 4 0 010 8z", - ], - "info-sign": [ - "M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM9 4h2v2H9V4zm4 12H7v-1h2V8H8V7h3v8h2v1z", - ], - inheritance: [ - "M6 10c0 2.21 1.79 4 4 4h6.59l-2.29-2.29A.965.965 0 0114 11a1.003 1.003 0 011.71-.71l4 4c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-4 4a1.003 1.003 0 01-1.42-1.42l2.3-2.29H10c-3.31 0-6-2.69-6-6H1a1 1 0 01-1-1V1a1 1 0 011-1h8a1 1 0 011 1v8a1 1 0 01-1 1H6zM2 2v6h6V2H2z", - ], - "inherited-group": [ - "M1 9c.55 0 1 .45 1 1v4c0 1.1.9 2 2 2h2.59l-.3-.29a1.003 1.003 0 011.42-1.42l2 2c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-2 2A1.003 1.003 0 016 19c0-.28.11-.53.3-.71l.29-.29H4c-2.21 0-4-1.79-4-4v-4c0-.55.45-1 1-1zm6.996-9c.79 0 1.68.25 2.309.73a3.63 3.63 0 011.4 2.36c.11.6.17 1.52.17 2.15v.09c.22.09.42.32.47.82.03.39-.12.73-.2.87-.07.34-.27.71-.61.78-.04.16-.09.33-.15.48-.01.01-.02.05-.02.05-.27.71-.68 1.33-1.19 1.78 0 .08 0 .16.01.23.05.55-.15.95 1.33 1.6 1.469.66 3.698 1.35 4.178 2.39.45 1.05.27 1.67.27 1.67h-5.227a1.982 1.982 0 00-.319-.417l-2-2A2.003 2.003 0 005 15H4c-.548 0-1-.452-1-1v-1.462c.511-.213 1.023-.413 1.468-.608 1.479-.65 1.329-1.05 1.379-1.59l.01-.21c-.52-.45-.95-1.08-1.22-1.8l-.01-.01-.01-.03c-.07-.15-.12-.32-.16-.49-.34-.06-.54-.43-.62-.78-.08-.14-.24-.48-.2-.87.05-.51.26-.74.49-.83v-.08c0-.64.05-1.55.17-2.15a3.648 3.648 0 011.4-2.36C6.317.25 7.207 0 7.996 0zm5.997 3c.59 0 1.26.19 1.73.55.46.35.8.85.97 1.4.04.13.07.25.08.38.08.45.13 1.14.13 1.61v.07c.16.07.31.24.35.62.02.29-.09.55-.15.65-.05.26-.2.53-.46.59-.03.12-.07.25-.11.36-.01.01-.01.04-.01.04-.2.53-.51 1-.89 1.34 0 .06 0 .12.01.17.04.41-.11.71 1 1.19 1.099.5 2.768 1.01 3.128 1.79.34.79.2 1.25.2 1.25h-3.039V15c-.06-.33-.17-.69-.33-1.06-.45-.97-1.37-1.52-3.238-2.3-.17-.07-.76-.31-.77-.32-.1-.04-.2-.08-.28-.12.05-.14.04-.29.06-.45l.01-.16c-.25-.21-.47-.48-.65-.79.22-.34.41-.71.56-1.12l.028-.078-.002.013-.006.035.06-.15c.36-.26.6-.67.72-1.13.18-.37.29-.82.25-1.3-.05-.5-.21-.92-.47-1.22-.02-.53-.06-1.11-.12-1.59.38-.17.83-.26 1.24-.26z", - ], - "inner-join": [ - "M8.7 4.7C7.4 6 6.5 7.9 6.5 10s.8 4 2.2 5.3c-.8.5-1.7.7-2.7.7-3.3 0-6-2.7-6-6s2.7-6 6-6c1 0 1.9.2 2.7.7zm-3.34 9.25c-.55-1.2-.86-2.54-.86-3.95s.31-2.75.86-3.95a4.001 4.001 0 000 7.9zM14 4c3.3 0 6 2.7 6 6s-2.7 6-6 6c-1 0-1.9-.2-2.7-.7 1.3-1.3 2.2-3.2 2.2-5.3s-.8-3.9-2.2-5.3C12.1 4.2 13 4 14 4zm.6 2.05c.55 1.2.86 2.54.86 3.95s-.31 2.75-.86 3.95c1.9-.31 3.36-1.96 3.36-3.95S16.5 6.36 14.6 6.05zM10 5.5C8.8 6.7 8 8.2 8 10s.8 3.3 2 4.4c1.2-1.1 2-2.7 2-4.5s-.8-3.3-2-4.4z", - ], - insert: [ - "M19 0H1C.4 0 0 .4 0 1v18c0 .5.4 1 1 1h18c.5 0 1-.5 1-1V1c0-.6-.5-1-1-1zm-1 18H2V2h16v16zM5 11h4v4c0 .6.4 1 1 1s1-.4 1-1v-4h4c.6 0 1-.4 1-1s-.4-1-1-1h-4V5c0-.6-.4-1-1-1s-1 .4-1 1v4H5c-.6 0-1 .4-1 1s.4 1 1 1z", - ], - intersection: [ - "M13 4c-1.31 0-2.51.43-3.5 1.14A5.977 5.977 0 006 4c-3.31 0-6 2.69-6 6s2.69 6 6 6c1.31 0 2.51-.43 3.5-1.14.99.71 2.19 1.14 3.5 1.14 3.31 0 6-2.69 6-6s-2.69-6-6-6zm-4.93 9.41c-.61.37-1.31.59-2.07.59-2.21 0-4-1.79-4-4s1.79-4 4-4c.76 0 1.46.22 2.07.59C7.4 7.56 7 8.73 7 10s.4 2.44 1.07 3.41zM13 14c-.76 0-1.46-.22-2.07-.59C11.6 12.44 12 11.27 12 10s-.4-2.44-1.07-3.41C11.54 6.22 12.24 6 13 6c2.21 0 4 1.79 4 4s-1.79 4-4 4z", - ], - "ip-address": [ - "M6 3.66C6 5.69 10 11 10 11s4-5.31 4-7.34C13.99 1.64 12.21 0 10 0S6 1.64 6 3.66zM8 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM14 13.5V13h-4v1h3v2h-2v1h3v-3.5zM3 12h14c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-6c0-.55.45-1 1-1zm4 1v6h1v-6H7zm3 1v5h1v-5h-1z", - ], - issue: [ - "M10 20C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 100-16 8 8 0 000 16zm1-2H9v-2h2v2zm0-3H9V4h2v9z", - ], - "issue-closed": [ - "M15.364 5.9a.997.997 0 01-.707-.293l-2.121-2.122a1 1 0 111.414-1.414l1.414 1.414L18.192.657a1 1 0 011.414 1.414l-3.535 3.536a.997.997 0 01-.707.292zM11.78.157a3.002 3.002 0 00-1.437 1.85 8 8 0 107.1 5.055l.042-.042 1.472-1.472A9.959 9.959 0 0120 10c0 5.523-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0c.608 0 1.202.054 1.78.158zM11 16H9v-2h2v2zm0-3H9V4h2v9z", - ], - "issue-new": [ - "M13.167.512a2.98 2.98 0 00-.131.524c-.74.115-1.39.5-1.848 1.052a8 8 0 106.724 6.724 2.997 2.997 0 001.052-1.848 2.98 2.98 0 00.524-.13A9.99 9.99 0 0120 10c0 5.523-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0a9.99 9.99 0 013.167.512zM11 16H9v-2h2v2zm0-3H9V4h2v9zm6-10h1.5a1 1 0 010 2H17v1.5a1 1 0 01-2 0V5h-1.5a1 1 0 010-2H15V1.5a1 1 0 012 0V3z", - ], - italic: [ - "M11.7 4H14c.6 0 1-.4 1-1s-.4-1-1-1H7c-.6 0-1 .4-1 1s.4 1 1 1h2.2L7.3 15H5c-.6 0-1 .4-1 1s.4 1 1 1h7c.6 0 1-.4 1-1s-.4-1-1-1H9.8l1.9-11z", - ], - "join-table": [ - "M19 6h-4V2c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h4v4c0 .55.45 1 1 1h13c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zM6 12H2V9h4v3zm0-4H2V5h4v3zm7 9H7v-3h6v3zm0-4H7V9h6v4zm0-5H7V5h6v3zm5 9h-4v-3h4v3zm0-4h-4v-3h4v3z", - ], - key: [ - "M14 0c-3.31 0-6 2.69-6 6 0 1.11.32 2.14.85 3.03L.44 17.44a1.498 1.498 0 102.12 2.12l.79-.79.94.94c.18.18.43.29.71.29s.53-.11.71-.29l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-.94-.94 3.2-3.2A5.9 5.9 0 0014 12c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 9c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", - ], - "key-backspace": [ - "M19 3H7c-.28 0-.53.11-.71.29l-6 6C.11 9.47 0 9.72 0 10c0 .28.11.53.29.71l6 6c.18.18.43.29.71.29h12c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-2.29 9.29a1.003 1.003 0 01-1.42 1.42L13 11.41l-2.29 2.29c-.18.19-.43.3-.71.3a1.003 1.003 0 01-.71-1.71l2.3-2.29-2.3-2.29a1.003 1.003 0 011.42-1.42L13 8.59l2.29-2.29c.18-.19.43-.3.71-.3a1.003 1.003 0 01.71 1.71L14.41 10l2.3 2.29z", - ], - "key-command": [ - "M15.5 12H14V8h1.5C17.43 8 19 6.43 19 4.5S17.43 1 15.5 1 12 2.57 12 4.5V6H8V4.5C8 2.57 6.43 1 4.5 1S1 2.57 1 4.5 2.57 8 4.5 8H6v4H4.5C2.57 12 1 13.57 1 15.5S2.57 19 4.5 19 8 17.43 8 15.5V14h4v1.5c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0-9c.83 0 1.5.67 1.5 1.5S16.33 6 15.5 6 14 5.33 14 4.5 14.67 3 15.5 3zm-11 14c-.83 0-1.5-.67-1.5-1.5S3.67 14 4.5 14s1.5.67 1.5 1.5S5.33 17 4.5 17zm0-11C3.67 6 3 5.33 3 4.5S3.67 3 4.5 3 6 3.67 6 4.5 5.33 6 4.5 6zm7.5 6H8V8h4v4zm3.5 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", - ], - "key-control": [ - "M16.71 7.29l-6-6C10.53 1.11 10.28 1 10 1s-.53.11-.71.29l-6 6a1.003 1.003 0 001.42 1.42L10 3.41l5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z", - ], - "key-delete": [ - "M19.71 9.29l-6-6A.997.997 0 0013 3H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.28 0 .53-.11.71-.29l6-6c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71zm-9 3a1.003 1.003 0 01-1.42 1.42L7 11.41 4.71 13.7c-.18.19-.43.3-.71.3a1.003 1.003 0 01-.71-1.71L5.59 10l-2.3-2.29a1.003 1.003 0 011.42-1.42L7 8.59 9.29 6.3c.18-.19.43-.3.71-.3a1.003 1.003 0 01.71 1.71L8.41 10l2.3 2.29z", - ], - "key-enter": [ - "M18 2c-.55 0-1 .45-1 1v5c0 2.21-1.79 4-4 4H4.41L6.7 9.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-4 4c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L4.41 14H13c3.31 0 6-2.69 6-6V3c0-.55-.45-1-1-1z", - ], - "key-escape": [ - "M2 8c.55 0 1-.45 1-1V4.41l6.29 6.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L4.41 3H7c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1zm9-6.94V3.1c3.39.49 6 3.38 6 6.9 0 3.87-3.13 7-7 7-3.52 0-6.41-2.61-6.9-6H1.06c.5 4.5 4.31 8 8.94 8a9 9 0 009-9c0-4.63-3.5-8.44-8-8.94z", - ], - "key-option": [ - "M13 4h6c.55 0 1-.45 1-1s-.45-1-1-1h-6c-.55 0-1 .45-1 1s.45 1 1 1zm6 12h-4.42L6.87 2.5l-.02.01A.977.977 0 006 2H1c-.55 0-1 .45-1 1s.45 1 1 1h4.42l7.71 13.5.01-.01c.18.3.49.51.86.51h5c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "key-shift": [ - "M17.74 10.35l-6.99-8.01-.01.01C10.56 2.14 10.3 2 10 2s-.56.14-.74.35l-.01-.01-7 8 .01.01A.95.95 0 002 11c0 .55.45 1 1 1h3v5c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-5h3c.55 0 1-.45 1-1 0-.25-.1-.48-.26-.65z", - ], - "key-tab": [ - "M19 13H4.41l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L2 12.59V10c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1s1-.45 1-1v-2.59l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L4.41 15H19c.55 0 1-.45 1-1s-.45-1-1-1zm0-12c-.55 0-1 .45-1 1v2.59L14.71 1.3A.965.965 0 0014 1a1.003 1.003 0 00-.71 1.71L15.59 5H1c-.55 0-1 .45-1 1s.45 1 1 1h14.59L13.3 9.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L18 7.41V10c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1z", - ], - "known-vehicle": [ - "M19 4a.997.997 0 00-.707.293L14 8.586l-2.293-2.293a1 1 0 00-1.414 1.414l3 3a.997.997 0 001.414 0l5-5A1 1 0 0019 4zm-2.048 7.291c.011.072.048.134.048.209a1.5 1.5 0 01-1.5 1.5c-.225 0-.433-.057-.624-.145-.279.085-.57.145-.876.145a2.99 2.99 0 01-2.121-.879l-3-3 .007-.007A3.027 3.027 0 018.184 8H4V7l1-3h10l.19.568 1.307-1.308c-.336-.356-.758-.658-1.165-.772 0 0-1.74-.488-5.332-.488s-5.332.488-5.332.488c-.67.188-1.424.864-1.674 1.502L2.99 4H3L2 7H1a1 1 0 000 2h.333l-.28.84L1 10v7.5a1.5 1.5 0 103 0V17h12v.5a1.5 1.5 0 003 0V10l-.19-.568-1.858 1.86zM4.5 13a1.5 1.5 0 110-3 1.5 1.5 0 010 3z", - ], - "lab-test": [ - "M13 2a1 1 0 010 2v4l4 8v1a1 1 0 01-1 1H4a1 1 0 01-1-1v-1l4-8V4a1 1 0 110-2h6zm-2 2H9v4l-2 4h6l-2-4V4z", - ], - label: [ - "M3 12h14v-1H3v1zm11-9H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V9l-6-6zm4 12H2V5h11v3H3v1h10v1h5v5zm-4-6V5l4 4h-4z", - ], - layer: [ - "M19.5 9.1l-9-5c-.2-.1-.3-.1-.5-.1s-.3 0-.5.1l-9 5c-.3.2-.5.5-.5.9s.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9s-.2-.7-.5-.9z", - ], - "layer-outline": [ - "M9.514 4.126l-9 5a1 1 0 000 1.748l9 5a1 1 0 00.972 0l9-5a1 1 0 000-1.748l-9-5a1 1 0 00-.972 0zM10 6.144l6.94 3.855L10 13.855 3.059 9.999 10 6.144z", - ], - layers: [ - "M.5 6.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9s-.2-.7-.5-.9l-9-5c-.2-.1-.3-.1-.5-.1s-.3 0-.5.1l-9 5c-.3.2-.5.5-.5.9s.2.7.5.9z", - "M19 9c-.2 0-.3 0-.5.1L10 13.9 1.5 9.1C1.3 9 1.2 9 1 9c-.6 0-1 .4-1 1 0 .4.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9 0-.6-.4-1-1-1z", - "M19 13c-.2 0-.3 0-.5.1L10 17.9l-8.5-4.7c-.2-.2-.3-.2-.5-.2-.6 0-1 .4-1 1 0 .4.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9 0-.6-.4-1-1-1z", - ], - layout: [ - "M18 6c-1.1 0-2 .9-2 2 0 .37.11.71.28 1.01l-2.27 2.27c-.3-.17-.64-.28-1.01-.28-.93 0-1.71.64-1.93 1.5H8.93c-.22-.86-1-1.5-1.93-1.5-.37 0-.71.11-1.01.28L3.72 9.01C3.89 8.71 4 8.37 4 8c0-.34-.09-.66-.24-.94l3.66-3.38c.31.2.68.32 1.08.32 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .34.09.66.24.94L3.08 6.32C2.77 6.12 2.4 6 2 6 .9 6 0 6.9 0 8s.9 2 2 2c.37 0 .71-.11 1.01-.28l2.27 2.27c-.17.3-.28.64-.28 1.01s.11.71.28 1.01l-2.27 2.27C2.71 16.11 2.37 16 2 16c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2c0-.37-.11-.71-.28-1.01l2.27-2.27c.3.17.64.28 1.01.28.93 0 1.71-.64 1.93-1.5h2.14c.22.86 1 1.5 1.93 1.5 1.1 0 2-.9 2-2 0-.37-.11-.71-.28-1.01l2.27-2.27c.3.17.64.28 1.01.28 1.1 0 2-.9 2-2s-.9-2-2-2z", - ], - "layout-auto": [ - "M18 13c-.53 0-1.01.21-1.37.55L11.9 10.6c.06-.19.1-.39.1-.6s-.04-.41-.1-.6l4.72-2.95c.37.34.85.55 1.38.55 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .21.04.41.1.6l-4.73 2.96c-.24-.23-.54-.4-.87-.48V3.93c.86-.22 1.5-1 1.5-1.93 0-1.1-.9-2-2-2S8 .9 8 2c0 .93.64 1.71 1.5 1.93v4.14c-.33.09-.63.26-.87.48L3.9 5.6c.06-.19.1-.39.1-.6 0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2c.53 0 1.01-.21 1.37-.55L8.1 9.4c-.06.19-.1.39-.1.6s.04.41.1.6l-4.72 2.95C3.01 13.21 2.53 13 2 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2c0-.21-.04-.41-.1-.6l4.73-2.96c.24.23.54.4.87.48v4.14C8.64 16.29 8 17.07 8 18c0 1.1.9 2 2 2s2-.9 2-2c0-.93-.64-1.71-1.5-1.93v-4.14c.33-.09.63-.26.87-.48l4.73 2.96c-.06.18-.1.38-.1.59 0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2z", - ], - "layout-balloon": [ - "M18 16c-.14 0-.28.02-.42.05l-1.73-3.45c.69-.45 1.14-1.22 1.14-2.1s-.46-1.65-1.14-2.1l1.73-3.45c.14.03.28.05.42.05 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .6.27 1.13.69 1.5l-1.77 3.54c-.14-.02-.28-.04-.42-.04a2.5 2.5 0 00-2.45 2h-4.1A2.5 2.5 0 005.5 8c-.14 0-.28.02-.42.04L3.31 4.5C3.73 4.13 4 3.6 4 3c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2c.14 0 .28-.02.42-.05L4.14 8.4C3.46 8.85 3 9.62 3 10.5s.46 1.65 1.14 2.1l-1.73 3.45A1.84 1.84 0 002 16c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2c0-.6-.27-1.13-.69-1.5l1.77-3.54c.14.02.28.04.42.04a2.5 2.5 0 002.45-2h4.1a2.5 2.5 0 002.45 2c.14 0 .28-.02.42-.04l1.77 3.54c-.42.37-.69.9-.69 1.5 0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2z", - ], - "layout-circle": [ - "M18.3 8c-.2-.9-.6-1.7-1.1-2.5.2-.3.3-.7.3-1 0-1.1-.9-2-2-2-.4 0-.7.1-1 .3-.8-.5-1.6-.8-2.5-1.1-.1-1-1-1.7-2-1.7S8.2.8 8 1.7c-.9.3-1.7.6-2.5 1.1-.3-.2-.7-.3-1-.3-1.1 0-2 .9-2 2 0 .4.1.7.3 1-.5.8-.8 1.6-1.1 2.5C.8 8.2 0 9 0 10s.8 1.8 1.7 2c.2.9.6 1.7 1.1 2.5-.2.3-.3.7-.3 1 0 1.1.9 2 2 2 .4 0 .7-.1 1-.3.8.5 1.6.8 2.5 1.1.1 1 1 1.7 2 1.7s1.8-.8 2-1.7c.9-.2 1.7-.6 2.5-1.1.3.2.7.3 1 .3 1.1 0 2-.9 2-2 0-.4-.1-.7-.3-1 .5-.8.8-1.6 1.1-2.5 1-.1 1.7-1 1.7-2s-.8-1.8-1.7-2zm-1.8 5.8c-.3-.2-.6-.3-1-.3-1.1 0-2 .9-2 2 0 .4.1.7.3 1-.6.3-1.2.6-1.9.8-.3-.7-1-1.3-1.9-1.3-.8 0-1.6.5-1.9 1.3-.7-.2-1.3-.4-1.9-.8.2-.3.3-.6.3-1 0-1.1-.9-2-2-2-.4 0-.7.1-1 .3-.3-.6-.6-1.2-.8-1.9.8-.3 1.3-1.1 1.3-1.9s-.5-1.6-1.2-1.8c.2-.7.4-1.3.8-1.9.3.2.6.3 1 .3 1.1 0 2-.9 2-2 0-.4-.1-.7-.3-1 .6-.3 1.2-.6 1.9-.8.2.7 1 1.2 1.8 1.2s1.6-.5 1.9-1.3c.7.2 1.3.4 1.9.8-.2.3-.3.6-.3 1 0 1.1.9 2 2 2 .4 0 .7-.1 1-.3.3.6.6 1.2.8 1.9-.8.3-1.3 1.1-1.3 1.9s.5 1.6 1.2 1.8c-.1.7-.4 1.4-.7 2z", - ], - "layout-grid": [ - "M2 0a2 2 0 100 4 2 2 0 100-4zM10 0a2 2 0 100 4 2 2 0 100-4zM18 0a2 2 0 100 4 2 2 0 100-4zM18 8a2 2 0 100 4 2 2 0 100-4zM18 16a2 2 0 100 4 2 2 0 100-4zM10 16a2 2 0 100 4 2 2 0 100-4zM2 16a2 2 0 100 4 2 2 0 100-4zM2 8a2 2 0 100 4 2 2 0 100-4zM10 8a2 2 0 100 4 2 2 0 100-4z", - ], - "layout-group-by": [ - "M2 2a2 2 0 100 4 2 2 0 100-4zM18 0a2 2 0 100 4 2 2 0 100-4zM18 8a2 2 0 100 4 2 2 0 100-4zM18 16a2 2 0 100 4 2 2 0 100-4zM2 14a2 2 0 100 4 2 2 0 100-4zM2 8a2 2 0 100 4 2 2 0 100-4zM13 12a2 2 0 100 4 2 2 0 100-4zM13 4a2 2 0 100 4 2 2 0 100-4z", - ], - "layout-hierarchy": [ - "M18.5 16.07v-4.14c.86-.22 1.5-1 1.5-1.93 0-1.1-.9-2-2-2-.93 0-1.71.64-1.93 1.5h-4.14c-.18-.7-.73-1.25-1.43-1.43V3.93c.86-.22 1.5-1 1.5-1.93 0-1.1-.9-2-2-2S8 .9 8 2c0 .93.64 1.71 1.5 1.93v4.14c-.7.18-1.25.73-1.43 1.43H3.93C3.71 8.64 2.93 8 2 8c-1.1 0-2 .9-2 2 0 .93.64 1.71 1.5 1.93v4.14c-.86.22-1.5 1-1.5 1.93 0 1.1.9 2 2 2s2-.9 2-2c0-.93-.64-1.71-1.5-1.93v-4.14c.7-.18 1.25-.73 1.43-1.43h4.14c.18.7.73 1.25 1.43 1.43v4.14c-.86.22-1.5 1-1.5 1.93 0 1.1.9 2 2 2s2-.9 2-2c0-.93-.64-1.71-1.5-1.93v-4.14c.7-.18 1.25-.73 1.43-1.43h4.14c.18.7.73 1.25 1.43 1.43v4.14c-.86.22-1.5 1-1.5 1.93 0 1.1.9 2 2 2s2-.9 2-2c0-.93-.64-1.71-1.5-1.93z", - ], - "layout-linear": [ - "M16.5 7a2.5 2.5 0 00-2.45 2h-2.1a2.5 2.5 0 00-4.9 0h-2.1a2.5 2.5 0 100 1h2.1a2.5 2.5 0 004.9 0h2.1a2.5 2.5 0 102.45-3z", - ], - "layout-skew-grid": [ - "M2 0a2 2 0 100 4 2 2 0 100-4zM18 0a2 2 0 100 4 2 2 0 100-4zM18 8a2 2 0 100 4 2 2 0 100-4zM18 16a2 2 0 100 4 2 2 0 100-4zM2 16a2 2 0 100 4 2 2 0 100-4zM2 8a2 2 0 100 4 2 2 0 100-4zM10 12a2 2 0 100 4 2 2 0 100-4zM10 4a2 2 0 100 4 2 2 0 100-4z", - ], - "layout-sorted-clusters": [ - "M2 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM2 0C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm16 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-8 4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", - ], - learning: [ - "M10.551 1.127a1.256 1.256 0 00-1.102 0L.456 5.89c-.608.309-.608.913 0 1.222l8.993 4.762c.334.17.767.17 1.102 0l8.992-4.762c.61-.309.61-.913 0-1.222l-8.992-4.762z", - "M18 6.5l.016 4.514c.002.548.447.99.994.99a.99.99 0 00.99-.99V6.5h-2zM3.366 10.033l6.401 3.358a.5.5 0 00.465 0l6.406-3.358a.25.25 0 01.366.221v5.109a.25.25 0 01-.139.224l-6.64 3.302a.5.5 0 01-.446 0l-6.64-3.302A.25.25 0 013 15.363v-5.108a.25.25 0 01.366-.222z", - ], - "left-join": [ - "M8.7 4.7C7.4 6 6.5 7.9 6.5 10s.8 4 2.2 5.3c-.8.5-1.7.7-2.7.7-3.3 0-6-2.7-6-6s2.7-6 6-6c1 0 1.9.2 2.7.7zM14 4c3.3 0 6 2.7 6 6s-2.7 6-6 6c-1 0-1.9-.2-2.7-.7 1.3-1.3 2.2-3.2 2.2-5.3s-.8-3.9-2.2-5.3C12.1 4.2 13 4 14 4zm.6 2.05c.55 1.2.86 2.54.86 3.95s-.31 2.75-.86 3.95c1.9-.31 3.36-1.96 3.36-3.95S16.5 6.36 14.6 6.05zM10 5.5C8.8 6.7 8 8.2 8 10s.8 3.3 2 4.4c1.2-1.1 2-2.7 2-4.5s-.8-3.3-2-4.4z", - ], - "less-than": [ - "M7.162 10l9.154 3.052a1 1 0 01-.632 1.897l-12-4c-.912-.304-.912-1.594 0-1.897l12-4a1 1 0 01.632 1.897L7.162 10z", - ], - "less-than-or-equal-to": [ - "M16.316 11.051L7.162 8l9.154-3.051a1 1 0 10-.632-1.898l-12 4c-.912.304-.912 1.594 0 1.898l12 4a1 1 0 10.632-1.898zM16 15H4a1 1 0 100 2h12a1 1 0 100-2z", - ], - lifesaver: [ - "M8.143 14.644L7.028 17.43c.919.368 1.922.57 2.972.57s2.053-.202 2.972-.57l-1.115-2.786A4.986 4.986 0 0110 15a4.986 4.986 0 01-1.857-.356zm-2.787-2.787A4.986 4.986 0 015 10c0-.656.126-1.283.356-1.857L2.57 7.028A7.978 7.978 0 002 10c0 1.05.202 2.053.57 2.972l2.786-1.115zm2.787-6.5A4.986 4.986 0 0110 5c.656 0 1.283.126 1.857.356l1.115-2.786A7.978 7.978 0 0010 2c-1.05 0-2.053.202-2.972.57l1.115 2.786zm6.5 2.786c.23.574.357 1.2.357 1.857 0 .656-.126 1.283-.356 1.857l2.786 1.115c.368-.919.57-1.922.57-2.972s-.202-2.053-.57-2.972l-2.786 1.115zM10 13a3 3 0 100-6 3 3 0 000 6zm0 7C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10-4.477 10-10 10z", - ], - lightbulb: [ - "M6.33 13.39c0 .34.27.61.6.61h6.13c.33 0 .6-.27.6-.61C14.03 9.78 16 9.4 16 6.09 16 2.72 13.31 0 10 0S4 2.72 4 6.09c0 3.31 1.97 3.69 2.33 7.3zM13 15H7c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm-1 3H8c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - lightning: [ - "M9 11H6a1 1 0 01-1-1L5.91.9a1 1 0 01.995-.9h6.256a.839.839 0 01.779 1.15L11.2 8h2.978a.822.822 0 01.748 1.162l-4.764 10.481A.608.608 0 019 19.392V11z", - ], - link: [ - "M10.85 11.98l-4.44 4.44-1 1c-.36.36-.86.58-1.41.58-1.1 0-2-.9-2-2 0-.55.22-1.05.59-1.41l5.44-5.44C7.69 9.06 7.36 9 7 9c-1.11 0-2.09.46-2.82 1.18l-.01-.01-3 3 .01.01C.46 13.91 0 14.89 0 16c0 2.21 1.79 4 4 4 1.11 0 2.09-.46 2.82-1.18l.01.01 3-3-.01-.01C10.54 15.09 11 14.11 11 13c0-.36-.06-.69-.15-1.02zM20 4c0-2.21-1.79-4-4-4-1.11 0-2.09.46-2.82 1.18l-.01-.01-3 3 .01.01C9.46 4.91 9 5.89 9 7c0 .36.06.69.15 1.02l4.44-4.44 1-1c.36-.36.86-.58 1.41-.58 1.1 0 2 .9 2 2 0 .55-.22 1.05-.59 1.41l-5.44 5.44c.34.09.67.15 1.03.15 1.11 0 2.09-.46 2.82-1.18l.01.01 3-3-.01-.01C19.54 6.09 20 5.11 20 4zM5 14a1.003 1.003 0 001.71.71l8-8a1.003 1.003 0 00-1.42-1.42l-2 2-2 2-2 2-2 2c-.18.18-.29.43-.29.71z", - ], - list: [ - "M1.03 1C.46 1 0 1.46 0 2.03v.95C0 3.54.46 4 1.03 4h17.95C19.54 4 20 3.54 20 2.97v-.94C20 1.46 19.54 1 18.97 1H1.03zM0 17.97C0 18.54.46 19 1.03 19h17.95c.56 0 1.03-.46 1.03-1.03v-.95c0-.56-.46-1.03-1.03-1.03H1.03C.46 16 0 16.46 0 17.03v.94zM0 12.97C0 13.54.46 14 1.03 14h17.95c.56 0 1.03-.46 1.03-1.03v-.95c0-.56-.46-1.03-1.03-1.03H1.03C.46 11 0 11.46 0 12.03v.94zM0 7.97C0 8.54.46 9 1.03 9h17.95C19.54 9 20 8.54 20 7.97v-.94C20 6.46 19.54 6 18.97 6H1.03C.46 6 0 6.46 0 7.03v.94z", - ], - "list-columns": [ - "M0 2.973v-.936C0 1.468.46 1.01 1.029 1H7.97C8.541 1 9 1.468 9 2.027v.946C9 3.542 8.53 4 7.971 4H1.03C.459 4 0 3.542 0 2.973zm0 5v-.936C0 6.468.46 6.01 1.029 6H7.97C8.541 6 9 6.468 9 7.027v.946C9 8.542 8.53 9 7.971 9H1.03C.459 9 0 8.542 0 7.973zm0 5v-.936C0 11.468.46 11.01 1.029 11H7.97C8.541 11 9 11.468 9 12.027v.946C9 13.542 8.53 14 7.971 14H1.03C.459 14 0 13.542 0 12.973zm0 5v-.936C0 16.468.46 16.01 1.029 16H7.97C8.541 16 9 16.468 9 17.027v.946C9 18.542 8.53 19 7.971 19H1.03C.459 19 0 18.542 0 17.973zm11-15v-.936c0-.569.46-1.027 1.029-1.037h6.942C19.541 1 20 1.468 20 2.027v.946C20 3.542 19.53 4 18.971 4H12.03C11.459 4 11 3.542 11 2.973zm0 5v-.936c0-.569.46-1.027 1.029-1.037h6.942C19.541 6 20 6.468 20 7.027v.946C20 8.542 19.53 9 18.971 9H12.03C11.459 9 11 8.542 11 7.973zm0 5v-.936c0-.569.46-1.027 1.029-1.037h6.942c.57 0 1.029.468 1.029 1.027v.946c0 .569-.47 1.027-1.029 1.027H12.03c-.57 0-1.029-.458-1.029-1.027zm0 5v-.936c0-.569.46-1.027 1.029-1.037h6.942c.57 0 1.029.468 1.029 1.027v.946c0 .569-.47 1.027-1.029 1.027H12.03c-.57 0-1.029-.458-1.029-1.027z", - ], - "list-detail-view": [ - "M8 6H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zm0 5H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm0 5H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zM8 1H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm11 0h-7c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1z", - ], - locate: [ - "M10 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm9 1h-1.07c-.45-3.61-3.32-6.45-6.93-6.91V1c0-.55-.45-1-1-1S9 .45 9 1v1.09C5.39 2.55 2.52 5.39 2.07 9H1c-.55 0-1 .45-1 1s.45 1 1 1h1.07c.45 3.61 3.32 6.45 6.93 6.91V19c0 .55.45 1 1 1s1-.45 1-1v-1.09c3.61-.46 6.48-3.29 6.93-6.91H19c.55 0 1-.45 1-1s-.45-1-1-1zm-4 2h.9a5.98 5.98 0 01-4.9 4.91V15c0-.55-.45-1-1-1s-1 .45-1 1v.91A5.98 5.98 0 014.1 11H5c.55 0 1-.45 1-1s-.45-1-1-1h-.9A5.98 5.98 0 019 4.09V5c0 .55.45 1 1 1s1-.45 1-1v-.91A5.98 5.98 0 0115.9 9H15c-.55 0-1 .45-1 1s.45 1 1 1z", - ], - lock: [ - "M15.93 9H14V4.99c0-2.21-1.79-4-4-4s-4 1.79-4 4V9H3.93c-.55 0-.93.44-.93.99v8c0 .55.38 1.01.93 1.01h12c.55 0 1.07-.46 1.07-1.01v-8c0-.55-.52-.99-1.07-.99zM8 9V4.99c0-1.1.9-2 2-2s2 .9 2 2V9H8z", - ], - "log-in": [ - "M19 0h-8c-.55 0-1 .45-1 1s.45 1 1 1h7v16h-7c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-4 10c0-.28-.11-.53-.29-.71l-5-5a1.003 1.003 0 00-1.42 1.42L11.59 9H1c-.55 0-1 .45-1 1s.45 1 1 1h10.59L8.3 14.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l5-5c.18-.18.29-.43.29-.71z", - ], - "log-out": [ - "M19.71 9.29l-5-5a1.003 1.003 0 00-1.42 1.42L16.59 9H6c-.55 0-1 .45-1 1s.45 1 1 1h10.59l-3.29 3.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l5-5c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71zM9 18H2V2h7c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - manual: [ - "M20 1.1a.976.976 0 00-.83-.88C15.15-.43 12.07.34 10 2.5 7.93.34 4.85-.43.84.22.37.3.03.67 0 1.1v15.01c0 .07 0 .14.01.21.09.52.61.88 1.15.79 3.85-.62 6.4.16 8 2.46.02.02.03.04.05.07.02.02.04.04.06.07l.01.01a1.07 1.07 0 00.28.19c.01 0 .01.01.02.01.03.01.07.03.1.04.01 0 .02.01.04.01.03.01.07.02.1.02.01 0 .02 0 .04.01H10c.04 0 .09 0 .13-.01.01 0 .03 0 .04-.01.03-.01.06-.01.1-.02.01 0 .03-.01.04-.01.03-.01.07-.02.1-.04.01 0 .02-.01.03-.01.07-.03.13-.07.19-.11.01 0 .01-.01.02-.01.02-.02.04-.03.06-.05.01-.01.02-.02.03-.02l.05-.05c.01-.01.02-.02.02-.03.01-.02.02-.03.04-.05 1.61-2.3 4.15-3.09 8-2.46.54.09 1.06-.26 1.15-.79-.01-.05 0-.09 0-.13V1.1zM9 16.63c-1.78-1.31-4.12-1.83-7-1.55V2c3.26-.37 5.51.39 7 2.35v12.28zm9-1.56c-2.88-.28-5.22.24-7 1.55V4.34c1.49-1.96 3.74-2.71 7-2.35v13.08z", - ], - "manually-entered-data": [ - "M1 12h4.34l2-2H1c-.55 0-1 .45-1 1s.45 1 1 1zm16.77-3.94l1.65-1.65c.36-.36.58-.86.58-1.41 0-1.1-.9-2-2-2-.55 0-1.05.22-1.41.59l-1.65 1.65 2.83 2.82zM1 4h12.34l2-2H1c-.55 0-1 .45-1 1s.45 1 1 1zM0 15c0 .55.45 1 1 1h.34l2-2H1c-.55 0-1 .45-1 1zm1-7h8.34l2-2H1c-.55 0-1 .45-1 1s.45 1 1 1zm18 2h-.34l-2 2H19c.55 0 1-.45 1-1s-.45-1-1-1zm0 4h-4.34l-2 2H19c.55 0 1-.45 1-1s-.45-1-1-1zM4 19l4.41-1.59-2.81-2.79L4 19zM14.23 5.94l-7.65 7.65 2.83 2.83 7.65-7.65-2.83-2.83z", - ], - "many-to-many": [ - "M17 6a1 1 0 100-2 1 1 0 000 2zm0 2a3 3 0 01-2.73-1.754c-.2.068-.408.154-.617.264-.884.465-1.92 1.418-2.605 3.49.685 2.072 1.721 3.025 2.605 3.49.21.11.416.196.617.264a3 3 0 11-.165 2.034 6.262 6.262 0 01-1.383-.528c-.983-.518-1.948-1.364-2.722-2.705-.774 1.34-1.739 2.187-2.722 2.705-.48.252-.95.419-1.383.528A3.001 3.001 0 010 15a3 3 0 015.73-1.246c.2-.068.408-.154.617-.264.884-.465 1.92-1.418 2.605-3.49-.685-2.072-1.721-3.025-2.605-3.49a4.21 4.21 0 00-.617-.264 3 3 0 11.165-2.034c.433.11.904.276 1.383.528.983.518 1.948 1.364 2.722 2.705.774-1.34 1.739-2.187 2.722-2.705.48-.252.95-.419 1.383-.528A3.001 3.001 0 0120 5a3 3 0 01-3 3zM4 5a1 1 0 10-2 0 1 1 0 002 0zm12 10a1 1 0 102 0 1 1 0 00-2 0zM3 14a1 1 0 110 2 1 1 0 010-2z", - ], - "many-to-one": [ - "M3 2a1 1 0 100 2 1 1 0 000-2zm0 4c1.296 0 2.4-.821 2.82-1.972.487.039 1.086.13 1.667.347.947.352 1.773 1 2.032 2.318.323 1.644 1.234 2.675 2.264 3.307-1.03.632-1.941 1.663-2.264 3.307-.259 1.318-1.085 1.966-2.032 2.318a6.244 6.244 0 01-1.668.347 3.001 3.001 0 10.019 2.004c.633-.042 1.491-.158 2.347-.476 1.402-.523 2.867-1.625 3.296-3.807.259-1.318 1.085-1.966 2.032-2.318.24-.09.484-.158.722-.21a3 3 0 100-2.33 5.329 5.329 0 01-.722-.21c-.947-.352-1.773-1-2.032-2.318-.428-2.182-1.894-3.284-3.296-3.807-.856-.318-1.714-.434-2.347-.476A3.001 3.001 0 000 3a3 3 0 003 3zm13 4a1 1 0 102 0 1 1 0 00-2 0zM2 17a1 1 0 112 0 1 1 0 01-2 0z", - ], - map: [ - "M19.54 4.18l.01-.02-6-4-.01.02C13.39.08 13.21 0 13 0s-.39.08-.54.18l-.01-.02L7 3.8 1.55.17l-.01.01A.969.969 0 001 0C.45 0 0 .45 0 1v14c0 .35.19.64.46.82l-.01.02 6 4 .01-.02c.15.1.33.18.54.18s.39-.08.54-.18l.01.02L13 16.2l5.45 3.63.01-.02c.15.11.33.19.54.19.55 0 1-.45 1-1V5c0-.35-.19-.64-.46-.82zM6 17.13l-4-2.67V2.87l4 2.67v11.59zm6-2.67l-4 2.67V5.54l4-2.67v11.59zm6 2.67l-4-2.67V2.87l4 2.67v11.59z", - ], - "map-create": [ - "M18 9.22v7.91l-4-2.67V9.22c-.61-.55-1-1.33-1-2.22-.35 0-.69-.07-1-.18v7.65l-4 2.67V5.54l2.02-1.35c0-.06-.02-.13-.02-.19 0-1.66 1.34-3 3-3 0-.34.07-.66.17-.97C13.12.02 13.06 0 13 0c-.21 0-.39.08-.54.18l-.01-.02L7 3.8 1.55.17l-.01.01A.969.969 0 001 0C.45 0 0 .45 0 1v14c0 .35.19.64.46.82l-.01.02 6 4 .01-.02c.15.1.33.18.54.18s.39-.08.54-.18l.01.02L13 16.2l5.45 3.63.01-.02c.15.11.33.19.54.19.55 0 1-.45 1-1V6.82c-.31.11-.65.18-1 .18 0 .89-.39 1.67-1 2.22zM6 17.13l-4-2.67V2.87l4 2.67v11.59zM12 4c0 .55.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V5h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V1c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1z", - ], - "map-marker": [ - "M9.98 0c-3.87 0-7 2.98-7 6.67 0 3.68 7 13.33 7 13.33s7-9.65 7-13.33c0-3.68-3.14-6.67-7-6.67zm0 10c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", - ], - maximize: [ - "M19 0h-5c-.55 0-1 .45-1 1s.45 1 1 1h2.59L11.3 7.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L18 3.41V6c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zM8 11c-.28 0-.53.11-.71.29L2 16.59V14c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1H3.41l5.29-5.29c.19-.18.3-.43.3-.71 0-.55-.45-1-1-1z", - ], - media: [ - "M15 9c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4-7H1c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 13l-6-5-2 2-4-5-4 8V4h16v11z", - ], - menu: [ - "M1 6h18c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm18 3H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm0 5H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "menu-closed": [ - "M8 6h11c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM4 6c-.28 0-.53.11-.71.29l-3 3C.11 9.47 0 9.72 0 10c0 .28.11.53.29.71l3 3A1.003 1.003 0 005 13V7c0-.55-.45-1-1-1zm15 8H8c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0-5H8c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "menu-open": [ - "M12 9H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0 5H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0-10H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm7.71 5.29l-3-3A1.003 1.003 0 0015 7v6a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z", - ], - "merge-columns": [ - "M6.71 6.29a1.003 1.003 0 00-1.42 1.42L6.59 9H2V2h5v2.18c.42.15.8.39 1.11.7l.01-.01.88.89V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-4.76l-.88.88-.01-.01c-.31.31-.69.56-1.11.71V18H2v-7h4.59L5.3 12.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-3-3zM19 0h-7c-.55 0-1 .45-1 1v4.76l.88-.88.01.01c.31-.31.69-.55 1.11-.7V2h5v7h-4.59l1.29-1.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L13.41 11H18v7h-5v-2.18c-.42-.15-.8-.39-1.11-.7l-.01.01-.88-.89V19c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - "merge-links": [ - "M10 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8-5c-.93 0-1.71.64-1.93 1.5H14V4c0-2.21-1.79-4-4-4S6 1.79 6 4v5.5H3.93C3.71 8.64 2.93 8 2 8c-1.1 0-2 .9-2 2s.9 2 2 2c.93 0 1.71-.64 1.93-1.5H6V16c0 2.21 1.79 4 4 4s4-1.79 4-4v-5.5h2.07c.22.86 1 1.5 1.93 1.5 1.1 0 2-.9 2-2s-.9-2-2-2zm-5 8c0 1.66-1.34 3-3 3s-3-1.34-3-3V4c0-1.66 1.34-3 3-3s3 1.34 3 3v12zM10 3c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", - ], - minimize: [ - "M8 11H3c-.55 0-1 .45-1 1s.45 1 1 1h2.59L.3 18.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L7 14.41V17c0 .55.45 1 1 1s1-.45 1-1v-5c0-.55-.45-1-1-1zM20 1a1.003 1.003 0 00-1.71-.71L13 5.59V3c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1h-2.59l5.29-5.29c.19-.18.3-.43.3-.71z", - ], - minus: [ - "M16 9H4c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "mobile-phone": [ - "M15 0H5c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-5 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4-3H6V3h8v13z", - ], - "mobile-video": [ - "M19 5c-.28 0-.53.11-.71.29L15 8.59V5c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h13c.55 0 1-.45 1-1v-3.59l3.29 3.29c.18.19.43.3.71.3.55 0 1-.45 1-1V6c0-.55-.45-1-1-1z", - ], - modal: [ - "M19 1a1 1 0 011 1v16a1 1 0 01-1 1H1a1 1 0 01-1-1V2a1 1 0 011-1h18zm-1 4H2v12h16V5zm-3-3h-2v2h2V2zm3 0h-2v2h2V2z", - ], - "modal-filled": [ - "M20 5v13a1 1 0 01-1 1H1a1 1 0 01-1-1V5h20zm-3-4h2a1 1 0 011 1v1h-3V1zm-2 2H0V2a1 1 0 011-1h14v2z", - ], - moon: [ - "M19 14.15A9.94 9.94 0 019.94 20C4.45 20 0 15.55 0 10.06 0 6.03 2.4 2.56 5.85 1a9.811 9.811 0 00-.88 4.09c0 5.49 4.45 9.94 9.94 9.94 1.46 0 2.84-.31 4.09-.88z", - ], - more: [ - "M3.5 8a2.5 2.5 0 100 5 2.5 2.5 0 100-5zM17.5 8a2.5 2.5 0 100 5 2.5 2.5 0 100-5zM10.5 8a2.5 2.5 0 100 5 2.5 2.5 0 100-5z", - ], - mountain: [ - "M20 16H4l7-11h1l2 2h1l5 9zm-4-5l-1.5-3h-1l-1-1-1-1L8 11.5l3-1.5 1 1 1-1 3 1zM8.055 8L2.79 16H0l7-8h1.055z", - ], - move: [ - "M19.71 9.29l-3-3a1.003 1.003 0 00-1.42 1.42L16.59 9H11V3.41l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-3-3C10.53.11 10.28 0 10 0s-.53.11-.71.29l-3 3a1.003 1.003 0 001.42 1.42L9 3.41V9H3.41L4.7 7.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3C.11 9.47 0 9.72 0 10c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L3.41 11H9v5.59L7.71 15.3A.965.965 0 007 15a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3a1.003 1.003 0 00-1.42-1.42L11 16.59V11h5.59l-1.29 1.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z", - ], - mugshot: [ - "M19 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18h-.07c-.05-.2-.12-.42-.22-.67-.46-1.05-2.68-1.75-4.16-2.4-1.48-.65-1.28-1.05-1.33-1.59-.01-.07-.01-.15-.01-.23.51-.45.92-1.07 1.19-1.78 0 0 .01-.04.02-.05.06-.15.11-.32.15-.48.34-.07.54-.44.61-.78.08-.14.23-.48.2-.87-.05-.5-.25-.73-.47-.82v-.09c0-.63-.06-1.55-.17-2.15-.02-.17-.06-.33-.11-.5a3.67 3.67 0 00-1.29-1.86C11.7 3.25 10.81 3 10.02 3s-1.68.25-2.31.73c-.61.47-1.07 1.13-1.29 1.86-.05.16-.09.33-.11.5-.12.6-.17 1.51-.17 2.14v.08c-.24.09-.44.32-.49.83-.04.39.12.73.2.87.08.35.28.72.63.78.04.17.09.33.15.48 0 .01.01.02.01.03l.01.01c.27.72.7 1.35 1.22 1.8 0 .07-.01.14-.01.21-.05.54.1.94-1.38 1.59-1.48.65-3.7 1.35-4.16 2.4-.12.27-.18.49-.23.69H2V2h16v16z", - ], - "multi-select": [ - "M19 3H7c-.55 0-1 .45-1 1v1h12v6h1c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-6 6H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm-1 6H2v-4h10v4zm4-9H4c-.55 0-1 .45-1 1v1h12v6h1c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1z", - ], - music: [ - "M19 0c-.08 0-.16.03-.24.05V.03l-12 3v.02C6.33 3.16 6 3.53 6 4v11.35c-.59-.22-1.27-.35-2-.35-2.21 0-4 1.12-4 2.5S1.79 20 4 20c1.94 0 3.55-.86 3.92-2H8V7.78l10-2.5v7.07c-.59-.22-1.27-.35-2-.35-2.21 0-4 1.12-4 2.5s1.79 2.5 4 2.5c1.94 0 3.55-.86 3.92-2H20V1c0-.55-.45-1-1-1z", - ], - nest: [ - "M2 2c.55 0 1 .45 1 1v5c0 2.21 1.79 4 4 4h8.59L13.3 9.71A.965.965 0 0113 9a1.003 1.003 0 011.71-.71l4 4c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-4 4a1.003 1.003 0 01-1.42-1.42l2.3-2.29H7c-3.31 0-6-2.69-6-6V3c0-.55.45-1 1-1z", - ], - "new-drawing": [ - "M18.7 13.7c.5 0 1 .4 1 1 0 .257-.073.44-.22.614l-.08.086-4 4c-.2.2-.4.3-.7.3-.6 0-1-.5-1-1 0-.257.073-.44.22-.614L14 18l4-4c.2-.2.4-.3.7-.3zM1.8 0l8.378 2.982A3.003 3.003 0 0013 7a3.003 3.003 0 003.877 2.87l.723 2.53.049.06a.41.41 0 01.051.24c0 .167-.07.403-.208.593l-.092.107-4 4c-.2.2-.4.3-.7.3-.075 0-.15-.056-.225-.084L12.4 17.6l-7-2-.112-.042c-.223-.094-.431-.244-.542-.45L4.7 15 0 1.8l.5-.6L7 7.7c-.2.3-.3.6-.3 1 0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2a1.68 1.68 0 00-.871.22L7.7 7 1.2.5l.6-.5zM16 0c.55 0 1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1h-2v2c0 .432-.278.803-.664.941l-.01.004A.989.989 0 0116 8c-.55 0-1-.45-1-1V5h-2c-.55 0-1-.45-1-1l.007-.116C12.065 3.388 12.489 3 13 3h2V1c0-.55.45-1 1-1z", - ], - "new-grid-item": [ - "M8 0H1C.45 0 0 .45 0 1v7c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm0 11H1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-7c0-.55-.45-1-1-1zm6 7h-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1h2c.55 0 1-.45 1-1s-.45-1-1-1zm5-7h-2c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1zm0-11h-7c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-5 11h-2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1zm5 5c-.55 0-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1z", - ], - "new-layer": [ - "M11.513 2.663A2 2 0 0013 6h1v1a2 2 0 104 0v-.733l1.5.833c.3.2.5.5.5.9s-.2.7-.5.9l-9 5c-.2.1-.3.1-.5.1s-.3 0-.5-.1l-9-5C.2 8.7 0 8.4 0 8s.2-.7.5-.9l9-5c.2-.1.3-.1.5-.1s.3 0 .5.1l1.013.563zM17 3h2a1 1 0 010 2h-2v2a1 1 0 01-2 0V5h-2a1 1 0 010-2h2V1a1 1 0 012 0v2z", - ], - "new-layers": [ - "M17 3h2a1 1 0 010 2h-2v2a1 1 0 01-2 0V5h-2a1 1 0 010-2h2V1a1 1 0 012 0v2zm-1.252 5.984L10.5 11.9c-.2.1-.3.1-.5.1s-.3 0-.5-.1l-9-5C.2 6.7 0 6.4 0 6s.2-.7.5-.9l9-5c.2-.1.3-.1.5-.1s.3 0 .5.1L13.92 2H13a2 2 0 100 4h1v1a2 2 0 001.748 1.984zm2.07-1.15C17.935 7.58 18 7.298 18 7V6h1c.353 0 .684-.091.972-.251.018.078.028.162.028.251 0 .4-.2.7-.5.9l-1.682.934zM19 9c.6 0 1 .4 1 1 0 .4-.2.7-.5.9l-9 5c-.2.1-.3.1-.5.1s-.3 0-.5-.1l-9-5c-.3-.2-.5-.5-.5-.9 0-.6.4-1 1-1 .2 0 .3 0 .5.1l8.5 4.8 8.5-4.8c.2-.1.3-.1.5-.1zm0 4c.6 0 1 .4 1 1 0 .4-.2.7-.5.9l-9 5c-.2.1-.3.1-.5.1s-.3 0-.5-.1l-9-5c-.3-.2-.5-.5-.5-.9 0-.6.4-1 1-1 .2 0 .3 0 .5.2l8.5 4.7 8.5-4.8c.2-.1.3-.1.5-.1z", - ], - "new-link": [ - "M14.5 12a2.5 2.5 0 00-2.45 2h-7.1a2.5 2.5 0 100 1h7.1a2.5 2.5 0 102.45-3zM19 5h-2V3c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V7h2c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "new-object": [ - "M12 4c0 .6.4 1 1 1h2v2c0 .6.4 1 1 1 .5 0 1-.4 1-1V5h2c.5 0 1-.4 1-1s-.5-1-1-1h-2V1c0-.6-.5-1-1-1-.6 0-1 .4-1 1v2h-2c-.6 0-1 .5-1 1zm7 3c0 1.7-1.3 3-3 3s-3-1.3-3-3c-1.7 0-3-1.3-3-3s1.3-3 3-3c0-.2 0-.4.1-.5-1-.3-2-.5-3.1-.5C4.5 0 0 4.5 0 10s4.5 10 10 10 10-4.5 10-10c0-1.1-.2-2.1-.5-3H19z", - ], - "new-person": [ - "M11.41 15.92c-1.46-.65-1.26-1.05-1.31-1.59-.01-.07-.01-.15-.01-.23.5-.45.91-1.07 1.18-1.78 0 0 .01-.04.02-.05.06-.15.11-.32.15-.48.33-.07.53-.44.6-.78.08-.14.23-.48.2-.87-.05-.5-.24-.73-.47-.82v-.09c0-.63-.06-1.55-.17-2.15-.02-.17-.06-.33-.11-.5-.22-.73-.67-1.4-1.27-1.86C9.58 4.25 8.7 4 7.92 4c-.78 0-1.66.25-2.28.73-.61.47-1.06 1.13-1.27 1.86-.05.16-.08.33-.11.5-.12.6-.18 1.51-.18 2.14v.08c-.23.09-.43.32-.48.83-.04.39.12.73.2.87.08.35.28.72.62.78.04.17.09.33.15.48 0 .01.01.02.01.03l.01.01c.27.72.69 1.35 1.21 1.8 0 .07-.01.14-.01.21-.05.54.1.94-1.36 1.59-1.46.65-3.66 1.35-4.11 2.4C-.14 19.38.04 20 .04 20h15.75s.18-.62-.27-1.67c-.45-1.06-2.65-1.75-4.11-2.41zM18.87 3h-2V1c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V5h2c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "new-prescription": [ - "M11.95 10.23c.16-.18.22-.22.46-.22h1.48c.25 0 .47.08.59.33.1.2.09.41-.05.66l-2.71 3.58L14.88 19c.13.21.16.46.03.69-.12.21-.34.31-.57.31H12.7c-.31 0-.56-.17-.7-.44l-1.9-2.67-1.93 2.68c-.15.27-.42.43-.73.43H5.98c-.25 0-.47-.08-.59-.33-.1-.2-.09-.41.05-.66l3.09-4.35L4.26 9H3v4.32c0 .41-.3.69-.7.69H.7c-.41 0-.7-.28-.7-.69V.69C0 .28.3 0 .7 0h4.42c.71 0 1.36.1 1.94.3.59.2 1.11.49 1.54.87.44.38.78.84 1.02 1.39.25.54.37 1.13.37 1.77 0 1.01-.28 1.88-.84 2.6-.43.54-1.35 1.29-2 1.59l3.09 3.94 1.71-2.23zM4.71 6.04c.71 0 1.45-.16 1.81-.46.33-.28.5-.69.5-1.25s-.17-.97-.5-1.25c-.35-.3-1.1-.46-1.81-.46h-1.7v3.42h1.7zM19 3c.55 0 1 .45 1 1s-.45 1-1 1h-2v2c0 .55-.45 1-1 1s-1-.45-1-1V5h-2c-.55 0-1-.45-1-1s.45-1 1-1h2V1c0-.55.45-1 1-1s1 .45 1 1v2h2z", - ], - "new-text-box": [ - "M19 3h-2V1c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V5h2c.55 0 1-.45 1-1s-.45-1-1-1zM5 7.5v1c0 .28.22.5.5.5s.5-.22.5-.5V8h2v7h-.5c-.28 0-.5.22-.5.5s.22.5.5.5h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H9V8h2v.5c0 .28.22.5.5.5s.5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-6c-.28 0-.5.22-.5.5zM16 9c-.55 0-1 .45-1 1v8H2V5h8c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1h15c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1z", - ], - ninja: [ - "M20 6s-2.98 2.43-6.12 2.19C13.52 5.31 12.05 0 6 0c0 0 2.41 2.99 2.16 6.12C5.27 6.49 0 7.97 0 14c0 0 2.98-2.43 6.11-2.19C6.47 14.69 7.94 20 14 20c0 0-2.42-2.99-2.16-6.13C14.73 13.51 20 12.02 20 6zm-10 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", - ], - "not-equal-to": [ - "M9.487 7l.532-3.196a1 1 0 011.962.392L11.513 7H16a1 1 0 010 2h-4.82l-.333 2H16a1 1 0 010 2h-5.487l-.532 3.196a1 1 0 01-1.962-.392L8.487 13H4a1 1 0 010-2h4.82l.333-2H4a1 1 0 110-2h5.487z", - ], - notifications: [ - "M10 20c1.1 0 2-.9 2-2H8c0 1.1.9 2 2 2zm7-5c-.55 0-1-.45-1-1V8c0-2.61-1.67-4.81-4-5.63V2c0-1.1-.9-2-2-2S8 .9 8 2v.37C5.67 3.19 4 5.39 4 8v6c0 .55-.45 1-1 1s-1 .45-1 1 .45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "notifications-snooze": [ - "M10 18c0 1.1-.9 2-2 2s-2-.9-2-2zM8 0c.476 0 .914.168 1.258.448C8.508.878 8.09 1.562 8 2.5c-.133 1.4.4 2.367 1.6 2.9C8.533 6.6 8 7.467 8 8v1.2a2.8 2.8 0 002.8 2.8H14v2c0 .51.388.935.884.993L15 15c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1s.45-1 1-1 1-.45 1-1V8c0-2.61 1.67-4.81 4-5.63V2c0-1.1.9-2 2-2z", - "M16 9.25v-.395a.75.75 0 00-.75-.75h-2.813L15.834 3.9A.75.75 0 0016 3.43v-.68a.75.75 0 00-.75-.75h-4.5a.75.75 0 00-.75.75v.184c0 .414.336.75.75.75h2.813L10.22 7.831a1 1 0 00-.221.627v.792c0 .414.336.75.75.75h4.5a.75.75 0 00.75-.75z", - ], - "notifications-updated": [ - "M10 20c1.1 0 2-.9 2-2H8c0 1.1.9 2 2 2zm2-17.834A2.994 2.994 0 008 4.99c0 .808.319 1.557.876 2.114l2.97 2.99a2.99 2.99 0 004.154.072V14c0 .55.45 1 1 1s1 .45 1 1-.45 1-1 1H3c-.55 0-1-.45-1-1s.45-1 1-1 1-.45 1-1V8c0-2.61 1.67-4.81 4-5.63V2c0-1.1.9-2 2-2s2 .9 2 2v.166zm1.26 6.514l-2.97-2.99a.973.973 0 01-.29-.7c0-.55.44-1 .99-1 .27 0 .52.11.7.29l2.28 2.28 4.27-4.27a.99.99 0 01.7-.29c.55 0 1 .45 1 1 0 .28-.11.53-.3.7l-4.98 4.98a.99.99 0 01-1.4 0z", - ], - "numbered-list": [ - "M1.74 9.01h1.27V1h-.95c-.04.24-.12.45-.26.62-.13.17-.29.3-.47.41-.19.11-.4.18-.63.23-.23.04-.46.07-.71.07v1.03h1.75v5.65zm.43 7.93c.18-.14.37-.28.58-.43.21-.14.42-.29.63-.45.21-.16.41-.33.61-.5.2-.18.37-.38.52-.59.15-.21.28-.45.37-.7.09-.25.14-.54.14-.85 0-.25-.04-.52-.12-.8-.08-.28-.21-.54-.39-.78-.19-.24-.43-.44-.73-.59-.3-.17-.68-.25-1.12-.25-.41 0-.77.08-1.08.23-.32.16-.58.37-.8.64-.22.27-.38.59-.49.96-.11.37-.16.77-.16 1.21h1.19c.01-.28.03-.53.08-.77s.12-.45.21-.62c.09-.18.22-.31.38-.42.16-.1.35-.15.59-.15.26 0 .47.05.63.14.16.09.29.21.38.35.09.14.15.29.18.45.03.16.05.31.05.45-.01.31-.08.58-.22.81-.14.24-.32.45-.53.66-.22.2-.45.39-.71.57-.26.18-.51.36-.74.54-.5.36-.89.78-1.17 1.27-.3.47-.45 1.04-.46 1.69H5v-1.14H1.43c.05-.17.14-.33.27-.49.13-.15.29-.3.47-.44zM18 4.02H8c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-1c0-.56-.45-1-1-1zm0 9H8c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-1c0-.56-.45-1-1-1z", - ], - numerical: [ - "M2.39 5.75c-.17.21-.38.39-.63.52s-.52.23-.83.29c-.3.05-.61.08-.93.08v1.24h2.49V15h1.49V4.98H2.73c-.05.31-.17.57-.34.77zm17.2 4.71c-.27-.44-.65-.71-1.14-.82v-.02c.42-.16.72-.43.92-.79.2-.36.29-.79.29-1.27 0-.42-.08-.8-.23-1.12-.15-.33-.36-.59-.62-.8-.26-.21-.55-.37-.87-.48-.32-.11-.65-.16-.98-.16-.43 0-.82.08-1.16.25-.34.16-.63.39-.87.69-.24.29-.43.64-.57 1.04-.14.4-.22.83-.23 1.3h1.39c-.01-.25.02-.49.07-.72.06-.23.14-.44.26-.63s.27-.34.45-.45c.18-.11.39-.17.63-.17.39 0 .71.12.96.37s.37.58.37.99c0 .29-.05.54-.16.74-.11.2-.25.36-.43.47-.18.11-.38.19-.61.24-.23.05-.46.06-.68.05v1.17c.28-.01.55 0 .81.03s.5.1.71.21c.21.11.38.28.51.5.13.22.2.52.2.89 0 .55-.16.97-.47 1.27-.31.3-.7.45-1.17.45-.55 0-.95-.19-1.23-.58-.27-.39-.4-.88-.38-1.46h-1.39c.01.5.08.96.21 1.38.13.41.32.77.57 1.06.25.29.56.52.93.68.37.16.8.24 1.3.24.41 0 .79-.07 1.16-.21.37-.14.69-.33.96-.58.28-.25.5-.56.66-.92a3 3 0 00.24-1.23c0-.64-.14-1.17-.41-1.61zM8.58 12.41c.21-.18.45-.36.7-.53.25-.18.5-.36.75-.56.25-.2.49-.41.73-.63.23-.22.44-.47.63-.74.18-.27.33-.56.44-.88.11-.32.16-.67.16-1.07 0-.32-.05-.65-.14-1-.09-.35-.25-.68-.47-.97-.22-.3-.51-.55-.87-.74-.36-.2-.81-.29-1.35-.29-.49 0-.93.1-1.3.29-.37.18-.69.44-.95.78-.26.33-.45.73-.58 1.2-.13.46-.2.96-.2 1.5h1.43c.01-.35.04-.67.09-.97.05-.3.14-.56.25-.78.11-.22.26-.39.45-.52s.43-.19.71-.19c.31 0 .56.06.75.18.19.12.34.26.45.43.11.17.18.36.22.56.04.2.06.39.06.57-.01.38-.1.72-.26 1.02-.15.3-.37.57-.63.83-.26.25-.54.49-.85.71-.31.22-.61.45-.89.68-.6.45-1.06.98-1.41 1.58-.35.61-.52 1.32-.53 2.13h6.01v-1.43H7.69c.06-.21.17-.42.33-.61s.34-.38.56-.55z", - ], - office: [ - "M19 6h-5V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h4v-6h4v6h10c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zM6 12H2V8h4v4zm0-6H2V2h4v4zm6 6H8V8h4v4zm0-6H8V2h4v4zm6 11h-4v-3h4v3zm0-5h-4V8h4v4z", - ], - offline: [ - "M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM7 18l2-7H5l8-9-2 7h4l-8 9z", - ], - "oil-field": [ - "M19 17.99h-1.36l-4.35-9.57 2.91-.86 1.66 4.1c.11.27.43.4.72.31.12-.04.22-.11.28-.2.06-.11 1.47-2.08 1.05-5.6C19.79 5.12 19.3 0 16.01 0 14.89.01 13.99.83 14 1.84c0 .19.04.38.1.56l1.34 3.31L.72 10.03v.02c-.41.12-.72.49-.72.94 0 .55.45 1 1 1 .1 0 .19-.03.28-.06v.02l2-.59 1.47 6.63H3c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zM5.2 10.8l3.95-1.16-2.83 6.22L5.2 10.8zm2.35 7.19l3.95-8.68 3.95 8.68h-7.9z", - ], - "one-column": [ - "M14.94 0h-4c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-8 6c-.28 0-.53.11-.71.29l-3 3c-.18.18-.29.43-.29.71s.11.53.29.71l3 3A1.003 1.003 0 007.94 13V7c0-.55-.45-1-1-1z", - ], - "one-to-many": [ - "M18 3a1 1 0 11-2 0 1 1 0 012 0zm-3.82 1.028a6.243 6.243 0 00-1.667.347c-.947.352-1.773 1-2.032 2.318C10.158 8.337 9.247 9.368 8.217 10c1.03.632 1.941 1.663 2.264 3.307.259 1.318 1.085 1.966 2.032 2.318.581.217 1.18.308 1.668.347a3.001 3.001 0 11-.019 2.004c-.633-.042-1.491-.158-2.347-.476-1.402-.523-2.868-1.625-3.296-3.807-.259-1.318-1.085-1.966-2.032-2.318a5.314 5.314 0 00-.722-.21 3 3 0 110-2.33c.238-.052.481-.12.722-.21.947-.352 1.773-1 2.032-2.318.428-2.182 1.894-3.284 3.296-3.807.856-.318 1.714-.434 2.347-.476A3.001 3.001 0 0120 3a3 3 0 01-5.82 1.028zM4 10a1 1 0 100 .002v-.002zM17 18a1 1 0 100-2 1 1 0 000 2z", - ], - "one-to-one": [ - "M2 10a1 1 0 112 0 1 1 0 01-2 0zm3.83-1a3.001 3.001 0 100 2h8.34a3.001 3.001 0 100-2H5.83zM17 9a1 1 0 100 2 1 1 0 000-2z", - ], - outdated: [ - "M10 0c5.52 0 10 4.48 10 10s-4.48 10-10 10S0 15.52 0 10c0-.55.45-1 1-1s1 .45 1 1c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8C7.47 2 5.22 3.17 3.76 5H5c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1s1 .45 1 1v2.05C3.82 1.6 6.71 0 10 0zm1 16H9v-2h2v2zm0-3H9V4h2v9z", - ], - "page-layout": [ - "M19 1H1c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM7 17H2V8h5v9zm11 0H8V8h10v9zm0-10H2V3h16v4z", - ], - "panel-stats": [ - "M1 1h18a1 1 0 011 1v15a1 1 0 01-1 1H1a1 1 0 01-1-1V2a1 1 0 011-1zm1 2v13h16V3H2zm9 0h1v13h-1V3zm2 7h3.952v1H13v-1zm0 2h3.952v1H13v-1zm0 2h3.952v1H13v-1zm0-6h3.952v1H13V8zm0-2h3.952v1H13V6zm0-2h3.952v1H13V4z", - ], - "panel-table": [ - "M19 1H1c-.6 0-1 .4-1 1v15c0 .6.4 1 1 1h18c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1zm-9 11H7V9h3v3zm0-4H7V5h3v3zm-8 8V3h4v13H2zm5 0v-3h3v3H7zm11 0h-7v-3h7v3zm0-4h-7V9h7v3zm0-4h-7V5h7v3z", - ], - paperclip: [ - "M18.35 2.67A5.664 5.664 0 0014.33 1c-1.44 0-2.89.56-3.99 1.67l-9.16 9.27C.4 12.73 0 13.78 0 14.83s.39 2.1 1.18 2.9c.78.79 1.82 1.18 2.85 1.18 1.04 0 2.07-.39 2.87-1.2l9.14-9.27c.96-.96.96-2.5.02-3.45-.94-.95-2.49-.96-3.44 0l-7.59 7.69c-.31.32-.3.83.01 1.14.31.31.81.31 1.13.02l7.59-7.69c.31-.31.84-.31 1.13-.02.31.31.31.85 0 1.16l-9.14 9.27c-.93.95-2.54.93-3.45.02-.94-.95-.92-2.55.02-3.49l9.16-9.25c1.55-1.56 4.18-1.59 5.72-.03 1.56 1.57 1.55 4.26 0 5.82l-8.89 9.02c-.3.31-.3.81.01 1.11.3.3.79.31 1.1.01v.01l8.91-9.02A5.645 5.645 0 0020 6.73c0-1.48-.55-2.94-1.65-4.06z", - ], - paragraph: [ - "M16.5 1H7C4.2 1 2 3.2 2 6s2.2 5 5 5v6.5c0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5V4h2v13.5c0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5V4h1.5c.8 0 1.5-.7 1.5-1.5S17.3 1 16.5 1z", - ], - path: [ - "M18 0H2C.9 0 0 .9 0 2s.9 2 2 2h7v4H4c-1.1 0-2 .9-2 2s.9 2 2 2h5v4H6c-1.1 0-2 .9-2 2s.9 2 2 2h8c1.1 0 2-.9 2-2s-.9-2-2-2h-3v-4h5c1.1 0 2-.9 2-2s-.9-2-2-2h-5V4h7c1.1 0 2-.9 2-2s-.9-2-2-2z", - ], - "path-search": [ - "M4 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 11.69l-5-2.5v-3.63c-.32.11-.66.22-1 .29v3.32l-6 2.57v-7.25c-.36-.27-.69-.57-1-.9v8.1l-5-2.5V10c.55 0 1-.45 1-1s-.45-1-1-1V1.31l3.43 1.71c.11-.31.24-.62.39-.92L.72.05A.545.545 0 00.5 0C.22 0 0 .22 0 .5v16c0 .2.12.36.28.44l6 3c.07.04.14.06.22.06.07 0 .14-.01.2-.04l6.79-2.91 5.79 2.9c.07.03.14.05.22.05.28 0 .5-.22.5-.5v-4.21c-.31.13-.64.21-1 .21v3.19zM10 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6.72-.94l-1.43-.72c.2.43.36.89.48 1.36l.23.11V5.5c-.55 0-1 .45-1 1s.45 1 1 1v1.96l1 1V3.5c0-.2-.12-.36-.28-.44zm-3.69 5.56c.14-.21.27-.42.38-.65.02-.04.04-.07.05-.11.11-.22.2-.45.28-.69v-.01c.07-.24.13-.48.17-.73l.03-.17c.04-.25.06-.5.06-.76C17 2.46 14.54 0 11.5 0S6 2.46 6 5.5 8.46 11 11.5 11c.26 0 .51-.02.76-.06l.17-.03c.25-.04.49-.1.73-.17h.01c.24-.08.47-.17.69-.28.04-.02.07-.03.11-.05.23-.11.44-.24.65-.38l.18.18 3.5 3.5c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71l-3.68-3.67zm-4.53.88c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z", - ], - pause: [ - "M7 3H4c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm9 0h-3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - people: [ - "M16.94 17a4.92 4.92 0 00-.33-1.06c-.45-.97-1.37-1.52-3.24-2.3-.17-.07-.76-.31-.77-.32-.1-.04-.2-.08-.28-.12.05-.14.04-.29.06-.45 0-.05.01-.11.01-.16-.25-.21-.47-.48-.65-.79.22-.34.41-.71.56-1.12l.04-.11c-.01.02-.01.02-.02.08l.06-.15c.36-.26.6-.67.72-1.13.18-.37.29-.82.25-1.3-.05-.5-.21-.92-.47-1.22-.02-.53-.06-1.11-.12-1.59.38-.17.83-.26 1.24-.26.59 0 1.26.19 1.73.55.46.35.8.85.97 1.4.04.13.07.25.08.38.08.45.13 1.14.13 1.61v.07c.16.07.31.24.35.62.02.29-.09.55-.15.65-.05.26-.2.53-.46.59-.03.12-.07.25-.11.36-.01.01-.01.04-.01.04-.2.53-.51 1-.89 1.34 0 .06 0 .12.01.17.04.41-.11.71 1 1.19 1.1.5 2.77 1.01 3.13 1.79.34.79.2 1.25.2 1.25h-3.04zm-5.42-3.06c1.47.66 3.7 1.35 4.18 2.39.45 1.05.27 1.67.27 1.67H.04s-.19-.62.27-1.67c.46-1.05 2.68-1.75 4.16-2.4 1.48-.65 1.33-1.05 1.38-1.59 0-.07.01-.14.01-.21-.52-.45-.95-1.08-1.22-1.8l-.01-.01c0-.01-.01-.02-.01-.03-.07-.15-.12-.32-.16-.49-.34-.06-.54-.43-.62-.78-.08-.14-.24-.48-.2-.87.05-.51.26-.74.49-.83v-.08c0-.64.05-1.55.17-2.15a3.648 3.648 0 011.4-2.36C6.32 2.25 7.21 2 8 2s1.68.25 2.31.73a3.63 3.63 0 011.4 2.36c.11.6.17 1.52.17 2.15v.09c.22.09.42.32.47.82.03.39-.12.73-.2.87-.07.34-.27.71-.61.78-.04.16-.09.33-.15.48-.01.01-.02.05-.02.05-.27.71-.68 1.33-1.19 1.78 0 .08 0 .16.01.23.05.55-.15.95 1.33 1.6z", - ], - percentage: [ - "M15 10c-1.66 0-3 1.34-3 3v2c0 1.66 1.34 3 3 3s3-1.34 3-3v-2c0-1.66-1.34-3-3-3zm1 5c0 .55-.45 1-1 1s-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2zM8 7V5c0-1.66-1.34-3-3-3S2 3.34 2 5v2c0 1.66 1.34 3 3 3s3-1.34 3-3zM4 7V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1s-1-.45-1-1zm11-4a1.003 1.003 0 00-1.88-.48L5.14 16.49a1.003 1.003 0 101.74.99l7.99-13.97c.08-.15.13-.32.13-.51z", - ], - person: [ - "M19.61 17.91c-.57-1.32-3.35-2.19-5.19-3.01-1.85-.82-1.59-1.31-1.66-1.99-.01-.09-.01-.19-.02-.29.63-.56 1.15-1.33 1.49-2.22 0 0 .02-.05.02-.06.07-.19.13-.39.19-.6.42-.09.67-.55.76-.98.1-.17.29-.6.25-1.08-.06-.62-.31-.91-.59-1.03v-.11c0-.79-.07-1.93-.22-2.68A4.55 4.55 0 0012.9.92C12.11.32 11 0 10.01 0s-2.1.32-2.89.92a4.55 4.55 0 00-1.74 2.94c-.14.75-.22 1.89-.22 2.68v.1c-.29.11-.55.4-.61 1.04-.04.48.15.91.25 1.08.1.44.35.91.79.98.05.21.12.41.19.6 0 .01.01.03.01.04l.01.02c.34.91.87 1.69 1.52 2.25 0 .09-.01.18-.02.26-.07.68.13 1.17-1.72 1.99S.96 16.59.39 17.91C-.18 19.23.05 20 .05 20h19.9s.23-.77-.34-2.09z", - ], - phone: [ - "M19.91 15.51c-.08-.08-4.21-2.5-4.35-2.57a.876.876 0 00-.4-.1c-.19 0-.42.13-.71.4-.28.27-1.17 1.49-1.43 1.76s-.48.4-.65.4c-.08 0-.19-.02-.32-.07s-1.45-.73-4.2-3.15-3.11-4-3.13-4.44c0-.17.13-.39.4-.65.28-.25.57-.51.89-.74.32-.24.61-.5.88-.78s.4-.52.4-.71c0-.13-.03-.27-.1-.4C7.12 4.32 4.62.19 4.53.1c-.19-.18-.92-.1-1.29.1C.25 1.82 0 4 .05 4.86c.05.89.61 5.58 5.2 9.93 5.7 5.41 9.66 5.2 9.92 5.2.87 0 3.52-.48 4.65-3.19.16-.38.31-1.07.09-1.29z", - ], - "pie-chart": [ - "M9 .98c-4.5.5-8 4.31-8 8.94 0 4.97 4.03 9.04 9 9.04 4.63 0 8.44-3.96 8.94-7.96H9V.98z", - "M10-.08V10h10C20 4 15.52-.08 10-.08z", - ], - pin: [ - "M11.77 1.16c-.81.81-.74 2.28.02 3.76L6.1 8.71c-2.17-1.46-4.12-2-4.94-1.18l4.95 4.95-4.95 6.36 6.36-4.95 4.95 4.95c.82-.82.27-2.77-1.19-4.94l3.8-5.69c1.47.76 2.94.84 3.76.02l-7.07-7.07z", - ], - pivot: [ - "M5.83 9.75L.29 15.29a1.003 1.003 0 001.42 1.42l5.54-5.54c-.57-.37-1.05-.85-1.42-1.42zM19 11c-.55 0-1 .45-1 1v1.59l-3.83-3.83c-.37.56-.85 1.04-1.41 1.41L16.59 15H15c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-5-4c0-2.21-1.79-4-4-4S6 4.79 6 7s1.79 4 4 4 4-1.79 4-4zm-4 2c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", - ], - "pivot-table": [ - "M3 5H1c-.55 0-1 .45-1 1v13c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm0-5H1C.45 0 0 .45 0 1v2c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm13.71 5.29C16.53 5.11 16.28 5 16 5s-.53.11-.71.29l-3 3a1.003 1.003 0 001.42 1.42L15 8.41V11c0 2.21-1.79 4-4 4H8.41l1.29-1.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L8.41 17H11c3.31 0 6-2.69 6-6V8.41l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-3-3zM19 0H6c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h13c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - play: [ - "M16 10c0-.36-.2-.67-.49-.84l.01-.01-10-6-.01.01A.991.991 0 005 3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1 .19 0 .36-.07.51-.16l.01.01 10-6-.01-.01c.29-.17.49-.48.49-.84z", - ], - plus: [ - "M16 9h-5V4c0-.55-.45-1-1-1s-1 .45-1 1v5H4c-.55 0-1 .45-1 1s.45 1 1 1h5v5c0 .55.45 1 1 1s1-.45 1-1v-5h5c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "polygon-filter": [ - "M18 7c-.27 0-.52.05-.75.15l-6.28-4.88c.01-.09.03-.18.03-.27 0-1.1-.9-2-2-2S7 .9 7 2c0 .06.01.12.02.19l-4.19 3C2.57 5.07 2.29 5 2 5 .9 5 0 5.9 0 7c0 .74.4 1.38 1 1.72v7.55c-.6.35-1 .99-1 1.73 0 1.1.9 2 2 2 .74 0 1.38-.4 1.72-1h7.55c.35.6.98 1 1.72 1 1.1 0 2-.9 2-2 0-.37-.11-.72-.29-1.02L18.03 11A2 2 0 0018 7zm-5.03 9c-.72.01-1.35.41-1.69 1H3.72c-.17-.3-.42-.55-.72-.72V8.72c.6-.34 1-.98 1-1.72 0-.06-.01-.12-.02-.19l4.19-3c.26.12.54.19.83.19.27 0 .52-.05.75-.15l6.28 4.88c-.01.09-.03.18-.03.27 0 .37.11.72.29 1.02L12.97 16z", - ], - power: [ - "M10 10c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1S9 .45 9 1v8c0 .55.45 1 1 1zm3-7.45v2.16c2.36 1.12 4 3.5 4 6.29 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.79 1.64-5.17 4-6.29V2.55C3.51 3.79 1 7.09 1 11a9 9 0 0018 0c0-3.91-2.51-7.21-6-8.45z", - ], - "predictive-analysis": [ - "M20 8.01c0-1.26-.61-2.43-1.61-3.12C17.86 2.5 15.8.79 13.4.79c-.58 0-1.14.1-1.69.29A3.533 3.533 0 009.17 0C8.05 0 7 .55 6.32 1.45c-.15-.02-.3-.03-.45-.03-1.63 0-3.03 1.12-3.46 2.71C.97 4.65 0 6.05 0 7.66c0 .48.09.95.26 1.4-.17.44-.26.91-.26 1.39 0 1.38.72 2.64 1.89 3.29.67.7 1.59 1.09 2.54 1.09.61 0 1.19-.15 1.71-.45.68.82 1.68 1.3 2.73 1.3.66 0 1.28-.18 1.83-.52.61.49 1.34.81 2.11.91 1.3 1.43 2.3 3.28 2.31 3.3 0 0 .35.61.33.61.96-.01 1.77-.2 1.64-1.3.01.02-.92-2.89-.92-2.89.52-.26.94-.69 1.21-1.23 1.12-.66 1.84-1.91 1.84-3.26 0-.3-.03-.6-.1-.89.57-.64.88-1.51.88-2.4zm-1.54 1.28l-.18-.2-.77-.84c-.33-.37-.67-1.17-.73-1.73 0 0-.13-1.25-.13-1.26-.06-.74-1.17-.73-1.13.14 0 .02.13 1.26.13 1.26.04.36.15.77.3 1.17-.08-.01-.15-.02-.22-.02 0 0-2.57-.12-2.57-.13-.73-.03-.89 1.22-.05 1.25l2.57.13c.53.03 1.29.37 1.61.72l.61.67.02.06c.1.27.14.55.14.83 0 .93-.51 1.77-1.34 2.18l-.2.1-.09.23c-.19.48-.6.82-1.1.93l-.67.14.87 2.75c-.48-.76-1.19-1.79-2.02-2.67l-.15-.16-.21-.02c-.51-.04-.99-.21-1.42-.48l1.7-1.48c.44-.39 1.04-.55 1.24-.49 0 0 .78.22.78.23.78.2 1.03-.92.29-1.21l-.78-.23c-.69-.2-1.67.22-2.24.72l-1.91 1.66-.39.32c-.44.36-.93.55-1.5.55-.8 0-1.54-.41-1.97-1.07v-1.88c0-.5.21-.98.34-1.07 0 0 .65-.43.64-.43.87-.69.21-1.57-.64-1.14 0-.01-.65.43-.65.43-.31.2-.54.56-.7.97-.13-.13-.28-.25-.43-.35 0 0-1.91-1.26-1.91-1.28-.81-.56-1.5.63-.61 1.11 0-.02 1.89 1.28 1.89 1.28.46.31.77.97.77 1.36v.84c-.43.24-.78.36-1.24.36-.67 0-1.31-.29-1.77-.79l-.07-.08-.09-.05a2.425 2.425 0 01-1.31-2.16c0-.38.09-.74.25-1.08l.15-.31-.14-.33c-.17-.34-.25-.7-.25-1.08 0-1.13.76-2.1 1.85-2.37l.39-.09.07-.43a2.41 2.41 0 012.39-2.05c.19 0 .39.02.58.07l.4.1.22-.38A2.41 2.41 0 019.17 1.3c.55 0 1.08.19 1.5.53l-.44.45-.01-.01-.31.31c-.41.35-.92.53-1.11.5 0 0-.84-.13-.84-.14-.83-.15-1.09 1.08-.18 1.29.01 0 .84.14.84.14.03 0 .06 0 .09.01-.14.46-.18.96-.12 1.4 0 0 .21 1.24.19 1.23.13.65 1.32.44 1.16-.22 0-.01-.19-1.23-.19-1.23-.07-.48.15-1.19.45-1.5l.48-.5c.07-.06.13-.12.19-.18l.93-.95c.5-.23 1.04-.34 1.59-.34 1.93 0 3.57 1.4 3.89 3.34l.05.31.26.15a2.445 2.445 0 01.87 3.4z", - ], - prescription: [ - "M13.95 10.23c.16-.18.22-.22.46-.22h1.48c.25 0 .47.08.59.33.1.2.09.41-.05.66l-2.71 3.58L16.88 19c.13.21.16.46.03.69-.12.21-.34.31-.57.31H14.7c-.31 0-.56-.17-.7-.44l-1.9-2.67-1.93 2.68c-.15.27-.42.43-.73.43H7.98c-.25 0-.47-.08-.59-.33-.1-.2-.09-.41.05-.66l3.09-4.35L6.26 9H5v4.32c0 .41-.3.69-.7.69H2.7c-.41 0-.7-.28-.7-.69V.69c0-.41.3-.69.7-.69h4.42c.71 0 1.36.1 1.94.3.59.2 1.11.49 1.54.87.44.38.78.84 1.02 1.39.24.54.36 1.14.36 1.78 0 1.01-.28 1.88-.84 2.6-.43.54-1.35 1.29-2 1.59l3.09 3.94 1.72-2.24zM6.71 6.04c.71 0 1.45-.16 1.81-.46.33-.28.5-.69.5-1.25s-.17-.97-.5-1.25c-.35-.3-1.1-.46-1.81-.46h-1.7v3.42h1.7z", - ], - presentation: [ - "M19 1h-8c0-.55-.45-1-1-1S9 .45 9 1H1c-.55 0-1 .45-1 1s.45 1 1 1h1v11c0 .55.45 1 1 1h4.59L4.3 18.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L9 16.41V19c0 .55.45 1 1 1s1-.45 1-1v-2.59l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L12.41 15H17c.55 0 1-.45 1-1V3h1c.55 0 1-.45 1-1s-.45-1-1-1zm-3 12H4V3h12v10z", - ], - print: [ - "M14 16H6v-4H4v5c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-5h-2v4zm2-13c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v1h12V3zm3 2H1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h2v-3h14v3h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 4h-2V7h2v2z", - ], - projects: [ - "M18 4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v2h16V4zm-2-3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v1h12V1zm3 6H1c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-5 7c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-2h1v2h6v-2h1v2z", - ], - properties: [ - "M2 15c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm5-4h12c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1zM2 1C.9 1 0 1.9 0 3s.9 2 2 2 2-.9 2-2-.9-2-2-2zm17 8H7c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0 7H7c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - property: [ - "M3 5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm5-1h11c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM3 15c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm16 1H8c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm-1-8H9c-1.1 0-2 .9-2 2s.9 2 2 2h9c1.1 0 2-.9 2-2s-.9-2-2-2zM3 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z", - ], - "publish-function": [ - "M7.01 10.11c.35-.64.72-1.68 1.09-3.11l.8-3.03h.96l.24-.77h-.99c.28-1.11.66-1.92 1.12-2.43.28-.32.56-.48.83-.48.05 0 .1.02.13.05.03.03.05.07.05.12 0 .04-.04.13-.11.25-.08.12-.11.24-.11.35 0 .15.06.28.18.39.12.11.27.16.45.16.2 0 .36-.07.49-.2s.2-.31.2-.54c0-.26-.1-.47-.3-.63-.2-.16-.52-.24-.96-.24-.68 0-1.3.19-1.86.58-.55.38-1.08 1.02-1.58 1.91-.17.3-.34.5-.49.59-.15.08-.4.13-.74.12l-.23.77h.95L5.74 9.21c-.23.86-.39 1.39-.47 1.59-.12.29-.3.54-.54.75-.1.08-.21.12-.35.12-.04 0-.07-.01-.1-.03l-.03-.04c0-.02.03-.07.1-.13.07-.07.1-.17.1-.31 0-.15-.05-.28-.16-.38-.11-.1-.27-.15-.47-.15-.25 0-.44.07-.59.2-.15.12-.23.28-.23.46 0 .19.09.36.27.5.19.14.47.21.86.21.61 0 1.16-.15 1.63-.46.48-.31.89-.79 1.25-1.43zm3.7 1.18c-.18-.18-.43-.29-.71-.29s-.53.11-.71.29l-3 3a1.003 1.003 0 001.42 1.42L9 14.41V19c0 .55.45 1 1 1s1-.45 1-1v-4.59l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-3-3zm4.15-6.78c.17-.13.36-.2.55-.2.07 0 .2.03.39.08s.36.08.5.08c.2 0 .37-.07.5-.2.13-.14.2-.31.2-.52 0-.22-.07-.4-.2-.53s-.33-.2-.58-.2c-.22 0-.43.05-.63.15-.2.1-.45.32-.75.67-.23.25-.56.7-1.01 1.33a6.52 6.52 0 00-.91-2.15l-2.38.39-.05.25c.18-.03.33-.05.45-.05.24 0 .43.1.59.3.25.31.59 1.24 1.02 2.79-.34.44-.58.73-.7.87-.21.22-.38.36-.52.43-.1.05-.22.08-.35.08-.1 0-.26-.05-.49-.16a1.01 1.01 0 00-.42-.11c-.23 0-.42.07-.57.22-.17.14-.24.32-.24.55 0 .21.07.38.21.51.14.13.33.2.56.2.23 0 .44-.05.64-.14.2-.09.45-.29.75-.59s.72-.78 1.25-1.43c.2.62.38 1.07.53 1.35.15.28.32.49.52.61.19.12.44.19.73.19.28 0 .57-.1.86-.3.38-.25.77-.69 1.17-1.31l-.25-.14c-.27.37-.48.6-.61.69-.09.06-.19.09-.31.09-.14 0-.28-.09-.42-.26-.23-.29-.54-1.09-.93-2.4.37-.58.66-.96.9-1.14z", - ], - pulse: [ - "M19 10h-2.38L14.9 6.55h-.01c-.17-.32-.5-.55-.89-.55-.43 0-.79.28-.93.66h-.01l-2.75 7.57L7.98 1.82h-.02A.978.978 0 007 1c-.44 0-.8.29-.94.69h-.01L3.28 10H1c-.55 0-1 .45-1 1s.45 1 1 1h3c.44 0 .8-.29.94-.69h.01l1.78-5.34 2.29 12.21h.02c.08.46.47.82.96.82.43 0 .79-.28.93-.66h.01l3.21-8.82.96 1.92h.01c.16.33.49.56.88.56h3c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - rain: [ - "M4 10a3 3 0 111.065-5.806A5.001 5.001 0 0114.63 3.11 3.5 3.5 0 1115.5 10H4zm0 2a1 1 0 011 1v5a1 1 0 11-2 0v-5a1 1 0 011-1zm9 1a1 1 0 10-2 0v6a1 1 0 102 0v-6zm3-1a1 1 0 011 1v3a1 1 0 11-2 0v-3a1 1 0 011-1zm-7 1a1 1 0 10-2 0v3a1 1 0 102 0v-3z", - ], - random: [ - "M14.47 5h2.12L15.3 6.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-3-3a1.003 1.003 0 00-1.42 1.42L16.59 3H14c-.31 0-.57.15-.76.37l-.01-.01-2.93 3.52 1.3 1.56L14.47 5zm2.24 7.29a1.003 1.003 0 00-1.42 1.42l1.3 1.29h-2.12L4.77 3.36l-.01.01A.998.998 0 004 3H1c-.55 0-1 .45-1 1s.45 1 1 1h2.53l9.7 11.64.01-.01c.19.22.45.37.76.37h2.59l-1.29 1.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-3-3zM3.53 15H1c-.55 0-1 .45-1 1s.45 1 1 1h3c.31 0 .57-.15.76-.37l.01.01 2.93-3.52-1.3-1.56L3.53 15z", - ], - record: ["M10 3a7 7 0 100 14 7 7 0 100-14z"], - redo: [ - "M19.71 5.29l-4-4a1.003 1.003 0 00-1.42 1.42L16.59 5H6c-3.31 0-6 2.69-6 6s2.69 6 6 6h5v-2H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h10.59L14.3 9.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71zM15 14c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", - ], - refresh: [ - "M19 1c-.55 0-1 .45-1 1v2.06C16.18 1.61 13.29 0 10 0 4.48 0 0 4.48 0 10c0 .55.45 1 1 1s1-.45 1-1c0-4.42 3.58-8 8-8 2.52 0 4.76 1.18 6.22 3H15c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 8c-.55 0-1 .45-1 1 0 4.42-3.58 8-8 8-2.52 0-4.76-1.18-6.22-3H5c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1v-2.06C3.82 18.39 6.71 20 10 20c5.52 0 10-4.48 10-10 0-.55-.45-1-1-1z", - ], - "regression-chart": [ - "M19 16H3.1L19.31 3.39l-.61-.79L2 15.59V3c0-.55-.45-1-1-1s-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm-9-9c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-5 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm10-2c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2zm-5 4c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2z", - ], - remove: [ - "M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm5-9H5c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "remove-column": [ - "M19 0H5c-.55 0-1 .45-1 1v4h2V2h5v16H6v-3H4v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18h-5V2h5v16zM6.29 13.71a1.003 1.003 0 001.42-1.42L5.41 10 7.7 7.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L4 8.59l-2.29-2.3A1.003 1.003 0 00.29 7.71L2.59 10 .3 12.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L4 11.41l2.29 2.3z", - ], - "remove-column-left": [ - "M4 11h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM19 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-7 18H2V2h10v16zm6 0h-5V2h5v16z", - ], - "remove-column-right": [ - "M19 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM7 18H2V2h5v16zm11 0H8V2h10v16zm-8-7h6c.55 0 1-.45 1-1s-.45-1-1-1h-6c-.55 0-1 .45-1 1s.45 1 1 1z", - ], - "remove-row-bottom": [ - "M7 14h6c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1zM19 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18H2V8h16v10zm0-11H2V2h16v5z", - ], - "remove-row-top": [ - "M7 8h6c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1zm12-8H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18H2v-5h16v5zm0-6H2V2h16v10z", - ], - repeat: [ - "M14 6c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1v2.05C16.18 1.6 13.29 0 10 0 4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10c0-.55-.45-1-1-1s-1 .45-1 1c0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c2.53 0 4.77 1.17 6.24 3H15c-.55 0-1 .45-1 1z", - ], - reset: [ - "M6 6c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1s1 .45 1 1v2.05C3.82 1.6 6.71 0 10 0c5.52 0 10 4.48 10 10s-4.48 10-10 10S0 15.52 0 10c0-.55.45-1 1-1s1 .45 1 1c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8C7.47 2 5.23 3.17 3.76 5H5c.55 0 1 .45 1 1z", - ], - resolve: [ - "M8.7 4.7C7.9 4.2 7 4 6 4c-3.3 0-6 2.7-6 6s2.7 6 6 6c1 0 1.9-.2 2.7-.7C7.3 14 6.5 12.1 6.5 10s.9-4 2.2-5.3zM14 4c-1 0-1.9.2-2.7.7 1.4 1.4 2.2 3.2 2.2 5.3s-.9 4-2.2 5.3c.8.5 1.7.7 2.7.7 3.3 0 6-2.7 6-6s-2.7-6-6-6zm-4 1.5C8.8 6.7 8 8.2 8 10s.8 3.3 2 4.4c1.2-1.1 2-2.7 2-4.5s-.8-3.3-2-4.4z", - ], - rig: [ - "M7 4.2C7 5.75 8.34 7 10 7s3-1.46 3-2.8C13 1.45 10.94 0 10 0H6c0 2.74 3.76 1.96 1 4.2zm11.71 14.09L13 12.59V9.01c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v3.58l-5.71 5.7a1.003 1.003 0 001.42 1.42L7 15.42V19c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3.58l4.29 4.29a1.003 1.003 0 001.42-1.42zM10.21 8c.01 0 .01.01 0 0 .01.01.01 0 0 0z", - ], - "right-join": [ - "M8.7 4.7C7.4 6 6.5 7.9 6.5 10s.8 4 2.2 5.3c-.8.5-1.7.7-2.7.7-3.3 0-6-2.7-6-6s2.7-6 6-6c1 0 1.9.2 2.7.7zm-3.34 9.25c-.55-1.2-.86-2.54-.86-3.95s.31-2.75.86-3.95a4.001 4.001 0 000 7.9zM14 4c3.3 0 6 2.7 6 6s-2.7 6-6 6c-1 0-1.9-.2-2.7-.7 1.3-1.3 2.2-3.2 2.2-5.3s-.8-3.9-2.2-5.3C12.1 4.2 13 4 14 4zm-4 1.5C8.8 6.7 8 8.2 8 10s.8 3.3 2 4.4c1.2-1.1 2-2.7 2-4.5s-.8-3.3-2-4.4z", - ], - ring: [ - "M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", - ], - rocket: [ - "M7 7.5c0-3 1.857-6.25 3-7.5 1.143 1.25 3 4.5 3 7.5s-.714 6.25-1 7.5H8c-.286-1.25-1-4.5-1-7.5zm6.84 2.5c-.139 1.62-.47 3.405-.84 5.01l4 .99-1-4-2.16-2zm-4.832 6C9 16.139 9 16.284 9 16.429 9 17.143 9 17.5 10 20c1-2.5 1-2.857 1-3.571 0-.145 0-.29-.008-.429H9.008zM7 15.011c-.37-1.605-.701-3.39-.84-5.011L4 12l-1 4 4-.989zM10 5a1 1 0 100 2 1 1 0 000-2z", - ], - "rocket-slant": [ - "M10 5c2.121-2.121 6.308-2.924 8-3-.076 1.692-.879 5.879-3 8-1.192 1.192-2.543 1.823-3.748 2.384-.442.207-.865.404-1.252.616-.203.111-.597.302-.986.49-.444.215-.88.426-1.014.51l-2-2c.158-.252 1-2 1-2s1.37-3.37 3-5zm5 1a1 1 0 11-2 0 1 1 0 012 0zM3 17s0-2 2-4l2 2c-2 2-4 2-4 2zm11-2l-4 4-1.298-4.233c1.033-.56 1.881-.962 2.643-1.322 1.275-.604 2.307-1.092 3.554-2.015L14 15zM1 10l4-4 3.557-.899c-.923 1.247-1.412 2.28-2.015 3.554-.36.762-.762 1.61-1.322 2.643L1 10z", - ], - "rotate-document": [ - "M8.71 6.29A.997.997 0 008 6H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-8c0-.28-.11-.53-.29-.71l-4-4zM11 18H4V8h3v3c0 .55.45 1 1 1h3v6zm3-16h-1.59l.29-.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-2 2C9.11 2.47 9 2.72 9 3c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42l-.3-.29H14c1.1 0 2 .9 2 2v3c0 .55.45 1 1 1s1-.45 1-1V6c0-2.21-1.79-4-4-4z", - ], - "rotate-page": [ - "M14 2h-1.59l.29-.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-2 2C9.11 2.47 9 2.72 9 3c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42l-.3-.29H14c1.1 0 2 .9 2 2v3c0 .55.45 1 1 1s1-.45 1-1V6c0-2.21-1.79-4-4-4zm-2 5H3c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 11H4V9h7v9z", - ], - route: [ - "M14.028 6.016c.146.275.31.57.485.872.304.524.628 1.047.952 1.545l.118.178-.208-.006-.577-.005c-2.093.004-2.841.303-2.841.895 0 .069.271.248 1.245.567l1.008.313c2.671.831 3.99 1.827 3.99 4.167 0 2.76-1.928 4.059-4.832 4.376-.782.085-1.52.098-2.452.066l-1.15-.046H6.221l.535-.811a67.46 67.46 0 001.122-1.787h2.04l.686.03c1.028.046 1.77.043 2.523-.039 1.832-.2 2.673-.767 2.673-1.789 0-.69-.483-1.09-1.992-1.585l-.83-.257c-1.192-.364-2.037-.7-2.59-1.165.399-1 .612-1.844.612-2.538a6.018 6.018 0 00-.382-2.098c.745-.573 1.884-.822 3.41-.883zM5 4.2c2.648 0 4.791 2.151 4.8 4.797C9.8 11.652 5 18.6 5 18.6l-.5-.744C3.273 15.993.2 11.121.2 8.997A4.802 4.802 0 015 4.2zm0 2.4a2.4 2.4 0 10.002 4.802A2.4 2.4 0 005 6.6zM17 .333a2.671 2.671 0 012.667 2.665C19.667 4.473 17 8.333 17 8.333l-.391-.587c-.741-1.137-2.276-3.629-2.276-4.748A2.668 2.668 0 0117 .333z", - ], - satellite: [ - "M9 18c.6 0 1 .4 1 1s-.4 1-1 1c-5 0-9-4-9-9 0-.6.4-1 1-1s1 .4 1 1c0 3.9 3.1 7 7 7zm0-4c.6 0 1 .4 1 1s-.4 1-1 1c-2.8 0-5-2.2-5-5 0-.6.4-1 1-1s1 .4 1 1c0 1.7 1.3 3 3 3zm5.7-3.7c.4-.4 1-.4 1.4 0l3.6 3.6c.4.4.4 1 0 1.4l-1.4 1.4c-.4.4-1 .4-1.4 0l-3.6-3.6c-.4-.4-.4-1 0-1.4l1.4-1.4zM4.7.3c.4-.4 1-.4 1.4 0l3.6 3.6c.4.4.4 1 0 1.4L8.3 6.7c-.4.4-1 .4-1.4 0L3.3 3.1c-.4-.4-.4-1 0-1.4L4.7.3zm11.1 1c.4-.4 1-.4 1.4 0l1.6 1.6c.4.4.4 1 0 1.4l-6.5 6.5c-.4.4-1 .4-1.4 0L9.3 9.2c-.4-.4-.4-1 0-1.4l6.5-6.5zM9 12c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1z", - ], - saved: [ - "M12 0H4c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h13c.55 0 1-.45 1-1V6l-6-6zm4 18H5V2h6v5h5v11zm-8.29-6.71a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29.32 0 .59-.16.77-.38l.01.01 4-5-.01-.01c.14-.18.23-.38.23-.62 0-.55-.45-1-1-1-.32 0-.59.16-.77.38l-.01-.01-3.3 4.13-2.21-2.21z", - ], - "scatter-plot": [ - "M9 9c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm5 2c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4-5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1 10H2V3c0-.55-.45-1-1-1s-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zM5 15c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z", - ], - search: [ - "M19.56 17.44l-4.94-4.94A8.004 8.004 0 0016 8c0-4.42-3.58-8-8-8S0 3.58 0 8s3.58 8 8 8c1.67 0 3.21-.51 4.5-1.38l4.94 4.94a1.498 1.498 0 102.12-2.12zM8 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z", - ], - "search-around": [ - "M9.9 6.9a3 3 0 100 6 3 3 0 100-6zM3 14c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3zm0 5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM3 0C1.3 0 0 1.3 0 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3zm0 5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM17 14c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3zm0 5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM17 0c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3zm0 5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM10 10L5 5", - "M5.379 4.671l5.02 5.02-.707.708-5.02-5.02zM10 10l5-5", - "M14.621 4.671l.707.708-5.02 5.02-.707-.707z", - "M10 10l5 5M10.379 9.671l5.02 5.02-.707.708-5.02-5.02z", - "M10 10l-5 5M9.621 9.671l.707.708-5.02 5.02-.707-.707z", - ], - "search-template": [ - "M13 8H5c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1zm0 3H5c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1zm0-6H5c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1zm6.56 12.44l-3.23-3.23A8.939 8.939 0 0018 9a9 9 0 10-9 9c1.94 0 3.74-.62 5.21-1.67l3.23 3.23a1.498 1.498 0 102.12-2.12zM9 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z", - ], - "search-text": [ - "M19.56 17.44l-3.23-3.23A8.939 8.939 0 0018 9a9 9 0 10-9 9c1.94 0 3.74-.62 5.21-1.67l3.23 3.23a1.498 1.498 0 102.12-2.12zM9 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm3.5-11h-7c-.28 0-.5.22-.5.5v2c0 .28.22.5.5.5s.5-.22.5-.5V7h2v6h-.5c-.28 0-.5.22-.5.5s.22.5.5.5h3c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H10V7h2v.5c0 .28.22.5.5.5s.5-.22.5-.5v-2c0-.28-.22-.5-.5-.5z", - ], - "segmented-control": [ - "M19 5H1c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 8h-8V7h8v6z", - ], - select: [ - "M19.71 18.29l-4.25-4.25L20 12.91 9.93 9.33c.04-.1.07-.21.07-.33V3c0-.55-.45-1-1-1H4V1c0-.55-.45-1-1-1S2 .45 2 1v1H1c-.55 0-1 .45-1 1s.45 1 1 1h1v5c0 .55.45 1 1 1h6c.12 0 .23-.03.34-.07L12.91 20l1.14-4.54 4.25 4.25c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71zM8 8H4V4h4v4z", - ], - selection: [ - "M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z", - "M10 6a4 4 0 100 8 4 4 0 100-8z", - ], - "send-message": [ - "M1.754.135L19.393 9.06c.57.288.775.943.458 1.462-.107.176-.266.32-.458.418l-17.64 8.925c-.57.288-1.288.1-1.604-.418C.05 19.287 0 19.183 0 19v-7l11-2L0 8V1.075C0 .481.529 0 1.18 0c.201 0 .399.047.574.135z", - ], - "send-to": [ - "M19 0h-5c-.6 0-1 .4-1 1s.4 1 1 1h2.6l-4.3 4.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3L18 3.4V6c0 .5.5 1 1 1s1-.5 1-1V1c0-.6-.5-1-1-1zm0 9c-1 0-1.9-.5-2.5-1.3l-1.4 1.4c-.5.6-1.3.9-2.1.9-1.7 0-3-1.3-3-3 0-.8.3-1.6.9-2.1l1.4-1.4C11.5 2.9 11 2 11 1c0-.3.1-.6.2-.9-.4-.1-.8-.1-1.2-.1C4.5 0 0 4.5 0 10s4.5 10 10 10 10-4.5 10-10c0-.4 0-.8-.1-1.2-.3.1-.6.2-.9.2z", - ], - "send-to-graph": [ - "M8 11H3c-.55 0-1 .45-1 1s.45 1 1 1h2.59L.3 18.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L7 14.41V17c0 .55.45 1 1 1s1-.45 1-1v-5c0-.55-.45-1-1-1zm10 2c-.53 0-1.01.21-1.37.55L11.9 10.6c.06-.19.1-.39.1-.6 0-.21-.04-.41-.1-.6l4.72-2.95c.37.34.85.55 1.38.55 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .21.04.41.1.6l-4.73 2.96c-.24-.23-.54-.4-.87-.48V3.93c.86-.22 1.5-1 1.5-1.93 0-1.1-.9-2-2-2S8 .9 8 2c0 .93.64 1.71 1.5 1.93v4.14c-.33.09-.63.26-.87.48L7.6 7.91 5.42 6.55 3.9 5.6c.06-.19.1-.39.1-.6 0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2c.53 0 1.01-.21 1.37-.55L9 9.96V10h.06L12 11.84l.4.25 1.51.94 2.19 1.37c-.06.19-.1.39-.1.6 0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2zm-7-2.96l-.06-.04H11v.04z", - ], - "send-to-map": [ - "M8 11H3c-.55 0-1 .45-1 1s.45 1 1 1h2.59L.3 18.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L7 14.41V17c0 .55.45 1 1 1s1-.45 1-1v-5c0-.55-.45-1-1-1zm11.54-6.82l.01-.02-6-4-.01.02C13.39.08 13.21 0 13 0s-.39.08-.54.18l-.01-.02L7 3.8 1.55.17l-.01.01A.969.969 0 001 0C.45 0 0 .45 0 1v9c0-.55.45-1 1-1h1V2.87l4 2.67V9h2V5.54l4-2.67v11.6l-1 .67v2.4l2-1.33 5.45 3.63.01-.02c.15.1.33.18.54.18.55 0 1-.45 1-1V5c0-.35-.19-.64-.46-.82zM18 17.13l-4-2.67V2.87l4 2.67v11.59z", - ], - "series-add": [ - "M13.29 9.29c.3.62.8 1.12 1.42 1.42l-3 3c-.18.18-.43.29-.71.29s-.53-.11-.71-.3L7 10.41l-5 5V17h17c.55 0 1 .45 1 1s-.45 1-1 1H1a.998.998 0 01-1-1V4c0-.55.45-1 1-1s1 .45 1 1v8.59l4.29-4.3C6.47 8.11 6.72 8 7 8s.53.11.71.29l3.29 3.3 2.29-2.3zM12 5c0-.5.4-1 1-1h2V2c0-.6.4-1 1-1 .5 0 1 .4 1 1v2h2c.5 0 1 .4 1 1s-.5 1-1 1h-2v2c0 .6-.5 1-1 1-.6 0-1-.4-1-1V6h-2c-.6 0-1-.4-1-1z", - ], - "series-configuration": [ - "M11.91 10.67c.52.45 1.13.8 1.8 1.03l-2.01 2.01c-.18.18-.43.29-.71.29-.28 0-.53-.11-.71-.3L7 10.41l-5 5V17h16.99c.55 0 1 .45 1 1s-.45 1-1 1H1a.998.998 0 01-1-1V4c0-.55.45-1 1-1s1 .45 1 1v8.59l4.29-4.3C6.47 8.11 6.72 8 7 8c.28 0 .53.11.71.29l3.29 3.3.91-.92zM18.5 4.6h1.04c.25 0 .45.2.46.44v.9c0 .25-.2.45-.45.45h-1.04c-.07.22-.16.42-.27.62l.73.73c.17.17.17.44 0 .61l-.61.61c-.17.17-.44.17-.61 0l-.73-.73c-.2.11-.4.2-.62.26v1.05c0 .25-.2.45-.45.45h-.9c-.25 0-.45-.2-.45-.45V8.51c-.21-.06-.4-.15-.58-.25l-.76.77c-.17.17-.46.17-.64 0l-.64-.64a.465.465 0 010-.64l.76-.77c-.1-.19-.19-.38-.25-.59h-1.04c-.25 0-.45-.2-.45-.45v-.9c0-.25.2-.45.45-.45h1.04c.07-.22.16-.42.27-.61l-.73-.73a.429.429 0 010-.61l.61-.61c.17-.17.44-.17.61 0l.73.73c.2-.11.4-.2.62-.26V1.45a.44.44 0 01.44-.45h.9c.25 0 .45.2.45.45V2.5c.21.06.4.15.58.25l.76-.77c.17-.17.46-.17.64 0l.64.64c.17.17.17.46 0 .64l-.76.77c.1.17.19.36.25.57zm-4.69.9c0 .93.75 1.69 1.69 1.69.93 0 1.69-.75 1.69-1.69s-.75-1.69-1.69-1.69-1.69.76-1.69 1.69z", - ], - "series-derived": [ - "M18.82 6.58c-.03.05-.07.09-.11.13 0 0 0-.01-.01-.01l-2 2c-.2.2-.4.3-.7.3-.6 0-1-.4-1-1 0-.3.1-.5.3-.7L16.6 6H11c-.6 0-1-.4-1-1s.4-1 1-1h5.6l-1.3-1.3c-.2-.2-.3-.4-.3-.7 0-.6.4-1 1-1 .3 0 .5.1.7.3l3 3c.2.2.3.4.3.7s-.1.5-.3.7l-.88.88zm-5.53 2.71c.3.62.8 1.12 1.42 1.42l-3 3c-.18.18-.43.29-.71.29s-.53-.11-.71-.3L7 10.41l-5 5V17h17c.55 0 1 .45 1 1s-.45 1-1 1H1a.998.998 0 01-1-1V4c0-.55.45-1 1-1s1 .45 1 1v8.59l4.29-4.3C6.47 8.11 6.72 8 7 8s.53.11.71.29l3.29 3.3 2.29-2.3z", - ], - "series-filtered": [ - "M12.14 10.45c.21.67.65 1.23 1.22 1.61l-1.65 1.65c-.18.18-.43.29-.71.29s-.53-.11-.71-.3L7 10.41l-5 5V17h17c.55 0 1 .45 1 1s-.45 1-1 1H1a.998.998 0 01-1-1V4c0-.55.45-1 1-1s1 .45 1 1v8.59l4.29-4.3C6.47 8.11 6.72 8 7 8s.53.11.71.29l3.29 3.3 1.14-1.14zM19.35 1a.642.642 0 01.46 1.1l-3.03 3.03v2.95c0 .18-.07.34-.19.46l-1.28 1.29c-.11.1-.27.17-.45.17-.35 0-.64-.29-.64-.64V5.13L11.19 2.1a.642.642 0 01.45-1.1h7.71z", - ], - "series-search": [ - "M11.28 11.31l-.28.28-3.29-3.3C7.53 8.11 7.28 8 7 8s-.53.11-.71.29L2 12.59V4c0-.55-.45-1-1-1s-1 .45-1 1v14a.998.998 0 001 1h18c.55 0 1-.45 1-1s-.45-1-1-1H2v-1.59l5-5 3.29 3.29c.18.19.43.3.71.3s.53-.11.71-.29l2.09-2.09c-.17.02-.34.02-.51.02-.7 0-1.38-.12-2.01-.33zm-.93-6c0-1.62 1.31-2.93 2.93-2.93s2.93 1.31 2.93 2.93-1.31 2.93-2.93 2.93-2.93-1.31-2.93-2.93zm6.47 2.43c.11-.17.21-.33.29-.51.01-.03.03-.06.04-.09.08-.18.16-.35.21-.54.06-.2.1-.38.14-.58.01-.05.01-.09.02-.14.03-.2.05-.39.05-.6 0-2.37-1.93-4.3-4.3-4.3-2.37.01-4.3 1.93-4.3 4.31s1.93 4.3 4.3 4.3c.21 0 .4-.02.6-.05.04 0 .09-.01.14-.02.2-.03.38-.08.57-.14.2-.06.37-.14.55-.21.03-.01.06-.03.09-.04.18-.09.34-.19.51-.29l2.87 2.87c.14.14.33.22.56.22.43 0 .78-.35.78-.78a.938.938 0 00-.23-.56l-2.89-2.85z", - ], - settings: [ - "M4 1c0-.55-.45-1-1-1S2 .45 2 1v5h2V1zM2 19c0 .55.45 1 1 1s1-.45 1-1v-6H2v6zm9-18c0-.55-.45-1-1-1S9 .45 9 1v8h2V1zm7 0c0-.55-.45-1-1-1s-1 .45-1 1v3h2V1zM9 19c0 .55.45 1 1 1s1-.45 1-1v-3H9v3zm9-14h-2c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-2 14c0 .55.45 1 1 1s1-.45 1-1v-8h-2v8zM4 7H2c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm7 3H9c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1z", - ], - shapes: [ - "M7.88 11.12a.958.958 0 011.277.33l3.719 6.207c.081.136.124.29.124.447 0 .495-.419.896-.936.896H4.936a.969.969 0 01-.436-.103.878.878 0 01-.392-1.21l3.409-6.208a.915.915 0 01.362-.36zM15 5a4 4 0 110 8 4 4 0 010-8zM8 1a1 1 0 011 1v6a1 1 0 01-1 1H2a1 1 0 01-1-1V2a1 1 0 011-1h6z", - ], - share: [ - "M15 18H2V5h8.76l2-2H1c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1h15c.55 0 1-.45 1-1V7.24l-2 2V18zm4-18h-7c-.55 0-1 .45-1 1s.45 1 1 1h4.59l-7.3 7.29a1.003 1.003 0 001.42 1.42L18 3.41V8c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - "shared-filter": [ - "M13.917 17.209c1.01.454 2.543.928 2.873 1.643.31.722.186 1.148.186 1.148H6.026s-.13-.426.186-1.148 1.842-1.203 2.86-1.65c1.017-.447.914-.722.948-1.093 0-.048.007-.097.007-.145a3.067 3.067 0 01-.839-1.237l-.007-.007c0-.007-.006-.014-.006-.02a1.757 1.757 0 01-.11-.337c-.234-.042-.372-.296-.426-.537a1.045 1.045 0 01-.138-.598c.034-.35.179-.509.337-.57v-.056c0-.44.034-1.065.117-1.478a2.508 2.508 0 01.962-1.623c.426-.33 1.038-.501 1.58-.501.544 0 1.155.172 1.588.502a2.496 2.496 0 01.963 1.622c.075.413.117 1.045.117 1.478v.062c.15.062.288.22.323.564.02.268-.083.502-.138.598-.048.234-.185.488-.42.537a2.635 2.635 0 01-.116.364 3.094 3.094 0 01-.818 1.224c0 .055 0 .11.007.158.034.378-.103.653.914 1.1z", - "M14.976 16.57c-.24-.099-.455-.186-.65-.273l-.007-.004a3.801 3.801 0 01-.194-.091c.224-.288.41-.609.554-.946l.001-.002.013-.033c.018-.043.036-.087.052-.13l.011-.027.016-.04c.105-.092.19-.19.256-.284.129-.184.213-.38.265-.563.105-.226.225-.592.192-1.026l-.001-.011-.002-.011a1.854 1.854 0 00-.325-.91 9.924 9.924 0 00-.12-1.246 3.09 3.09 0 00-.106-.475l-.001-.006a3.543 3.543 0 00-.763-1.353c.27-.092.56-.139.83-.139.495 0 1.05.156 1.444.456a2.269 2.269 0 01.875 1.475c.069.375.106.95.106 1.344v.056c.138.056.263.2.294.513.019.244-.075.456-.125.543-.044.213-.169.444-.381.488-.025.1-.056.206-.094.3a2.815 2.815 0 01-.756 1.144c0 .05 0 .1.006.144.004.043.006.086.007.127.01.283.018.518.824.872.192.087.404.173.623.263.83.34 1.752.717 1.99 1.231.28.657.168 1.044.168 1.044h-2.081a3.864 3.864 0 00-.188-.542l-.005-.013-.006-.012c-.183-.397-.491-.681-.76-.88a5.614 5.614 0 00-.896-.522 17.36 17.36 0 00-.916-.4l-.15-.061zM14 1c.55 0 1 .45 1 1 0 .28-.11.53-.29.7L10 7.41v.897a3.182 3.182 0 00-.69.4 3.508 3.508 0 00-1.343 2.259c-.07.37-.107.836-.122 1.237a1.836 1.836 0 00-.339.926c-.046.458.09.84.195 1.06.053.178.138.376.27.56.055.08.125.162.21.242v.143l.053.052L6.71 16.71A1.003 1.003 0 015 16V7.41L.29 2.71A1.003 1.003 0 011 1h13z", - "M9.059 14.361c-.23-.044-.366-.296-.42-.535a1.045 1.045 0 01-.138-.598c.034-.35.179-.509.337-.57v-.056c0-.44.034-1.065.117-1.478A2.508 2.508 0 0110 9.441V13c0 .28-.11.53-.29.71l-.651.651z", - ], - shield: [ - "M10 20c6-3.81 9-9.048 9-15.714-2 0-5-1.429-9-4.286-4 2.857-7 4.286-9 4.286C1 10.952 4 16.19 10 20zm0-17.348c2.577 1.734 4.776 2.88 6.667 3.419-.44 4.627-2.636 8.353-6.667 11.297V2.652z", - ], - ship: [ - "M6.84.804L6.5 2.5h-3a1 1 0 00-1 1v4.893l-1.58.451a.99.99 0 00-.691 1.192c.46 1.82 1.163 4.356 1.701 5.571-.218.012-.445.018-.68.018a.625.625 0 100 1.25c2.583 0 4.268-.68 5.202-1.146.687.466 1.88 1.146 3.548 1.146 1.65 0 2.837-.666 3.528-1.132l.005.003c.244.131.6.3 1.07.468.938.335 2.321.661 4.147.661a.625.625 0 100-1.25c-.323 0-.63-.011-.922-.031a.996.996 0 00.184-.334l1.67-5.168a1 1 0 00-.677-1.27l-1.505-.43V3.5a1 1 0 00-1-1h-3L13.16.804A1 1 0 0012.18 0H7.82a1 1 0 00-.98.804zM5 7.679l3.75-1.072V5H5v2.679zm6.25-1.072L15 7.68V5h-3.75v1.607zM6.205 16.95a.625.625 0 01.658.042c.569.407 1.597 1.134 3.137 1.134s2.568-.727 3.137-1.134a.625.625 0 01.724-.001l.007.005.045.029c.044.027.114.069.21.12.194.104.493.247.9.392.811.29 2.053.589 3.727.589a.625.625 0 110 1.25c-1.826 0-3.21-.326-4.148-.661a7.894 7.894 0 01-1.069-.468l-.005-.003c-.691.466-1.878 1.132-3.528 1.132-1.667 0-2.861-.68-3.548-1.146-.934.467-2.619 1.146-5.202 1.146a.625.625 0 110-1.25c2.66 0 4.23-.787 4.955-1.176z", - ], - shop: [ - "M17.94 3.63c-.01-.02-.01-.03-.02-.04l-.03-.09h-.01c-.18-.3-.49-.5-.86-.5h-14c-.42 0-.77.25-.92.61L0 8.5h.02a2.5 2.5 0 005 0 2.5 2.5 0 005 0 2.5 2.5 0 005 0 2.5 2.5 0 005 0l-2.08-4.87zM3.02 2h14c.55 0 1-.45 1-1s-.45-1-1-1h-14c-.55 0-1 .45-1 1s.44 1 1 1zm13 14h-12v-4h-2v7c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-7h-2v4z", - ], - "shopping-cart": [ - "M18 14H8.72l-.67-2H17c.44 0 .8-.29.94-.69h.01l2-6h-.01c.03-.1.06-.2.06-.31 0-.55-.45-1-1-1H5.39l-.44-1.32h-.01C4.8 2.29 4.44 2 4 2H1c-.55 0-1 .45-1 1s.45 1 1 1h2.28l3.33 10H5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2h9c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2zM6.05 6h11.56l-1.33 4H7.39L6.05 6z", - ], - "signal-search": [ - "M7.15 10.33c.888.8 1.999 1.36 3.228 1.574l2.326 6.98a.846.846 0 01-.535 1.07.844.844 0 01-1.072-.535l-1.225-3.671H7.125L5.9 19.419a.85.85 0 01-1.072.536.85.85 0 01-.536-1.071l2.857-8.555zm1.353 1.305l-.808 2.413h1.607l-.8-2.413zM5 5.5c0 .76.13 1.49.37 2.17-.496 1.056-.313 2.356.704 3.29.385.353.404.94.038 1.311a.982.982 0 01-1.356.038c-2.183-2.01-2-5.125.01-6.94a.95.95 0 01.24-.156A6.421 6.421 0 005 5.5z", - "M3.874 13.185c-1.346-.918-2.187-2.67-2.187-4.34 0-1.752.757-3.254 2.187-4.339.42-.25.42-.834.168-1.168-.252-.418-.84-.418-1.177-.167C1.014 4.59-.08 6.509.005 8.846c.084 2.253 1.177 4.423 2.86 5.675.168.083.336.166.504.166.253 0 .505-.083.673-.333.337-.418.253-.918-.168-1.169zM12.246 12.309a.98.98 0 01-1.354-.037.917.917 0 01-.206-.324 6.54 6.54 0 001.959-.049 5.125 5.125 0 01-.399.41zM14.631 11.476l1.228 1.229a6.6 6.6 0 01-1.723 1.816c-.169.083-.337.166-.505.166-.253 0-.505-.083-.673-.333-.337-.418-.253-.918.168-1.169.62-.422 1.133-1.022 1.505-1.709z", - "M11.5 0C14.54 0 17 2.46 17 5.5c0 .26-.02.51-.06.75l-.03.17c-.04.25-.1.49-.17.73v.01c-.08.24-.17.47-.28.69-.01.04-.03.07-.05.11-.11.23-.24.44-.38.65l3.68 3.68A1.003 1.003 0 0119 14c-.28 0-.53-.11-.7-.29l-3.68-3.68c-.21.14-.42.27-.65.38-.04.01-.07.03-.11.05-.22.11-.45.2-.69.28h-.01c-.24.07-.48.13-.73.17l-.17.03c-.25.04-.5.06-.76.06C8.46 11 6 8.54 6 5.5S8.46 0 11.5 0zm0 1.5c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z", - ], - "sim-card": [ - "M16.71 5.29l-5-5A.997.997 0 0011 0H4c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.28-.11-.53-.29-.71zM9 7h2v3H9V7zM6 7h2v3H6V7zm2 11H6v-3h2v3zm3 0H9v-3h2v3zm3 0h-2v-3h2v3zm0-4H6v-3h8v3zm0-4h-2V7h2v3z", - ], - slash: [ - "M12 2c-.46 0-.85.32-.97.74L7.04 16.7c-.02.1-.04.2-.04.3 0 .55.45 1 1 1 .46 0 .85-.32.97-.74L12.96 3.3c.02-.1.04-.2.04-.3 0-.55-.45-1-1-1z", - ], - "small-cross": [ - "M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z", - ], - "small-minus": [ - "M14 9H6c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "small-plus": [ - "M14 9h-3V6c0-.55-.45-1-1-1s-1 .45-1 1v3H6c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "small-square": [ - "M5 5v10h10V5H5zM4 3a1 1 0 00-1 1v12a1 1 0 001 1h12a1 1 0 001-1V4a1 1 0 00-1-1H4z", - ], - "small-tick": [ - "M15 5c-.28 0-.53.11-.71.29L8 11.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l7-7A1.003 1.003 0 0015 5z", - ], - snowflake: [ - "M11 11.776v2.81l2.31 2.242a.987.987 0 010 1.415c-.399.39-1.044.39-1.442 0L11 17.414V19a.99.99 0 01-.996 1A.996.996 0 019 19v-1.636l-.912.879c-.398.39-1.043.39-1.441 0a.987.987 0 010-1.415L9 14.536v-2.79l-2.548 1.435-.837 3.063c-.146.534-.705.85-1.248.707a.998.998 0 01-.721-1.224l.309-1.132-1.4.793a1.03 1.03 0 01-1.393-.366.99.99 0 01.373-1.366l1.445-.818-1.224-.322a.998.998 0 01-.72-1.225c.145-.533.704-.85 1.248-.707l3.193.84 2.462-1.395-2.532-1.434-3.123.82a1.022 1.022 0 01-1.249-.706.998.998 0 01.721-1.225L2.91 7.18l-1.4-.793a.99.99 0 01-.373-1.366 1.03 1.03 0 011.392-.366l1.445.818-.328-1.2a.998.998 0 01.72-1.225 1.022 1.022 0 011.25.707l.855 3.132L9 8.311V5.414L6.647 3.121a.987.987 0 010-1.414 1.033 1.033 0 011.441 0L9 2.586V1c0-.552.44-1 1.004-1A.99.99 0 0111 1l-.007 1.536.875-.829a1.033 1.033 0 011.441 0 .987.987 0 010 1.414L11 5.364v2.918l2.53-1.42.855-3.131c.146-.534.705-.85 1.249-.707a.998.998 0 01.72 1.224l-.327 1.2 1.4-.792a1.03 1.03 0 011.392.366.99.99 0 01-.373 1.366l-1.355.768 1.153.303a.998.998 0 01.721 1.225c-.146.533-.705.85-1.249.707l-3.123-.821-2.576 1.459 2.506 1.42 3.193-.84a1.022 1.022 0 011.249.707.998.998 0 01-.72 1.225l-1.224.322 1.4.793a.99.99 0 01.373 1.366 1.03 1.03 0 01-1.393.366l-1.356-.768.31 1.132a.998.998 0 01-.721 1.224 1.022 1.022 0 01-1.249-.707l-.837-3.063L11 11.776z", - ], - "social-media": [ - "M11.5 5c.8 0 1.6-.4 2-1 2 1.2 3.3 3.3 3.5 5.7 0 .5.5.9 1 .9.6 0 1-.5 1-1v-.1c-.2-3.3-2.2-6.2-5.1-7.6C13.7.8 12.7 0 11.5 0 10.1 0 9 1.1 9 2.5S10.1 5 11.5 5zm5 7c-1.4 0-2.5 1.1-2.5 2.5 0 .4.1.7.2 1.1-1.1.9-2.6 1.4-4.2 1.4-1.9 0-3.6-.8-4.9-2-.2-.2-.5-.4-.8-.4-.5 0-1 .5-1 1 0 .3.1.5.3.7C5.3 18 7.5 19 10 19c2.2 0 4.2-.8 5.8-2.1.2.1.5.1.7.1 1.4 0 2.5-1.1 2.5-2.5S17.9 12 16.5 12zM5 10.5c0-1.1-.7-2.1-1.7-2.4.5-1.9 1.9-3.5 3.6-4.4.3-.2.6-.5.6-.9 0-.5-.4-1-1-1-.2 0-.4.1-.6.2-2.4 1.2-4.2 3.6-4.7 6.4C.5 8.9 0 9.6 0 10.5 0 11.9 1.1 13 2.5 13S5 11.9 5 10.5z", - ], - sort: [ - "M19 16h-9c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm0-5h-9c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zM7 15c-.28 0-.53.11-.71.29L5 16.59V11c0-.55-.45-1-1-1s-1 .45-1 1v5.59L1.71 15.3A.965.965 0 001 15a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 007 15zM19 1h-9c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 5h-9c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1z", - ], - "sort-alphabetical": [ - "M8 15c-.28 0-.53.11-.71.29L6 16.59v-5.58c0-.55-.45-1-1-1s-1 .45-1 1v5.58L2.71 15.3c-.18-.18-.43-.3-.71-.3a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 008 15zm8.89-.79v-1.22H11.3v1.3h3.51L11 18.78V20h5.99v-1.3h-3.91l3.81-4.49zM14.97 0h-1.95L9.01 11.01h1.89l.98-2.92h4.17l.98 2.92h1.96L14.97 0zm-2.59 6.63l1.58-4.74H14l1.57 4.74h-3.19z", - ], - "sort-alphabetical-desc": [ - "M8.01 15c-.28 0-.53.11-.71.29L6 16.59v-5.58c0-.55-.45-1-1-1s-1 .45-1 1v5.58L2.71 15.3c-.18-.18-.43-.3-.71-.3a1.003 1.003 0 00-.71 1.71l3 3a1.014 1.014 0 001.42 0l3-3c.18-.18.29-.43.29-.71.01-.55-.44-1-.99-1zm4.44-5.65l6.4-7.88V0H10.5v1.67h5.91L10 9.44v1.57h9V9.35h-6.55zm1.27 3.64L11 20h1.59l.56-1.56h2.68l.55 1.56h1.64l-2.68-7.01h-1.62zm-.16 4.3l.93-2.57h.02l.9 2.57h-1.85z", - ], - "sort-asc": [ - "M10 8h5c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1h-5c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zm0 5h7c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1h-7c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zm0-10h3c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zm9 12h-9c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zM7 14c-.28 0-.53.11-.71.29L5 15.59V10c0-.55-.45-1-1-1s-1 .45-1 1v5.59L1.71 14.3A.965.965 0 001 14a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 007 14z", - ], - "sort-desc": [ - "M13 15h-3c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm-6-1c-.28 0-.53.11-.71.29L5 15.59V10c0-.55-.45-1-1-1s-1 .45-1 1v5.59L1.71 14.3A.965.965 0 001 14a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 007 14zM19 0h-9c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-4 10h-5c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm2-5h-7c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1z", - ], - "sort-numerical": [ - "M9 14.99c-.28 0-.53.11-.71.29L7 16.58v-5.59c0-.55-.45-1-1-1s-1 .45-1 1v5.59l-1.29-1.29a.965.965 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29.28 0 .53-.11.71-.29l3-3c.18-.18.29-.43.29-.71a.99.99 0 00-1-1zm8.88.23c-.08-.42-.22-.79-.42-1.12-.2-.33-.47-.6-.8-.8-.33-.2-.76-.3-1.28-.3a2.333 2.333 0 00-1.72.71c-.21.22-.37.48-.49.78-.11.3-.17.62-.17.97 0 .27.04.54.13.8.08.26.22.5.4.7.19.21.43.38.71.5a2.142 2.142 0 001.72.02c.25-.12.47-.31.66-.58l.02.02c-.01.19-.04.4-.08.63-.04.24-.11.46-.21.67-.1.21-.23.38-.39.53a.92.92 0 01-.62.22c-.24 0-.44-.08-.6-.25-.16-.17-.27-.36-.31-.59h-1.31c.04.29.12.56.24.79.12.23.28.43.48.59.19.16.42.28.67.36.25.08.52.12.82.12.49 0 .9-.1 1.23-.31.34-.21.61-.48.82-.82.21-.34.37-.71.47-1.13.1-.42.15-.83.15-1.25 0-.43-.04-.85-.12-1.26zm-1.42.63c-.05.15-.11.28-.2.4-.09.12-.2.21-.34.27s-.3.1-.49.1c-.17 0-.33-.04-.46-.11s-.24-.17-.33-.29c-.08-.12-.15-.25-.19-.4-.04-.15-.06-.31-.06-.47 0-.15.02-.3.07-.45.05-.15.11-.28.2-.39.09-.12.2-.21.33-.28.13-.07.27-.11.44-.11.17 0 .33.04.47.11.14.07.25.17.34.28a1.387 1.387 0 01.28.86c.01.17-.02.33-.06.48zM15.32 11H17V0h-1.25c-.05.34-.17.62-.34.85-.17.23-.39.42-.63.57-.25.15-.52.25-.83.31-.3.06-.62.09-.94.09v1.41h2.31V11z", - ], - "sort-numerical-desc": [ - "M9 15c-.28 0-.53.11-.71.29L7 16.59v-5.58c0-.55-.45-1-1-1s-1 .45-1 1v5.58L3.71 15.3c-.18-.18-.43-.3-.71-.3a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29.28 0 .53-.11.71-.29l3-3A1.003 1.003 0 009 15zm6.7-1.33a1.5 1.5 0 01-.44.43c-.17.11-.37.19-.58.23-.22.04-.44.06-.67.05v1.07h1.66V20H17v-6.99h-1.06c-.04.26-.12.48-.24.66zm3.15-10.3c-.11-.68-.29-1.26-.55-1.76-.26-.5-.62-.89-1.08-1.18C16.75.14 16.17 0 15.46 0c-.54 0-1.03.09-1.46.27-.43.18-.79.44-1.09.76-.3.33-.52.71-.67 1.15-.16.44-.24.92-.24 1.43 0 .54.08 1.04.23 1.47.15.44.37.81.65 1.12.28.31.61.55 1 .72.39.17.82.26 1.3.26.46 0 .88-.11 1.26-.33.38-.22.68-.53.9-.94l.03.03c-.03.35-.07.74-.12 1.16-.05.42-.15.81-.29 1.18-.14.37-.35.68-.61.92-.26.25-.62.37-1.06.37-.43 0-.77-.13-1.03-.4-.25-.27-.4-.62-.44-1.05h-1.64c.02.43.11.83.29 1.18.17.35.39.66.67.91a3.027 3.027 0 002.07.8c.71 0 1.3-.17 1.79-.5.48-.33.87-.76 1.17-1.29.3-.53.51-1.12.64-1.76.13-.64.19-1.28.19-1.92.01-.77-.05-1.49-.15-2.17zM17.1 4.44c-.08.27-.19.5-.34.71-.15.21-.34.37-.57.49-.23.12-.5.18-.8.18-.3 0-.56-.06-.78-.19-.22-.13-.4-.29-.55-.49-.14-.2-.25-.44-.32-.7-.07-.27-.11-.55-.11-.84 0-.28.04-.55.11-.82.07-.26.18-.49.32-.7.14-.2.33-.36.55-.48.22-.12.48-.17.78-.17.31 0 .57.06.8.18.23.12.42.28.57.48.15.2.26.43.34.69.08.26.11.53.11.82 0 .29-.04.57-.11.84z", - ], - "split-columns": [ - "M15 13a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-3-3a1.003 1.003 0 00-1.42 1.42L16.59 9H11V2h5v2c.77 0 1.47.3 2 .78V1c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v3.78C2.53 4.3 3.23 4 4 4V2h5v7H3.41L4.7 7.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3C.11 9.47 0 9.72 0 10c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L3.41 11H9v7H4v-2c-.77 0-1.47-.3-2-.78V19c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.78c-.53.48-1.23.78-2 .78v2h-5v-7h5.59l-1.29 1.29c-.19.18-.3.43-.3.71z", - ], - square: [ - "M19 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18H2V2h16v16z", - ], - "stacked-chart": [ - "M12 2c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v4h4V2zm3 14h2c.55 0 1-.45 1-1v-5h-4v5c0 .55.45 1 1 1zm3-10c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v3h4V6zm-6 1H8v5h4V7zm-9 9h2c.55 0 1-.45 1-1v-3H2v3c0 .55.45 1 1 1zm16 1H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zM6 9c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v2h4V9zm3 7h2c.55 0 1-.45 1-1v-2H8v2c0 .55.45 1 1 1z", - ], - "stadium-geometry": [ - "M15 7H5a3 3 0 000 6h10a3 3 0 100-6zM5 5a5 5 0 000 10h10a5 5 0 000-10H5z", - ], - star: [ - "M10 0l3.1 6.6 6.9 1-5 5.1 1.2 7.3-6.2-3.4L3.8 20 5 12.7 0 7.6l6.9-1z", - ], - "star-empty": [ - "M20 7.6l-6.9-1.1L10 0 6.9 6.6 0 7.6l5 5.1L3.8 20l6.2-3.4 6.2 3.4-1.2-7.2 5-5.2zM10 15l-4.5 2.4.9-5.2-3.6-3.6 5-.8L10 3.1l2.2 4.7 5 .8-3.6 3.7.9 5.2L10 15z", - ], - "step-backward": [ - "M15 3c-.23 0-.42.09-.59.21l-.01-.01L8 8V4c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-4l6.4 4.8.01-.01c.17.12.36.21.59.21.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - "step-chart": [ - "M19 16H2v-3h4c.55 0 1-.45 1-1V8h3v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V6h2c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1v4h-3V7c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v4H2V3c0-.55-.45-1-1-1s-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "step-forward": [ - "M15 3h-2c-.55 0-1 .45-1 1v4L5.6 3.2l-.01.01C5.42 3.09 5.23 3 5 3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1 .23 0 .42-.09.59-.21l.01.01L12 12v4c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - stop: [ - "M16 3H4c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - stopwatch: [ - "M10 6a6 6 0 106 6h-6V6zm-.998-1.938A1.015 1.015 0 019 4V2H7a1 1 0 110-2h6a1 1 0 010 2h-2v2c0 .02 0 .041-.002.062A8.001 8.001 0 0110 20a8 8 0 01-.998-15.938z", - ], - strikethrough: [ - "M18 9h-4.46a4.7 4.7 0 00-.4-.14c-.19-.05-.51-.14-.96-.25-.45-.11-.9-.23-1.37-.35-.47-.12-.89-.23-1.27-.33s-.6-.16-.65-.17c-.53-.15-.95-.37-1.27-.66-.32-.28-.49-.68-.49-1.19 0-.36.09-.66.26-.9s.39-.43.65-.57c.26-.14.55-.24.87-.3s.63-.09.93-.09c.89 0 1.63.19 2.21.57.45.3.75.76.89 1.38h2.63c-.06-.52-.2-.98-.42-1.4-.3-.57-.71-1.05-1.23-1.43a5.33 5.33 0 00-1.79-.87c-.7-.2-1.42-.3-2.19-.3-.66 0-1.31.08-1.96.25s-1.22.43-1.73.77-.92.79-1.23 1.32c-.31.52-.46 1.15-.46 1.87 0 .37.05.74.15 1.1.1.36.28.7.53 1.02.18.24.41.47.69.67H2c-.55 0-1 .45-1 1s.45 1 1 1h10.14c.02.01.05.02.07.02.3.11.58.29.84.55.25.26.38.67.38 1.21 0 .27-.06.53-.17.79-.11.26-.29.49-.54.69-.25.2-.57.36-.97.49s-.88.19-1.44.19c-.52 0-1.01-.06-1.45-.17-.45-.11-.84-.29-1.19-.54s-.61-.56-.8-.95c-.05-.08-.09-.18-.12-.28H4.11c.09.43.22.82.4 1.18.33.65.77 1.18 1.32 1.59.55.41 1.2.72 1.94.92.74.2 1.53.3 2.37.3.73 0 1.44-.08 2.14-.25.7-.17 1.33-.43 1.88-.79.55-.36.99-.83 1.33-1.39.34-.56.51-1.25.51-2.05 0-.37-.06-.75-.18-1.12a3.12 3.12 0 00-.15-.39H18c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - style: [ - "M18 18H2V2h12.3l2-2H1C.4 0 0 .4 0 1v18c0 .6.4 1 1 1h18c.6 0 1-.4 1-1V7.7l-2 2V18zm1.2-18l-7.6 7.6 2.8 2.8L20 4.8V0h-.8zM4 15.9c3.1.2 5.9.2 8.2-2 1.1-1.1 1.1-3 0-4.1-.6-.5-1.3-.8-2-.8s-1.4.3-1.9.8C7.2 11 6.6 14.3 4 15.9z", - ], - "swap-horizontal": [ - "M16.02 10c-.01 0-.01 0 0 0H16h.02zM2 6h13.58l-2.29 2.29a1 1 0 00-.3.71 1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-4-4a1.003 1.003 0 00-1.42 1.42L15.58 4H2c-.55 0-1 .45-1 1s.45 1 1 1zm2 4h-.02H4zm14 4H4.42l2.29-2.29a1 1 0 00.3-.71 1.003 1.003 0 00-1.71-.71l-4 4c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L4.42 16H18c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "swap-vertical": [ - "M9.71 5.3l-4-4A.997.997 0 005 1.01c-.28 0-.53.11-.71.29l-4 4a1.003 1.003 0 001.42 1.42L4 4.42V18c0 .55.45 1 1 1s1-.45 1-1V4.42l2.29 2.29a1 1 0 00.71.3 1.003 1.003 0 00.71-1.71zM10 3.98c0 .01 0 .01 0 0V4v-.02zm0 12.04c0-.01 0-.01 0 0V16v.02zm9-3.03c-.28 0-.53.11-.71.29L16 15.58V2c0-.55-.45-1-1-1s-1 .45-1 1v13.58l-2.29-2.29a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29.28 0 .53-.11.71-.29l4-4c.18-.18.29-.43.29-.71 0-.56-.45-1.01-1-1.01z", - ], - switch: [ - "M12.293 2.293l1.414 1.414-7.127 7.129a3.5 3.5 0 11-1.415-1.415l7.128-7.128zM16.5 9a3.5 3.5 0 110 7 3.5 3.5 0 010-7zm-13 2a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm13 0a1.5 1.5 0 100 3 1.5 1.5 0 000-3z", - ], - "symbol-circle": ["M10 4.01a6 6 0 100 12 6 6 0 100-12z"], - "symbol-cross": [ - "M15 8.01h-3v-3c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v3H5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h3v3c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-3h3c.55 0 1-.45 1-1v-2c0-.56-.45-1-1-1z", - ], - "symbol-diamond": [ - "M15 10.01c0-.21-.08-.39-.18-.54l.02-.01-4-6-.02.01c-.18-.28-.47-.46-.82-.46s-.64.18-.82.45l-.01-.01-4 6 .02.01c-.11.16-.19.34-.19.55s.08.39.18.54l-.02.01 4 6 .02-.01c.18.27.47.46.82.46s.64-.19.82-.46l.02.01 4-6-.02-.01c.1-.16.18-.34.18-.54z", - ], - "symbol-square": [ - "M15 4.01H5c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-10c0-.56-.45-1-1-1z", - ], - "symbol-triangle-down": [ - "M16 5c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1 0 .16.05.31.11.44H4.1l5 10h.01c.17.33.5.56.89.56s.72-.23.89-.56h.01l5-10h-.01c.06-.13.11-.28.11-.44z", - ], - "symbol-triangle-up": [ - "M15.89 14.56l-4.99-10h-.01c-.17-.33-.5-.56-.89-.56s-.72.23-.89.56H9.1l-5 10h.01c-.06.13-.11.28-.11.44 0 .55.45 1 1 1h10c.55 0 1-.45 1-1 0-.16-.05-.31-.11-.44z", - ], - syringe: [ - "M15.146.854a.5.5 0 01.708-.708l4 4a.5.5 0 01-.708.708l-.646-.647L17.207 5.5l1.647 1.646a.5.5 0 01-.708.708l-.646-.647-1.146 1.146-7.5 7.5a.5.5 0 01-.708 0l-.646-.646-2.646 2.647a.5.5 0 01-.708 0l-.646-.647-2.646 2.647a.5.5 0 01-.708-.708L2.793 16.5l-.647-.646a.5.5 0 010-.708L4.793 12.5l-.647-.646a.5.5 0 010-.708l7.5-7.5L12.794 2.5l-.647-.646a.5.5 0 01.708-.708L14.5 2.793 15.793 1.5l-.647-.646zM12.707 4l.793-.793L16.793 6.5 16 7.293 12.707 4zm2.586 4l-.793.793-1.646-1.647a.5.5 0 00-.708.708L13.793 9.5 12.5 10.793l-1.646-1.647a.5.5 0 00-.708.708l1.647 1.646-1.293 1.293-1.646-1.647a.5.5 0 00-.708.708L9.793 13.5 8.5 14.793 5.207 11.5 12 4.707 15.293 8zM3.207 15.5L5.5 13.207 6.793 14.5 4.5 16.793 3.207 15.5zM16.5 2.207L17.793 3.5 16.5 4.793 15.207 3.5 16.5 2.207z", - ], - tag: [ - "M2 4a2 2 0 012-2h4.588a2 2 0 011.414.586l7.41 7.41a2 2 0 010 2.828l-4.588 4.588a2 2 0 01-2.829 0l-7.41-7.41A2 2 0 012 8.588V4zm3.489-.006a1.495 1.495 0 100 2.99 1.495 1.495 0 000-2.99z", - ], - "take-action": [ - "M5 7c.28 0 .53-.11.71-.29l5-5A1.003 1.003 0 009.29.29l-5 5A1.003 1.003 0 005 7zm6 6a1.003 1.003 0 001.71.71l5-5a1.003 1.003 0 00-1.42-1.42l-5 5c-.18.18-.29.43-.29.71zm8 5h-1c0-.55-.45-1-1-1h-7c-.55 0-1 .45-1 1H8c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm-9-6l6-6-1.29-1.29a1.003 1.003 0 00-1.42-1.42L12 2 6 8l1.29 1.29-7 7a1.003 1.003 0 001.42 1.42l7-7L10 12z", - ], - tank: [ - "M3.956 4.47A1 1 0 014.804 4h6.392a1 1 0 01.848.47L13 6h5a1 1 0 010 2h-5v1h4a3 3 0 110 6H3a3 3 0 010-6V6.287a1 1 0 01.152-.53l.804-1.287zM3 11h14a1 1 0 110 2H3a1 1 0 110-2z", - ], - target: [ - "M9 5a1 1 0 012 0v3a1 1 0 01-2 0V5zM12 9a1 1 0 000 2h3a1 1 0 000-2h-3zM4 10a1 1 0 011-1h3a1 1 0 010 2H5a1 1 0 01-1-1zM10 11a1 1 0 00-1 1v3a1 1 0 002 0v-3a1 1 0 00-1-1z", - "M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10zm0-2a8 8 0 100-16 8 8 0 000 16z", - ], - taxi: [ - "M19 9h-.33l.33 1v.5c0 .15-.03.3-.07.44h.01L17 17.23v.27c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5V17H6v.5c0 .83-.67 1.5-1.5 1.5S3 18.33 3 17.5v-.27l-1.93-6.28h.01c-.05-.15-.08-.3-.08-.45V10s.02-.06.05-.16c.06-.17.16-.47.28-.84H1c-.55 0-1-.45-1-1s.45-1 1-1h1l1-3h-.01v-.01c.25-.64 1-1.31 1.67-1.5 0 0 .78-.21 2.33-.36V1c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1.13c1.55.14 2.33.36 2.33.36.67.19 1.42.86 1.67 1.5V4H17l1 3h1c.55 0 1 .45 1 1s-.45 1-1 1zM3 11.5c0 .83.67 1.5 1.5 1.5S6 12.33 6 11.5 5.33 10 4.5 10 3 10.67 3 11.5zM16 7l-1-3H5L4 7v1h12V7zm-.5 3c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z", - ], - temperature: [ - "M11 0a2 2 0 00-2 2v10.535a4 4 0 104 0V2a2 2 0 00-2-2zM3 2.5a.5.5 0 01.5-.5h4a.5.5 0 010 1h-4a.5.5 0 01-.5-.5zM3.5 8a.5.5 0 000 1h4a.5.5 0 000-1h-4zM5 5.5a.5.5 0 01.5-.5h2a.5.5 0 010 1h-2a.5.5 0 01-.5-.5zm.5 5.5a.5.5 0 000 1h2a.5.5 0 000-1h-2z", - ], - "text-highlight": [ - "M16 17c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1s1-.45 1-1-.45-1-1-1c-.77 0-1.47.3-2 .78-.53-.48-1.23-.78-2-.78-.55 0-1 .45-1 1s.45 1 1 1 1 .45 1 1v12c0 .55-.45 1-1 1s-1 .45-1 1 .45 1 1 1c.77 0 1.47-.3 2-.78.53.48 1.23.78 2 .78.55 0 1-.45 1-1s-.45-1-1-1zm-4-4H2V7h10V5H1c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h11v-2zm7-8h-3v2h2v6h-2v2h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1z", - ], - th: [ - "M19 1H1c-.6 0-1 .5-1 1v16c0 .5.4 1 1 1h18c.5 0 1-.5 1-1V2c0-.5-.5-1-1-1zM7 17H2v-3h5v3zm0-4H2v-3h5v3zm0-4H2V6h5v3zm11 8H8v-3h10v3zm0-4H8v-3h10v3zm0-4H8V6h10v3z", - ], - "th-derived": [ - "M5.3 13.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3l3-3c.2-.2.3-.4.3-.7s-.1-.5-.3-.7l-3-3C6.5 7.1 6.3 7 6 7c-.6 0-1 .4-1 1 0 .3.1.5.3.7L6.6 10H1c-.6 0-1 .4-1 1s.4 1 1 1h5.6l-1.3 1.3zM19 1H3c-.5 0-1 .5-1 1v6h1c0-1.7 1.3-3 3-3 .8 0 1.6.3 2.1.9l.1.1H9v.8l1 1V6h8v3h-6.8c.3.3.5.6.6 1H18v3h-6.8l-.1.1-.9.9H18v3h-8v-2.8l-1 1V17H4v-.8c-.6-.5-1-1.3-1-2.2H2v4c0 .5.5 1 1 1h16c.6 0 1-.5 1-1V2c0-.5-.5-1-1-1z", - ], - "th-disconnect": [ - "M14.25 1H19c.5 0 1 .5 1 1v16c0 .5-.5 1-1 1h-7.221l.278-2H18v-3h-5.527l.14-1H18v-3h-4.971l.139-1H18V6h-4.416l.637-4.587c.02-.139.03-.277.03-.413zM8.221 1l-.694 5H2v3h5.11l-.139 1H2v3h4.555l-.14 1H2v3h3.999l-.22 1.587c-.02.139-.03.277-.03.413H1c-.6 0-1-.5-1-1V2c0-.5.4-1 1-1h7.221zM10.26.862a1 1 0 011.98.276l-2.5 18a1 1 0 01-1.98-.276l2.5-18z", - ], - "th-filtered": [ - "M17.333 10l1.435-1.722a1 1 0 00.232-.64V4.85l1-.9V18c0 .5-.5 1-1 1H1c-.6 0-1-.5-1-1V2c0-.5.4-1 1-1h6.722L12 4.85V6H8v3h4v1H8v3h10v-3h-.667zM7 17v-3H2v3h5zm0-4v-3H2v3h5zm0-4V6H2v3h5zm11 8v-3H8v3h10z", - "M19.35 0a.642.642 0 01.46 1.1l-3.03 3.03v2.95c0 .18-.07.34-.19.46l-1.28 1.29c-.11.1-.27.17-.45.17-.35 0-.64-.29-.64-.64V4.13L11.19 1.1a.642.642 0 01.45-1.1h7.71z", - ], - "th-list": [ - "M19 1H1c-.6 0-1 .5-1 1v16c0 .5.4 1 1 1h18c.5 0 1-.5 1-1V2c0-.5-.5-1-1-1zm-1 16H2v-3h16v3zm0-4H2v-3h16v3zm0-4H2V6h16v3z", - ], - "third-party": [ - "M8 0C3.58 0 0 3.58 0 8a8 8 0 005.856 7.71c.064-.057.129-.109.19-.156.278-.209.595-.383.896-.53.358-.174.81-.358 1.193-.515.206-.084.393-.16.534-.223a3.93 3.93 0 00.203-.095 4.1 4.1 0 01-.305-.45C8.382 13.911 8.19 14 8 14c-.67 0-1.36-1.1-1.73-3h1.252c.047-.296.153-.571.323-.797l.01-.203H6.12C6.05 9.39 6 8.73 6 8s.05-1.39.12-2h3.76l.037.344c.315-.145.65-.242.979-.295L10.89 6h2.76c.027.077.052.155.076.233l.118-.04A3.62 3.62 0 0114.998 6c.247 0 .51.028.772.086A8 8 0 008 0zm5.17 5h-2.44c-.21-1.11-.51-2.03-.91-2.69 1.43.46 2.61 1.43 3.35 2.69zM8 2c.67 0 1.36 1.1 1.73 3H6.27C6.64 3.1 7.33 2 8 2zm-1.82.31c-.4.66-.71 1.58-.91 2.69H2.83a6.025 6.025 0 013.35-2.69zM2 8c0-.7.13-1.37.35-2h2.76C5.04 6.62 5 7.28 5 8s.04 1.38.11 2H2.35C2.13 9.37 2 8.7 2 8zm.83 3h2.44c.21 1.11.51 2.03.91 2.69A6.025 6.025 0 012.83 11z", - "M13.917 15.209c.21.094.444.19.685.288.912.374 1.927.789 2.188 1.355.31.722.186 1.148.186 1.148H6.026s-.13-.426.186-1.148c.256-.584 1.305-1.011 2.234-1.39.22-.088.432-.175.626-.26.909-.4.923-.662.94-.978.002-.037.004-.076.008-.115l.003-.072c.002-.025.004-.049.004-.073a3.067 3.067 0 01-.839-1.237l-.007-.007a.024.024 0 00-.003-.01 1.757 1.757 0 01-.113-.347c-.234-.042-.372-.296-.427-.537a1.045 1.045 0 01-.137-.598c.034-.35.179-.509.337-.57v-.056c0-.44.034-1.065.117-1.478a2.508 2.508 0 01.962-1.623c.426-.33 1.038-.501 1.58-.501.544 0 1.155.172 1.588.502a2.496 2.496 0 01.963 1.622c.075.413.117 1.045.117 1.478v.062c.15.062.288.22.323.564.02.268-.083.502-.138.598-.048.234-.185.488-.42.537a2.635 2.635 0 01-.116.364 3.094 3.094 0 01-.818 1.224c0 .055 0 .11.007.158.004.048.006.095.007.14.011.311.02.57.907.96z", - "M14.976 14.57c-.24-.098-.455-.186-.65-.274l-.007-.003a3.801 3.801 0 01-.194-.091c.224-.288.41-.609.554-.946l.001-.002.013-.033c.018-.043.036-.087.052-.13l.011-.027.016-.04c.105-.092.19-.19.256-.284.129-.184.213-.38.265-.563.105-.226.225-.592.192-1.026l-.001-.011-.002-.011a1.855 1.855 0 00-.325-.91 9.924 9.924 0 00-.12-1.246 3.088 3.088 0 00-.106-.474l-.001-.007a3.543 3.543 0 00-.763-1.353c.27-.092.56-.139.83-.139.495 0 1.05.156 1.444.456a2.269 2.269 0 01.875 1.475c.069.375.106.95.106 1.344v.056c.138.056.263.2.294.513.019.244-.075.456-.125.543-.044.213-.169.444-.381.488-.025.1-.056.206-.094.3a2.815 2.815 0 01-.756 1.144c0 .05 0 .1.006.144.004.043.006.086.007.127.01.283.018.518.824.873.192.086.404.172.623.262.83.34 1.752.717 1.99 1.231.28.657.168 1.044.168 1.044h-2.081a3.864 3.864 0 00-.188-.542l-.005-.013-.006-.012c-.183-.397-.491-.681-.76-.88a5.614 5.614 0 00-.896-.522 17.36 17.36 0 00-.916-.4l-.15-.061z", - ], - "thumbs-down": [ - "M18.55 6.56c-.31-.01-.65-.03-1.02-.06.03 0 .06-.01.09-.01.88-.12 1.68-.63 1.76-1.37.08-.75-.58-1.25-1.46-1.33-.32-.03-.65-.05-.99-.08.59-.19 1.05-.54 1.09-1.2.05-.75-.99-1.32-1.87-1.41-.34-.03-.64-.05-.91-.07h-.11c-.28-.02-.54-.02-.77-.02-3.92-.08-7.29.6-9.36 1.93v7.72c2.67 1.66 5.95 4.61 5.26 7.08-.21.76.39 1.35 1.23 1.26 1.01-.11 1.71-1.18 1.75-2.28.05-1.29-.19-2.59-.62-3.74-.05-.32.01-.65.47-.68.61-.04 1.39-.08 1.99-.1.32 0 .64-.01.94-.03h.01c.52-.03 1-.07 1.42-.12.88-.11 1.69-.6 1.79-1.35.1-.75-.55-1.25-1.44-1.35-.07-.01-.13-.02-.2-.02.21-.02.42-.04.61-.06.88-.11 1.69-.6 1.79-1.35.09-.75-.56-1.31-1.45-1.36zM3 3H0v8h3c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - "thumbs-up": [ - "M3 9H0v8h3c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm16.99 3.09c-.1-.75-.91-1.24-1.79-1.35-.19-.02-.4-.05-.61-.06.07-.01.14-.01.2-.02.88-.1 1.53-.61 1.44-1.35-.1-.74-.91-1.24-1.79-1.35-.42-.05-.9-.09-1.42-.12h-.01l-.94-.03c-.6-.02-1.39-.05-1.99-.1-.45-.03-.51-.36-.47-.68.43-1.15.67-2.45.62-3.74-.04-1.11-.74-2.17-1.75-2.28-.84-.09-1.45.5-1.23 1.26.7 2.47-2.58 5.43-5.25 7.08v7.72c2.08 1.33 5.44 2.01 9.35 1.93.24 0 .49-.01.77-.02h.11c.27-.02.57-.04.91-.07.88-.08 1.92-.66 1.87-1.41-.04-.65-.5-1.01-1.09-1.2.34-.03.67-.05.99-.08.89-.08 1.55-.58 1.46-1.33-.08-.75-.88-1.25-1.76-1.37-.03 0-.06-.01-.09-.01.37-.02.71-.04 1.02-.06.91-.05 1.55-.61 1.45-1.36z", - ], - tick: [ - "M17 4c-.28 0-.53.11-.71.29L7 13.59 3.71 10.3A.965.965 0 003 10a1.003 1.003 0 00-.71 1.71l4 4c.18.18.43.29.71.29s.53-.11.71-.29l10-10A1.003 1.003 0 0017 4z", - ], - "tick-circle": [ - "M10 20C4.48 20 0 15.52 0 10S4.48 0 10 0s10 4.48 10 10-4.48 10-10 10zm5-14c-.28 0-.53.11-.71.29L8 12.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29.28 0 .53-.11.71-.29l7-7A1.003 1.003 0 0015 6z", - ], - time: [ - "M11 9.59V4c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L11 9.59zM10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z", - ], - "timeline-area-chart": [ - "M19 16H2V3c0-.55-.45-1-1-1s-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm0-13.41l-7.07 7.07-4.3-3.44-.01.01A.987.987 0 007 6c-.24 0-.46.1-.63.24l-.01-.01L3 9.03V15h16V2.59z", - ], - "timeline-bar-chart": [ - "M19 17H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zM9 16h2c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v13c0 .55.45 1 1 1zm6 0h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1zM3 16h2c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1z", - ], - "timeline-events": [ - "M5 5c.6 0 1-.4 1-1V2c0-.5-.4-1-1-1s-1 .5-1 1v2c0 .6.4 1 1 1zm10 0c.6 0 1-.4 1-1V2c0-.5-.4-1-1-1s-1 .5-1 1v2c0 .6.4 1 1 1zm-9 9H4v2h2v-2zM17 3v1c0 1.1-.9 2-2 2s-2-.9-2-2V3H7v1c0 1.1-.9 2-2 2s-2-.9-2-2V3H2c-.5 0-1 .5-1 1v14c0 .5.5 1 1 1h16c.5 0 1-.5 1-1V4c0-.5-.5-1-1-1h-1zM7 17H3v-4h4v4zm0-5H3V8h4v4zm5 5H8v-4h4v4zm0-5H8V8h4v4zm5 5h-4v-4h4v4zm0-5h-4V8h4v4zm-6 2H9v2h2v-2zm5-5h-2v2h2V9z", - ], - "timeline-line-chart": [ - "M19 16H2v-1.59l5-5 3.29 3.29c.18.19.43.3.71.3s.53-.11.71-.29l7-7a1.003 1.003 0 00-1.42-1.42L11 10.59l-3.29-3.3C7.53 7.11 7.28 7 7 7s-.53.11-.71.29L2 11.59V3c0-.55-.45-1-1-1s-1 .45-1 1v14a.998.998 0 001 1h18c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - tint: [ - "M9.86 2S3.98 9.18 3.98 12.17C3.99 15.4 6.78 18 9.96 18c3.18-.01 6.04-2.63 6.03-5.86C15.99 9.05 9.86 2 9.86 2z", - ], - torch: [ - "M6.97 19c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2h-6v2zm-3-15l3 4v8h6V8l3-4h-12zm5 5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1s-1-.45-1-1V9zm6-9h-10c-.55 0-1 .45-1 1v2h12V1c0-.55-.45-1-1-1z", - ], - tractor: [ - "M4.5 11a4.5 4.5 0 110 9 4.5 4.5 0 010-9zm11.499 1a4 4 0 110 8 4 4 0 010-8zm-11.5 1.571a1.928 1.928 0 100 3.857 1.928 1.928 0 000-3.857zM16 14.667a1.333 1.333 0 100 2.666 1.333 1.333 0 000-2.666zM5.999 0C7.46 0 8.527.668 9 2l.851 4.256c1.433.096 2.82.217 4.147.362V2h2L16 6.862c.962.13 1.886.275 2.767.435.779.141 1.232.614 1.232 1.284L20 13a4.995 4.995 0 00-4-1.997A5.001 5.001 0 0011.099 15h-1.12a5.499 5.499 0 00-5.478-4.994 5.482 5.482 0 00-3.377 1.157H.004v-1.18L0 7.327c-.002-.597.37-1.18.999-1.302V1a1 1 0 011-1h4zm1 2H3v4h.75c1.386.027 2.749.073 4.079.139L6.999 2z", - ], - train: [ - "M16 18h-2l2 2H4l.12-.12L6 18H4c-1.1 0-2-.9-2-2V2c0-1.1 3.58-2 8-2s8 .9 8 2v14c0 1.1-.9 2-2 2zM5.5 15c.83 0 1.5-.67 1.5-1.5S6.33 12 5.5 12 4 12.67 4 13.5 4.67 15 5.5 15zM9 3H4v6h5V3zm7 0h-5v6h5V3zm-1.5 9c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z", - ], - translate: [ - "M19.89 18.56l-4.99-10h-.01c-.17-.33-.5-.56-.89-.56s-.72.23-.89.56h-.01l-1.73 3.46-2.8-2.3 1.99-1.64C11.44 7.34 12 6.23 12 5V4h1c.55 0 1-.45 1-1s-.45-1-1-1H8V1c0-.55-.45-1-1-1S6 .45 6 1v1H1c-.55 0-1 .45-1 1s.45 1 1 1h9v1c0 .62-.28 1.18-.73 1.54L7 8.42 4.73 6.54C4.28 6.18 4 5.62 4 5H2c0 1.23.56 2.34 1.44 3.07l1.99 1.64-3.06 2.52.01.01c-.23.18-.38.45-.38.76 0 .55.45 1 1 1 .24 0 .45-.1.63-.24l.01.01L7 11l3.36 2.77.01-.01c.02.02.05.03.08.05.01 0 .01.01.02.02l-2.36 4.73h.01c-.07.13-.12.28-.12.44 0 .55.45 1 1 1 .39 0 .72-.23.89-.56h.01L11.12 17h5.76l1.22 2.45h.01c.17.32.5.55.89.55.55 0 1-.45 1-1 0-.16-.05-.31-.11-.44zM12.12 15L14 11.24 15.88 15h-3.76z", - ], - trash: [ - "M17 1h-5c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1H3c-.55 0-1 .45-1 1v1h16V2c0-.55-.45-1-1-1zm.5 3h-15c-.28 0-.5.22-.5.5s.22.5.5.5H3v14c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5h.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5zM7 16c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8zm4 0c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8zm4 0c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8z", - ], - tree: [ - "M11 15.542V20H9v-4.458L2 17l4.5-5.625L4 12l3.655-5.483L6 7l4-7 4 7-1.655-.483L16 12l-2.5-.625L18 17l-7-1.458z", - ], - "trending-down": [ - "M19 10c-.55 0-1 .45-1 1v1.37l-6.25-7.03-.01.01A.971.971 0 0011 5c-.23 0-.42.09-.59.21l-.01-.01-3.43 2.58-5.42-3.61-.01.01A.969.969 0 001 4c-.55 0-1 .45-1 1 0 .35.19.64.46.82l-.01.01 6 4 .01-.02c.15.11.33.19.54.19.23 0 .42-.09.59-.21l.01.01 3.26-2.45L16.77 14H15c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1z", - ], - "trending-up": [ - "M19 4h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.77l-5.91 6.65L7.6 10.2l-.01.01C7.42 10.09 7.23 10 7 10c-.21 0-.39.08-.54.18l-.01-.02-6 4 .01.02c-.27.18-.46.47-.46.82 0 .55.45 1 1 1 .21 0 .39-.08.54-.18l.01.02 5.41-3.61 3.43 2.58.01-.01c.18.11.37.2.6.2.3 0 .56-.14.74-.34l.01.01L18 7.63V9c0 .55.45 1 1 1s1-.45 1-1V5c0-.55-.45-1-1-1z", - ], - truck: [ - "M16 0a1 1 0 011 1v11a1 1 0 011 1v3h.5a.5.5 0 01.5.5v1a.5.5 0 01-.5.5H17v1a1 1 0 01-1 1h-1a1 1 0 01-1-1v-1H6v1a1 1 0 01-1 1H4a1 1 0 01-1-1v-1H1.5a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5H2v-3a1 1 0 011-1V1a1 1 0 112 0v3a2 2 0 012-2h6a2 2 0 012 2V1a1 1 0 011-1zm-4 10H8a1 1 0 00-1 1v4a1 1 0 001 1h4a1 1 0 001-1v-4a1 1 0 00-1-1zm-7 4H4a1 1 0 000 2h1a1 1 0 000-2zm11 0h-1a1 1 0 000 2h1a1 1 0 000-2zm-4.5 0a.5.5 0 110 1h-3l-.09-.008A.5.5 0 018.5 14zm0-1.5a.5.5 0 110 1h-3l-.09-.008a.5.5 0 01.09-.992zm0-1.5a.5.5 0 110 1h-3l-.09-.008A.5.5 0 018.5 11zM14 5H6v3h8V5z", - ], - "two-columns": [ - "M5 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm14.71 9.29l-3-3A1.003 1.003 0 0015 7v6a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71zM12 0H8c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - unarchive: [ - "M16.434 0a1 1 0 01.857.486L20 5v14a1 1 0 01-1 1H1a1 1 0 01-1-1V5L2.709.486A1 1 0 013.566 0h12.868zM10 8c-.28 0-.53.11-.71.29l-3 3-.084.096A1.003 1.003 0 007.71 12.71L9 11.41v4.58l.007.116c.058.496.482.884.993.884.55 0 1-.45 1-1v-4.58l1.29 1.29.081.073c.171.139.389.227.629.227a1.003 1.003 0 00.71-1.71l-3-3-.096-.084A1.002 1.002 0 0010 8zm6-6H4L2 5.002h16L16 2z", - ], - underline: [ - "M10 17c3.3 0 6-2.7 6-6V3.5c0-.8-.7-1.5-1.5-1.5S13 2.7 13 3.5V11c0 1.7-1.3 3-3 3s-3-1.3-3-3V3.5C7 2.7 6.3 2 5.5 2S4 2.7 4 3.5V11c0 3.3 2.7 6 6 6zM16.5 19h-13c-.3 0-.5.2-.5.5s.2.5.5.5h13c.3 0 .5-.2.5-.5s-.2-.5-.5-.5z", - ], - undo: [ - "M5 14c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm9-9H3.41L5.7 2.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-4 4C.11 5.47 0 5.72 0 6c0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L3.41 7H14c2.21 0 4 1.79 4 4s-1.79 4-4 4H9v2h5c3.31 0 6-2.69 6-6s-2.69-6-6-6z", - ], - "ungroup-objects": [ - "M4.5 6C2.01 6 0 8.01 0 10.5S2.01 15 4.5 15 9 12.99 9 10.5 6.99 6 4.5 6zm11 0C13.01 6 11 8.01 11 10.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5S17.99 6 15.5 6z", - ], - "unknown-vehicle": [ - "M13 11.988v-4H4v-1l1-3h6V2.003a35.867 35.867 0 00-1-.015c-3.593 0-5.332.488-5.332.488-.67.188-1.424.864-1.674 1.503l-.004.009H3l-1 3H1a1 1 0 100 2h.333l-.28.84-.053.16v7.5a1.5 1.5 0 103 0v-.5h12v.5a1.5 1.5 0 103 0v-4.5h-5a1 1 0 01-1-1zm-8.5 1a1.5 1.5 0 110-3 1.5 1.5 0 010 3zM19.83 2.782a2.392 2.392 0 00-.592-.853c-.276-.264-.64-.485-1.09-.663C17.695 1.09 17.132 1 16.457 1c-.523 0-.996.084-1.418.253a3.157 3.157 0 00-1.084.703c-.299.3-.532.656-.698 1.065-.166.41-.254.861-.264 1.353h2.096c0-.246.028-.476.085-.69.057-.214.145-.4.264-.56.119-.16.27-.287.456-.383.185-.095.406-.143.663-.143.38 0 .677.1.89.3.215.2.321.51.321.93.01.245-.035.45-.135.614-.1.164-.23.314-.392.45a8.598 8.598 0 01-.527.41 3.53 3.53 0 00-.542.485c-.171.187-.32.412-.45.676-.127.265-.206.592-.234.984v.614h1.924v-.519c.038-.273.13-.5.278-.683.147-.182.316-.343.506-.484a13.5 13.5 0 01.606-.424c.214-.14.408-.312.584-.512s.323-.442.442-.724.178-.642.178-1.079c0-.264-.059-.548-.178-.854zm-4.54 6.099v2.103h2.237V8.881H15.29z", - ], - unlock: [ - "M14 1c-2.21 0-4 1.79-4 4v4H2c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1h-2V5c0-1.1.9-2 2-2s2 .9 2 2v2c0 .55.45 1 1 1s1-.45 1-1V5c0-2.21-1.79-4-4-4z", - ], - unpin: [ - "M11.77 1.16c-.81.81-.74 2.28.02 3.76L6.1 8.71c-2.17-1.46-4.12-2-4.94-1.18l4.95 4.95-2.12 3.54 3.54-2.12 4.95 4.95c.82-.82.27-2.77-1.19-4.94l3.8-5.69c1.47.76 2.94.84 3.76.02l-7.08-7.08z", - ], - unresolve: [ - "M11.47 12.46c.16-.36.29-.74.38-1.14 0-.02.01-.04.01-.06.09-.4.14-.82.14-1.26 0-.44-.05-.86-.14-1.27 0-.02-.01-.04-.01-.06-.09-.4-.22-.78-.38-1.14-.01-.02-.02-.03-.02-.05a5.94 5.94 0 00-.61-1.03c0-.01-.01-.01-.01-.02a6.308 6.308 0 00-2.1-1.77c-.19-.1-.39-.18-.59-.26-.03-.01-.06-.02-.1-.03-.17-.07-.34-.12-.52-.17-.05-.01-.1-.03-.15-.04a4.34 4.34 0 00-.52-.09c-.05-.01-.11-.02-.17-.03C6.46 4.02 6.23 4 6 4c-3.31 0-6 2.69-6 6s2.69 6 6 6c.23 0 .46-.02.68-.04l.17-.03c.17-.02.34-.06.51-.09.05-.01.1-.03.15-.04.18-.05.36-.1.53-.17l.09-.03a5.973 5.973 0 002.68-2.04c0-.01.01-.01.01-.02.24-.32.44-.66.61-1.03.02-.01.03-.03.04-.05zM14 4c-.99 0-1.91.24-2.73.66a7.51 7.51 0 010 10.68c.82.42 1.74.66 2.73.66 3.31 0 6-2.69 6-6s-2.69-6-6-6z", - ], - updated: [ - "M10 0C6.71 0 3.82 1.6 2 4.05V2c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H3.76C5.22 3.17 7.47 2 10 2c4.42 0 8 3.58 8 8s-3.58 8-8 8-8-3.58-8-8c0-.55-.45-1-1-1s-1 .45-1 1c0 5.52 4.48 10 10 10s10-4.48 10-10S15.52 0 10 0zm4 7c-.28 0-.53.11-.71.29L9 11.58 6.71 9.29a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29.28 0 .53-.11.71-.29l5-5A1.003 1.003 0 0014 7z", - ], - upload: [ - "M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm4 10c-.28 0-.53-.11-.71-.29L11 7.41V15c0 .55-.45 1-1 1s-1-.45-1-1V7.41l-2.29 2.3a1.003 1.003 0 01-1.42-1.42l4-4c.18-.18.43-.29.71-.29s.53.11.71.29l4 4A1.003 1.003 0 0114 10z", - ], - user: [ - "M10 0C4.48 0 0 4.48 0 10c0 .33.02.65.05.97.01.12.03.23.05.35.03.2.05.4.09.59.03.14.06.28.1.42l.12.48c.05.16.1.31.15.46.05.13.09.27.15.4.06.16.13.32.21.48.05.11.1.22.16.33.09.17.17.34.27.5.05.09.1.17.15.25.11.18.22.35.34.52.04.06.08.11.12.17 1.19 1.62 2.85 2.86 4.78 3.53l.09.03c.46.15.93.27 1.42.36.08.01.17.03.25.04.49.07.99.12 1.5.12s1.01-.05 1.5-.12c.08-.01.17-.02.25-.04.49-.09.96-.21 1.42-.36l.09-.03c1.93-.67 3.59-1.91 4.78-3.53.04-.05.08-.1.12-.16.12-.17.23-.35.34-.53.05-.08.1-.16.15-.25.1-.17.19-.34.27-.51.05-.11.1-.21.15-.32.07-.16.14-.32.21-.49.05-.13.1-.26.14-.39.05-.15.11-.31.15-.46.05-.16.08-.32.12-.48.03-.14.07-.28.1-.42.04-.19.06-.39.09-.59.02-.12.04-.23.05-.35.05-.32.07-.64.07-.97 0-5.52-4.48-10-10-10zm0 18a7.94 7.94 0 01-6.15-2.89c.84-.44 1.86-.82 2.67-1.19 1.45-.65 1.3-1.05 1.35-1.59.01-.07.01-.14.01-.21-.51-.45-.93-1.08-1.2-1.8l-.01-.01c0-.01-.01-.02-.01-.03a4.42 4.42 0 01-.15-.48c-.33-.07-.53-.44-.61-.79-.08-.14-.23-.48-.2-.87.05-.51.26-.74.49-.83v-.08c0-.63.06-1.55.17-2.15.02-.17.06-.33.11-.5.21-.73.66-1.4 1.26-1.86.62-.47 1.5-.72 2.28-.72.78 0 1.65.25 2.27.73.6.46 1.05 1.12 1.26 1.86.05.16.08.33.11.5.11.6.17 1.51.17 2.15v.09c.22.1.42.33.46.82.04.39-.12.73-.2.87-.07.34-.27.71-.6.78-.04.16-.09.33-.15.48 0 .01-.02.05-.02.05-.26.71-.67 1.33-1.17 1.78 0 .08.01.16.01.23.05.54-.15.94 1.31 1.59.81.36 1.84.74 2.68 1.19A7.958 7.958 0 0110 18z", - ], - variable: [ - "M4.93 3.79a9.1 9.1 0 012.2-2.27L7.29 1c-1.38.59-2.57 1.33-3.55 2.22C2.46 4.39 1.49 5.72.83 7.23.28 8.51 0 9.81 0 11.12c0 2.28.83 4.57 2.49 6.86l.16-.55c-.49-1.23-.73-2.38-.73-3.44 0-1.67.28-3.46.84-5.36.55-1.9 1.28-3.51 2.17-4.84zm9.38 8.39l-.33-.2c-.37.54-.65.87-.82 1a.74.74 0 01-.42.12c-.19 0-.38-.12-.57-.37-.31-.42-.73-1.59-1.26-3.5.47-.85.86-1.41 1.19-1.67.23-.19.48-.29.74-.29.1 0 .28.04.53.11.26.07.48.11.68.11.27 0 .5-.1.68-.29.18-.19.27-.44.27-.75 0-.33-.09-.58-.27-.77-.18-.19-.44-.29-.78-.29-.3 0-.59.07-.86.22s-.61.47-1.02.97c-.31.37-.77 1.02-1.37 1.94a9.683 9.683 0 00-1.24-3.14l-3.24.59-.06.36c.24-.05.44-.07.61-.07.32 0 .59.14.8.43.33.45.8 1.8 1.39 4.07-.47.64-.78 1.06-.96 1.26-.28.32-.52.53-.7.62-.14.08-.3.11-.48.11-.14 0-.36-.08-.67-.23-.21-.1-.4-.15-.57-.15-.31 0-.57.11-.78.32s-.31.48-.31.8c0 .31.09.55.28.75.19.19.44.29.76.29.31 0 .6-.07.87-.2s.61-.42 1.02-.86c.41-.44.98-1.13 1.7-2.08.28.9.52 1.56.72 1.97.2.41.44.71.7.89.26.18.59.27.99.27.38 0 .77-.14 1.17-.43.54-.36 1.07-1 1.61-1.91zM17.51 1l-.15.54c.49 1.24.73 2.39.73 3.45 0 1.43-.21 2.96-.63 4.6-.33 1.26-.75 2.45-1.27 3.55-.52 1.11-1.02 1.97-1.51 2.6-.49.62-1.09 1.2-1.8 1.72l-.17.53c1.38-.59 2.57-1.34 3.55-2.23 1.29-1.17 2.26-2.5 2.91-4 .55-1.28.83-2.59.83-3.91 0-2.27-.83-4.56-2.49-6.85z", - ], - "vertical-bar-chart-asc": [ - "M8 7H7c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zM3 9H2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1zm10-5h-1c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm5-4h-1c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z", - ], - "vertical-bar-chart-desc": [ - "M3 0H2c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm5 4H7c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm5 3h-1c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm5 2h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1z", - ], - "vertical-distribution": [ - "M1 2h18c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1s.45 1 1 1zm2 5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1H3zm16 11H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - video: [ - "M19 2H1c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zM7 14V6l6 4-6 4z", - ], - virus: [ - "M15.249 13.835l1.251 1.251.354-.354.087-.077a1 1 0 011.327 1.491l-2.122 2.122-.087.077a1 1 0 01-1.327-1.491l.354-.354-1.251-1.251A6.466 6.466 0 0111 16.424L10.999 18h.501a1 1 0 01.117 1.993L11.5 20h-3a1 1 0 01-.117-1.993L8.5 18h.499v-1.577a6.46 6.46 0 01-2.538-.97L5.414 16.5l.354.354a1 1 0 01-1.327 1.491l-.087-.077-2.122-2.122a1 1 0 011.327-1.491l.087.077.354.354.97-.97a6.472 6.472 0 01-1.384-3.057l-.025.002L2 11.06v.44a1 1 0 01-1.993.117L0 11.5v-3a1 1 0 011.993-.117L2 8.5v.56h1.567A6.471 6.471 0 014.97 5.883l-.971-.969-.353.354-.087.077a1 1 0 01-1.327-1.491l2.122-2.122.087-.077a1 1 0 011.327 1.491l-.354.353 1.047 1.048A6.46 6.46 0 019 3.577L9 2h-.5A1 1 0 018.383.007L8.5 0h3a1 1 0 01.117 1.993L11.5 2H11v1.577a6.466 6.466 0 012.838 1.176l.04-.046L15.086 3.5l-.353-.353a1 1 0 011.327-1.491l.087.077 2.122 2.122a1 1 0 01-1.327 1.491l-.087-.077-.354-.354-1.207 1.207-.046.041a6.467 6.467 0 011.16 2.733H18V8.5a1 1 0 011.993-.117L20 8.5v3a1 1 0 01-1.993.117L18 11.5v-.605h-1.561a6.466 6.466 0 01-1.19 2.94zM12.5 11a1.5 1.5 0 100 3 1.5 1.5 0 000-3zM8 6a2 2 0 100 4 2 2 0 000-4z", - ], - "volume-down": [ - "M15.92 3.93l-1.6 1.18A7.948 7.948 0 0116 10c0 1.84-.63 3.54-1.68 4.89l1.6 1.18A9.878 9.878 0 0018 10c0-2.29-.78-4.39-2.08-6.07zM11 3c-.28 0-.53.11-.71.29L7.59 6H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h4.59l2.71 2.71c.17.18.42.29.7.29.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - "volume-off": [ - "M14 3c-.28 0-.53.11-.71.29L10.59 6H6c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h4.59l2.71 2.71c.17.18.42.29.7.29.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z", - ], - "volume-up": [ - "M9 3.43c-.28 0-.53.11-.71.29l-2.7 2.71H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h4.59l2.71 2.71a1.003 1.003 0 001.71-.71v-12c-.01-.55-.46-1-1.01-1zm8.31-1.56l-1.62 1.2C17.14 5.16 18 7.69 18 10.43s-.86 5.27-2.31 7.37l1.62 1.2C19 16.57 20 13.62 20 10.43c0-3.18-1-6.13-2.69-8.56zm-3.39 2.49l-1.6 1.18A7.948 7.948 0 0114 10.43c0 1.84-.63 3.54-1.68 4.89l1.6 1.18A9.94 9.94 0 0016 10.43c0-2.28-.78-4.38-2.08-6.07z", - ], - walk: [ - "M16 10h-2c-.23 0-.42-.09-.59-.21l-.01.01-1.69-1.27-.63 3.14 2.62 2.62c.19.18.3.43.3.71v4c0 .55-.45 1-1 1s-1-.45-1-1v-3.59L9.39 12.8l-2.45 6.55h-.01c-.14.38-.5.65-.93.65-.55 0-1-.45-1-1 0-.12.03-.24.07-.35h-.01L9.43 7h-2.9l-1.7 2.55-.01-.01c-.18.27-.47.46-.82.46-.55 0-1-.45-1-1 0-.21.08-.39.18-.54l-.01-.01 2-3 .02.01C5.36 5.19 5.65 5 6 5h4.18l.36-.96c-.33-.43-.54-.96-.54-1.54a2.5 2.5 0 015 0A2.5 2.5 0 0112.5 5c-.06 0-.12-.01-.18-.02l-.44 1.18L14.33 8H16c.55 0 1 .45 1 1s-.45 1-1 1z", - ], - "warning-sign": [ - "M19.86 17.52l.01-.01-9-16-.01.01C10.69 1.21 10.37 1 10 1s-.69.21-.86.52l-.01-.01-9 16 .01.01c-.08.14-.14.3-.14.48 0 .55.45 1 1 1h18c.55 0 1-.45 1-1 0-.18-.06-.34-.14-.48zM11 17H9v-2h2v2zm0-3H9V6h2v8z", - ], - "waterfall-chart": [ - "M13 7h2c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zm-9 8h1c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm4-6h2c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm11-5h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm0 12H2V3c0-.55-.45-1-1-1s-1 .45-1 1v14a.998.998 0 001 1h18c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - waves: [ - "M4.948 2.682a1 1 0 00-1.897.001l-.005.016-.027.074a6.05 6.05 0 01-.6 1.172C1.958 4.635 1.468 5 .999 5a1 1 0 000 2c1.457 0 2.442-1.027 3-1.825C4.558 5.973 5.543 7 7 7s2.442-1.027 3-1.825C10.558 5.973 11.543 7 13 7s2.442-1.027 3-1.825C16.558 5.973 17.544 7 19 7a1 1 0 100-2c-.47 0-.958-.365-1.418-1.055a6.048 6.048 0 01-.628-1.246l-.006-.016a1 1 0 00-1.896 0l-.006.016a5.868 5.868 0 01-.147.364c-.11.246-.272.568-.481.882C13.958 4.635 13.469 5 13 5c-.47 0-.958-.365-1.418-1.055a6.048 6.048 0 01-.628-1.246l-.006-.016a1 1 0 00-1.897 0l-.005.016-.027.074a6.05 6.05 0 01-.6 1.172C7.958 4.635 7.468 5 6.999 5c-.47 0-.958-.365-1.418-1.055A6.05 6.05 0 014.954 2.7l-.006-.016v-.001zm0 6a1 1 0 00-1.897.001l-.005.016-.027.074a6.05 6.05 0 01-.6 1.172c-.46.69-.95 1.055-1.419 1.055a1 1 0 100 2c1.457 0 2.442-1.027 3-1.825C4.558 11.973 5.543 13 7 13s2.442-1.027 3-1.825c.558.798 1.543 1.825 3 1.825s2.442-1.027 3-1.825c.558.798 1.544 1.825 3 1.825a1 1 0 100-2c-.47 0-.958-.365-1.418-1.055a6.048 6.048 0 01-.628-1.246l-.006-.016a1 1 0 00-1.896 0l-.006.016a5.868 5.868 0 01-.147.364c-.11.246-.272.568-.481.882-.46.69-.949 1.055-1.418 1.055-.47 0-.958-.365-1.418-1.055a6.048 6.048 0 01-.628-1.246l-.006-.016a1 1 0 00-1.897 0l-.005.016-.027.074a6.05 6.05 0 01-.6 1.172c-.46.69-.95 1.055-1.419 1.055-.47 0-.958-.365-1.418-1.055A6.05 6.05 0 014.954 8.7l-.006-.016zm-1.896-6zm1.896 12l.006.017.027.074a6.053 6.053 0 00.6 1.172c.46.69.95 1.055 1.419 1.055.47 0 .958-.365 1.418-1.055a6.053 6.053 0 00.628-1.246l.005-.016a1 1 0 011.897 0l.006.016.027.074a6.051 6.051 0 00.6 1.172c.46.69.95 1.055 1.419 1.055.47 0 .958-.365 1.418-1.055a6.051 6.051 0 00.628-1.246l.006-.016a1 1 0 011.896 0l.006.016.027.074a6.051 6.051 0 00.6 1.172c.46.69.95 1.055 1.419 1.055a1 1 0 110 2c-1.456 0-2.442-1.027-3-1.825-.558.798-1.543 1.825-3 1.825s-2.442-1.027-3-1.825C9.442 17.973 8.457 19 7 19s-2.442-1.027-3-1.825C3.442 17.973 2.457 19 1 19a1 1 0 110-2c.47 0 .958-.365 1.418-1.055a6.053 6.053 0 00.628-1.246l.005-.016a1 1 0 011.897-.001z", - ], - widget: [ - "M18 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM2 16c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm15-1h2V5h-2v10zM3 5H1v10h2V5zM2 0C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm3 3h10V1H5v2zm13 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM5 19h10v-2H5v2z", - ], - "widget-button": [ - "M1 4h18c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1zm1 2v8h16V6H2zm4 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", - ], - "widget-footer": [ - "M17 0H3c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18H4v-4h12v4zm0-5H4V2h12v11z", - ], - "widget-header": [ - "M17 0H3c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18H4V7h12v11zm0-12H4V2h12v4z", - ], - wind: [ - "M12 6a3 3 0 113 3H4a1 1 0 000 2h11a5 5 0 10-5-5 1 1 0 102 0zM1 12a1 1 0 100 2h10a2 2 0 110 4c-.934 0-1.803-.614-2.057-1.333a1 1 0 10-1.886.666C7.627 18.944 9.321 20 11 20a4 4 0 000-8H1z", - ], - wrench: [ - "M19.8 4.44L16.13 8.1l-3.55-.71-.71-3.53L15.54.21c-2.01-.53-4.23-.03-5.8 1.53-1.86 1.85-2.23 4.6-1.14 6.83L.59 16.59C.22 16.95 0 17.45 0 18a2 2 0 002 2c.55 0 1.05-.22 1.41-.59l8.03-8.04c2.23 1.05 4.97.67 6.82-1.16 1.57-1.56 2.07-3.77 1.54-5.77z", - ], - "zoom-in": [ - "M19.56 17.44l-4.94-4.94A8.004 8.004 0 0016 8c0-4.42-3.58-8-8-8S0 3.58 0 8s3.58 8 8 8c1.67 0 3.21-.51 4.5-1.38l4.94 4.94a1.498 1.498 0 102.12-2.12zM8 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm3-7H9V5c0-.55-.45-1-1-1s-1 .45-1 1v2H5c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V9h2c.55 0 1-.45 1-1s-.45-1-1-1z", - ], - "zoom-out": [ - "M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm8.56 10.44l-4.94-4.94A8.004 8.004 0 0016 8c0-4.42-3.58-8-8-8S0 3.58 0 8s3.58 8 8 8c1.67 0 3.21-.51 4.5-1.38l4.94 4.94a1.498 1.498 0 102.12-2.12zM8 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z", - ], - "zoom-to-fit": [ - "M1 7c.55 0 1-.45 1-1V2h4c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v5c0 .55.45 1 1 1zm5 1a1.003 1.003 0 00-1.71-.71l-2 2c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L4.41 10 5.7 8.71c.19-.18.3-.43.3-.71zm2-2c.28 0 .53-.11.71-.29L10 4.41l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2C10.53 2.11 10.28 2 10 2s-.53.11-.71.29l-2 2A1.003 1.003 0 008 6zM6 18H2v-4c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm8-6a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42l1.3 1.29-1.29 1.29c-.19.18-.3.43-.3.71zm5-12h-5c-.55 0-1 .45-1 1s.45 1 1 1h4v4c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm-7 14c-.28 0-.53.11-.71.29L10 15.59 8.71 14.3A.965.965 0 008 14a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 0012 14zm7-1c-.55 0-1 .45-1 1v4h-4c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1z", - ], - }; - !(function (e) { - (e[(e.STANDARD = 16)] = "STANDARD"), (e[(e.LARGE = 20)] = "LARGE"); - })(En || (En = {})); - var kn, - _n = (function (t) { - function n() { - return (null !== t && t.apply(this, arguments)) || this; - } - return ( - Ve(n, t), - (n.prototype.render = function () { - var t = this.props.icon; - if (null == t || "boolean" === typeof t) return null; - if ("string" !== typeof t) return t; - var n = this.props, - c = n.className, - r = n.color, - a = n.htmlTitle, - o = n.iconSize, - l = n.intent, - i = n.size, - s = - void 0 === i - ? null !== o && void 0 !== o - ? o - : En.STANDARD - : i, - u = n.title, - h = n.tagName, - f = void 0 === h ? "span" : h, - p = we(n, [ - "className", - "color", - "htmlTitle", - "iconSize", - "intent", - "size", - "title", - "tagName", - ]), - v = s >= En.LARGE ? En.LARGE : En.STANDARD, - d = this.renderSvgPaths(v, t), - m = Oe()( - mn, - (function (e) { - if (null != e) - return 0 === e.indexOf(at + "-icon-") - ? e - : at + "-icon-" + e; - })(t), - gn(l), - c - ), - z = "0 0 " + v + " " + v; - return e.createElement( - f, - Le(Le({}, p), { - "aria-hidden": !u || void 0, - className: m, - title: a, - }), - e.createElement( - "svg", - { fill: r, "data-icon": t, width: s, height: s, viewBox: z }, - u && e.createElement("desc", null, u), - d - ) - ); - }), - (n.prototype.renderSvgPaths = function (t, n) { - var c = (t === En.STANDARD ? An : xn)[n]; - return null == c - ? null - : c.map(function (t, n) { - return e.createElement("path", { - key: n, - d: t, - fillRule: "evenodd", - }); - }); - }), - (n.displayName = "Blueprint3.Icon"), - (n.SIZE_STANDARD = En.STANDARD), - (n.SIZE_LARGE = En.LARGE), - (n = Ce([Sn.polyfill], n)) - ); - })(bn); - !(function (e) { - (e[(e.SMALL = 20)] = "SMALL"), - (e[(e.STANDARD = 50)] = "STANDARD"), - (e[(e.LARGE = 100)] = "LARGE"); - })(kn || (kn = {})); - var On = 45, - Pn = "M 50,50 m 0,-45 a 45,45 0 1 1 0,90 a 45,45 0 1 1 0,-90", - Nn = 280, - Tn = (function (t) { - function n() { - return (null !== t && t.apply(this, arguments)) || this; - } - return ( - Ve(n, t), - (n.prototype.componentDidUpdate = function (e) { - e.value !== this.props.value && this.forceUpdate(); - }), - (n.prototype.render = function () { - var t, - n = this.props, - c = n.className, - r = n.intent, - a = n.value, - o = n.tagName, - l = void 0 === o ? "div" : o, - i = this.getSize(), - s = Oe()(on, gn(r), (((t = {})[un] = null != a), t), c), - u = Math.min(16, (4 * kn.LARGE) / i), - h = - Nn - - Nn * - (null == a - ? 0.25 - : (function (e, t, n) { - if (null == e) return e; - if (n < t) - throw new Error( - "[Blueprint] clamp: max cannot be less than min" - ); - return Math.min(Math.max(e, t), n); - })(a, 0, 1)); - return e.createElement( - l, - { className: s, role: "progressbar" }, - e.createElement( - l, - { className: ln }, - e.createElement( - "svg", - { - width: i, - height: i, - strokeWidth: u.toFixed(2), - viewBox: this.getViewBox(u), - }, - e.createElement("path", { className: hn, d: Pn }), - e.createElement("path", { - className: sn, - d: Pn, - pathLength: Nn, - strokeDasharray: "280 280", - strokeDashoffset: h, - }) - ) - ) - ); - }), - (n.prototype.validateProps = function (e) { - var t = e.className, - n = void 0 === t ? "" : t; - null != e.size && - (n.indexOf(gt) >= 0 || n.indexOf(vt) >= 0) && - console.warn( - "[Blueprint] Classes.SMALL/LARGE are ignored if size prop is set." - ); - }), - (n.prototype.getSize = function () { - var e = this.props, - t = e.className, - n = void 0 === t ? "" : t, - c = e.size; - return null == c - ? n.indexOf(gt) >= 0 - ? kn.SMALL - : n.indexOf(vt) >= 0 - ? kn.LARGE - : kn.STANDARD - : Math.max(10, c); - }), - (n.prototype.getViewBox = function (e) { - var t = On + e / 2, - n = (50 - t).toFixed(2), - c = (2 * t).toFixed(2); - return n + " " + n + " " + c + " " + c; - }), - (n.displayName = "Blueprint3.Spinner"), - (n.SIZE_SMALL = kn.SMALL), - (n.SIZE_STANDARD = kn.STANDARD), - (n.SIZE_LARGE = kn.LARGE), - (n = Ce([Sn.polyfill], n)) - ); - })(bn), - jn = (function (t) { - function n() { - var e = (null !== t && t.apply(this, arguments)) || this; - return ( - (e.state = { isActive: !1 }), - (e.handleKeyDown = function (t) { - var n, c; - Pe(t.which) && - (t.preventDefault(), - t.which !== e.currentKeyDown && e.setState({ isActive: !0 })), - (e.currentKeyDown = t.which), - null === (c = (n = e.props).onKeyDown) || - void 0 === c || - c.call(n, t); - }), - (e.handleKeyUp = function (t) { - var n, c, r; - Pe(t.which) && - (e.setState({ isActive: !1 }), - null === (n = e.buttonRef) || void 0 === n || n.click()), - (e.currentKeyDown = void 0), - null === (r = (c = e.props).onKeyUp) || - void 0 === r || - r.call(c, t); - }), - (e.handleBlur = function (t) { - var n, c; - e.state.isActive && e.setState({ isActive: !1 }), - null === (c = (n = e.props).onBlur) || - void 0 === c || - c.call(n, t); - }), - e - ); - } - return ( - Ve(n, t), - (n.prototype.getCommonButtonProps = function () { - var e, - t = this.props, - n = t.active, - c = t.alignText, - r = t.fill, - a = t.large, - o = t.loading, - l = t.outlined, - i = t.minimal, - s = t.small, - u = t.tabIndex, - h = this.props.disabled || o; - return { - className: Oe()( - Ct, - (((e = {})[ot] = !h && (n || this.state.isActive)), - (e[ut] = h), - (e[ht] = r), - (e[vt] = a), - (e[dt] = o), - (e[mt] = i), - (e[zt] = l), - (e[gt] = s), - e), - zn(c), - gn(this.props.intent), - this.props.className - ), - disabled: h, - onBlur: this.handleBlur, - onClick: h ? void 0 : this.props.onClick, - onKeyDown: this.handleKeyDown, - onKeyUp: this.handleKeyUp, - tabIndex: h ? -1 : u, - }; - }), - (n.prototype.renderChildren = function () { - var t = this.props, - n = t.children, - c = t.icon, - r = t.loading, - a = t.rightIcon, - o = t.text; - return [ - r && - e.createElement(Tn, { - key: "loading", - className: St, - size: En.LARGE, - }), - e.createElement(_n, { key: "leftIcon", icon: c }), - (!Vn(o) || !Vn(n)) && - e.createElement("span", { key: "text", className: At }, o, n), - e.createElement(_n, { key: "rightIcon", icon: a }), - ]; - }), - n - ); - })(bn), - Rn = (function (t) { - function n() { - var e = (null !== t && t.apply(this, arguments)) || this; - return ( - (e.buttonRef = null), - (e.handleRef = ke(e, "buttonRef", e.props.elementRef)), - e - ); - } - return ( - Ve(n, t), - (n.prototype.render = function () { - return e.createElement( - "button", - Le( - { type: "button", ref: this.handleRef }, - Ae(this.props), - this.getCommonButtonProps() - ), - this.renderChildren() - ); - }), - (n.prototype.componentDidUpdate = function (e) { - e.elementRef !== this.props.elementRef && - (xe(e.elementRef, null), - (this.handleRef = ke(this, "buttonRef", this.props.elementRef)), - xe(this.props.elementRef, this.buttonRef)); - }), - (n.displayName = "Blueprint3.Button"), - n - ); - })(jn), - Dn = (function (t) { - function n() { - var e = (null !== t && t.apply(this, arguments)) || this; - return ( - (e.buttonRef = null), - (e.handleRef = ke(e, "buttonRef", e.props.elementRef)), - e - ); - } - return ( - Ve(n, t), - (n.prototype.render = function () { - var t = this.props, - n = t.href, - c = t.tabIndex, - r = void 0 === c ? 0 : c, - a = this.getCommonButtonProps(); - return e.createElement( - "a", - Le({ role: "button", ref: this.handleRef }, Ae(this.props), a, { - href: a.disabled ? void 0 : n, - tabIndex: a.disabled ? -1 : r, - }), - this.renderChildren() - ); - }), - (n.prototype.componentDidUpdate = function (e) { - e.elementRef !== this.props.elementRef && - (xe(e.elementRef, null), - (this.handleRef = ke(this, "buttonRef", this.props.elementRef)), - xe(this.props.elementRef, this.buttonRef)); - }), - (n.displayName = "Blueprint3.AnchorButton"), - n - ); - })(jn), - Fn = (function (t) { - function n() { - return (null !== t && t.apply(this, arguments)) || this; - } - return ( - Ve(n, t), - (n.prototype.render = function () { - var t, - n = this.props, - c = n.className, - r = n.elevation, - a = n.interactive, - o = we(n, ["className", "elevation", "interactive"]), - l = Oe()(xt, (((t = {})[pt] = a), t), yn(r), c); - return e.createElement("div", Le({ className: l }, o)); - }), - (n.displayName = "Blueprint3.Card"), - (n.defaultProps = { elevation: Ie, interactive: !1 }), - (n = Ce([Sn.polyfill], n)) - ); - })(bn), - In = (function (t) { - function n() { - var e = (null !== t && t.apply(this, arguments)) || this; - return ( - (e.state = { - hasPendingUpdate: !1, - isComposing: !1, - nextValue: e.props.value, - value: e.props.value, - }), - (e.handleCompositionStart = function (t) { - var n, c; - e.setState({ isComposing: !0, nextValue: e.state.value }), - null === (c = (n = e.props).onCompositionStart) || - void 0 === c || - c.call(n, t); - }), - (e.handleCompositionEnd = function (t) { - var n, c; - e.setState({ isComposing: !1 }), - null === (c = (n = e.props).onCompositionEnd) || - void 0 === c || - c.call(n, t); - }), - (e.handleChange = function (t) { - var n, - c, - r = t.target.value; - e.setState({ nextValue: r }), - null === (c = (n = e.props).onChange) || - void 0 === c || - c.call(n, t); - }), - e - ); - } - return ( - Ve(n, t), - (n.getDerivedStateFromProps = function (e, t) { - return t.isComposing || void 0 === e.value - ? null - : t.nextValue !== t.value - ? e.value === t.nextValue - ? t.hasPendingUpdate - ? { value: e.value, hasPendingUpdate: !1 } - : { value: t.nextValue } - : e.value === t.value - ? { hasPendingUpdate: !0 } - : { value: e.value, nextValue: e.value, hasPendingUpdate: !1 } - : { value: e.value, nextValue: e.value, hasPendingUpdate: !1 }; - }), - (n.prototype.render = function () { - var t = this.state, - n = t.isComposing, - c = t.hasPendingUpdate, - r = t.value, - a = t.nextValue, - o = this.props, - l = o.inputRef, - i = we(o, ["inputRef"]); - return e.createElement( - "input", - Le({}, i, { - ref: l, - value: n || c ? a : r, - onCompositionStart: this.handleCompositionStart, - onCompositionEnd: this.handleCompositionEnd, - onChange: this.handleChange, - }) - ); - }), - (n.displayName = "Blueprint3.AsyncControllableInput"), - (n = Ce([Sn.polyfill], n)) - ); - })(e.PureComponent), - Un = (function (t) { - function n() { - var e = (null !== t && t.apply(this, arguments)) || this; - return ( - (e.state = {}), - (e.leftElement = null), - (e.rightElement = null), - (e.refHandlers = { - leftElement: function (t) { - return (e.leftElement = t); - }, - rightElement: function (t) { - return (e.rightElement = t); - }, - }), - e - ); - } - return ( - Ve(n, t), - (n.prototype.render = function () { - var t, - n = this.props, - c = n.asyncControl, - r = void 0 !== c && c, - a = n.className, - o = n.disabled, - l = n.fill, - i = n.inputRef, - s = n.intent, - u = n.large, - h = n.small, - f = n.round, - p = Oe()( - _t, - gn(s), - (((t = {})[ut] = o), - (t[ht] = l), - (t[vt] = u), - (t[gt] = h), - (t[yt] = f), - t), - a - ), - v = Le(Le({}, this.props.style), { - paddingLeft: this.state.leftElementWidth, - paddingRight: this.state.rightElementWidth, - }), - d = Le(Le({ type: "text" }, Ae(this.props)), { - className: kt, - style: v, - }); - return e.createElement( - "div", - { className: p }, - this.maybeRenderLeftElement(), - r - ? e.createElement(In, Le({}, d, { inputRef: i })) - : e.createElement("input", Le({}, d, { ref: i })), - this.maybeRenderRightElement() - ); - }), - (n.prototype.componentDidMount = function () { - this.updateInputWidth(); - }), - (n.prototype.componentDidUpdate = function (e) { - var t = this.props, - n = t.leftElement, - c = t.rightElement; - (e.leftElement === n && e.rightElement === c) || - this.updateInputWidth(); - }), - (n.prototype.validateProps = function (e) { - null != e.leftElement && - null != e.leftIcon && - console.warn( - "[Blueprint] leftElement and leftIcon prop are mutually exclusive, with leftElement taking priority." - ); - }), - (n.prototype.maybeRenderLeftElement = function () { - var t = this.props, - n = t.leftElement, - c = t.leftIcon; - return null != n - ? e.createElement( - "span", - { className: Ot, ref: this.refHandlers.leftElement }, - n - ) - : null != c - ? e.createElement(_n, { icon: c }) - : void 0; - }), - (n.prototype.maybeRenderRightElement = function () { - var t = this.props.rightElement; - if (null != t) - return e.createElement( - "span", - { className: Pt, ref: this.refHandlers.rightElement }, - t - ); - }), - (n.prototype.updateInputWidth = function () { - var e = this.state, - t = e.leftElementWidth, - n = e.rightElementWidth; - if (null != this.leftElement) { - var c = this.leftElement.clientWidth; - (void 0 === t || Math.abs(c - t) > 2) && - this.setState({ leftElementWidth: c }); - } else this.setState({ leftElementWidth: void 0 }); - if (null != this.rightElement) { - c = this.rightElement.clientWidth; - (void 0 === n || Math.abs(c - n) > 2) && - this.setState({ rightElementWidth: c }); - } else this.setState({ rightElementWidth: void 0 }); - }), - (n.displayName = "Blueprint3.InputGroup"), - (n = Ce([Sn.polyfill], n)) - ); - })(bn); - function Bn(t, n) { - return function (c) { - var r = c.className, - a = c.elementRef, - o = we(c, ["className", "elementRef"]); - return e.createElement( - t, - Le(Le({}, o), { className: Oe()(n, r), ref: a }) - ); - }; - } - Bn("h1", Lt), Bn("h2", Lt), Bn("h3", Lt), Bn("h4", Lt), Bn("h5", Lt); - var Wn = Bn("h6", Lt), - $n = - (Bn("blockquote", Ht), - Bn("code", bt), - Bn("pre", Vt), - Bn("label", Nt), - Bn("ol", wt), - Bn("ul", wt), - (function (t) { - function n() { - return (null !== t && t.apply(this, arguments)) || this; - } - return ( - Ve(n, t), - (n.prototype.render = function () { - var t = this.props, - n = t.className, - c = we(t, ["className"]); - return e.createElement( - "div", - Le({ className: Oe()(Dt, n) }, c) - ); - }), - (n.displayName = "Blueprint3.NavbarDivider"), - (n = Ce([Sn.polyfill], n)) - ); - })(bn)), - Kn = (function (t) { - function n() { - return (null !== t && t.apply(this, arguments)) || this; - } - return ( - Ve(n, t), - (n.prototype.render = function () { - var t = this.props, - n = t.align, - c = t.children, - r = t.className, - a = we(t, ["align", "children", "className"]), - o = Oe()(jt, zn(n), r); - return e.createElement("div", Le({ className: o }, a), c); - }), - (n.displayName = "Blueprint3.NavbarGroup"), - (n.defaultProps = { align: De }), - (n = Ce([Sn.polyfill], n)) - ); - })(bn), - qn = (function (t) { - function n() { - return (null !== t && t.apply(this, arguments)) || this; - } - return ( - Ve(n, t), - (n.prototype.render = function () { - var t = this.props, - n = t.children, - c = t.className, - r = we(t, ["children", "className"]); - return e.createElement( - "div", - Le({ className: Oe()(Rt, c) }, r), - n - ); - }), - (n.displayName = "Blueprint3.NavbarHeading"), - (n = Ce([Sn.polyfill], n)) - ); - })(bn), - Gn = (function (t) { - function n() { - return (null !== t && t.apply(this, arguments)) || this; - } - return ( - Ve(n, t), - (n.prototype.render = function () { - var t, - n = this.props, - c = n.children, - r = n.className, - a = n.fixedToTop, - o = we(n, ["children", "className", "fixedToTop"]), - l = Oe()(Tt, (((t = {})[ft] = a), t), r); - return e.createElement("div", Le({ className: l }, o), c); - }), - (n.displayName = "Blueprint3.Navbar"), - (n.Divider = $n), - (n.Group = Kn), - (n.Heading = qn), - (n = Ce([Sn.polyfill], n)) - ); - })(bn), - Qn = n(8267); - function Yn(e) { - return "function" === typeof e; - } - var Xn = !Yn(t.createPortal), - Jn = { - blueprintPortalClassName: function (e, t) { - if (null != e[t] && "string" !== typeof e[t]) - return new Error( - "[Blueprint] context blueprintPortalClassName must be string" - ); - }, - }, - Zn = (function (n) { - function c() { - var e = (null !== n && n.apply(this, arguments)) || this; - return ( - (e.context = {}), - (e.state = { hasMounted: !1 }), - (e.portalElement = null), - e - ); - } - return ( - Ve(c, n), - (c.prototype.render = function () { - return Xn || - "undefined" === typeof document || - !this.state.hasMounted || - null === this.portalElement - ? null - : t.createPortal(this.props.children, this.portalElement); - }), - (c.prototype.componentDidMount = function () { - this.props.container && - ((this.portalElement = this.createContainerElement()), - this.props.container.appendChild(this.portalElement), - this.setState({ hasMounted: !0 }, this.props.onChildrenMount), - Xn && this.unstableRenderNoPortal()); - }), - (c.prototype.componentDidUpdate = function (e) { - var t, n; - null != this.portalElement && - e.className !== this.props.className && - ((t = this.portalElement.classList), - null != (n = e.className) && - "" !== n && - t.remove.apply(t, n.split(" ")), - ec(this.portalElement.classList, this.props.className)), - Xn && this.unstableRenderNoPortal(); - }), - (c.prototype.componentWillUnmount = function () { - null != this.portalElement && - (Xn && t.unmountComponentAtNode(this.portalElement), - this.portalElement.remove()); - }), - (c.prototype.createContainerElement = function () { - var e = document.createElement("div"); - return ( - e.classList.add(an), - ec(e.classList, this.props.className), - null != this.context && - ec(e.classList, this.context.blueprintPortalClassName), - e - ); - }), - (c.prototype.unstableRenderNoPortal = function () { - null !== this.portalElement && - t.unstable_renderSubtreeIntoContainer( - this, - e.createElement("div", null, this.props.children), - this.portalElement - ); - }), - (c.displayName = "Blueprint3.Portal"), - (c.contextTypes = Jn), - (c.defaultProps = { - container: - "undefined" !== typeof document ? document.body : void 0, - }), - c - ); - })(e.Component); - function ec(e, t) { - null != t && "" !== t && e.add.apply(e, t.split(" ")); - } - var tc = (function (n) { - function c() { - var c = (null !== n && n.apply(this, arguments)) || this; - return ( - (c.isAutoFocusing = !1), - (c.state = { hasEverOpened: c.props.isOpen }), - (c.containerElement = null), - (c.startFocusTrapElement = null), - (c.endFocusTrapElement = null), - (c.refHandlers = { - container: function (e) { - return (c.containerElement = (0, t.findDOMNode)(e)); - }, - endFocusTrap: function (e) { - return (c.endFocusTrapElement = e); - }, - startFocusTrap: function (e) { - return (c.startFocusTrapElement = e); - }, - }), - (c.maybeRenderChild = function (t) { - if ((Yn(t) && (t = t()), null == t)) return null; - var n = - "object" === typeof t - ? e.cloneElement(t, { - className: Oe()(t.props.className, Ut), - }) - : e.createElement("span", { className: Ut }, t), - r = c.props, - a = r.onOpening, - o = r.onOpened, - l = r.onClosing, - i = r.transitionDuration, - s = r.transitionName, - u = Qn.CSSTransition; - return e.createElement( - u, - { - classNames: s, - onEntering: a, - onEntered: o, - onExiting: l, - onExited: c.handleTransitionExited, - timeout: i, - addEndListener: c.handleTransitionAddEnd, - }, - n - ); - }), - (c.handleStartFocusTrapElementFocus = function (e) { - var t; - c.props.enforceFocus && - !c.isAutoFocusing && - null != e.relatedTarget && - c.containerElement.contains(e.relatedTarget) && - e.relatedTarget !== c.endFocusTrapElement && - (null === (t = c.endFocusTrapElement) || - void 0 === t || - t.focus({ preventScroll: !0 })); - }), - (c.handleStartFocusTrapElementKeyDown = function (e) { - var t; - if (c.props.enforceFocus && e.shiftKey && 9 === e.which) { - var n = c.getKeyboardFocusableElements().pop(); - null != n - ? n.focus() - : null === (t = c.endFocusTrapElement) || - void 0 === t || - t.focus({ preventScroll: !0 }); - } - }), - (c.handleEndFocusTrapElementFocus = function (e) { - var t, n; - if ( - null != e.relatedTarget && - c.containerElement.contains(e.relatedTarget) && - e.relatedTarget !== c.startFocusTrapElement - ) { - var r = c.getKeyboardFocusableElements().shift(); - c.isAutoFocusing || null == r || r === e.relatedTarget - ? null === (t = c.startFocusTrapElement) || - void 0 === t || - t.focus({ preventScroll: !0 }) - : r.focus(); - } else { - var a = c.getKeyboardFocusableElements().pop(); - null != a - ? a.focus() - : null === (n = c.startFocusTrapElement) || - void 0 === n || - n.focus({ preventScroll: !0 }); - } - }), - (c.handleTransitionExited = function (e) { - var t, n; - c.props.shouldReturnFocusOnClose && - c.lastActiveElementBeforeOpened instanceof HTMLElement && - c.lastActiveElementBeforeOpened.focus(), - null === (n = (t = c.props).onClosed) || - void 0 === n || - n.call(t, e); - }), - (c.handleBackdropMouseDown = function (e) { - var t, - n = c.props, - r = n.backdropProps, - a = n.canOutsideClickClose, - o = n.enforceFocus, - l = n.onClose; - a && (null === l || void 0 === l || l(e)), - o && c.bringFocusInsideOverlay(), - null === - (t = null === r || void 0 === r ? void 0 : r.onMouseDown) || - void 0 === t || - t.call(r, e); - }), - (c.handleDocumentClick = function (e) { - var t = c.props, - n = t.canOutsideClickClose, - a = t.isOpen, - o = t.onClose, - l = e.composed ? e.composedPath()[0] : e.target, - i = r.openStack.indexOf(c), - s = r.openStack.slice(i).some(function (e) { - var t = e.containerElement; - return t && t.contains(l) && !t.isSameNode(l); - }); - a && !s && n && (null === o || void 0 === o || o(e)); - }), - (c.handleDocumentFocus = function (e) { - var t = e.composed ? e.composedPath()[0] : e.target; - c.props.enforceFocus && - null != c.containerElement && - t instanceof Node && - !c.containerElement.contains(t) && - (e.preventDefault(), - e.stopImmediatePropagation(), - c.bringFocusInsideOverlay()); - }), - (c.handleKeyDown = function (e) { - var t = c.props, - n = t.canEscapeKeyClose, - r = t.onClose; - 27 === e.which && - n && - (null === r || void 0 === r || r(e), e.preventDefault()); - }), - (c.handleTransitionAddEnd = function () {}), - c - ); - } - var r; - return ( - Ve(c, n), - (r = c), - (c.getDerivedStateFromProps = function (e) { - var t = e.isOpen; - return t ? { hasEverOpened: t } : null; - }), - (c.prototype.render = function () { - var t, n; - if (this.props.lazy && !this.state.hasEverOpened) return null; - var c = this.props, - r = c.autoFocus, - a = c.children, - o = c.className, - l = c.enforceFocus, - i = c.usePortal, - s = c.isOpen, - u = - s && - null !== (n = e.Children.map(a, this.maybeRenderChild)) && - void 0 !== n - ? n - : [], - h = this.maybeRenderBackdrop(); - null !== h && u.unshift(h), - s && - (r || l) && - u.length > 0 && - (u.unshift( - this.renderDummyElement("__start", { - className: $t, - onFocus: this.handleStartFocusTrapElementFocus, - onKeyDown: this.handleStartFocusTrapElementKeyDown, - ref: this.refHandlers.startFocusTrap, - }) - ), - l && - u.push( - this.renderDummyElement("__end", { - className: Kt, - onFocus: this.handleEndFocusTrapElementFocus, - ref: this.refHandlers.endFocusTrap, - }) - )); - var f = Oe()(Ft, (((t = {})[Wt] = s), (t[Bt] = !i), t), o), - p = e.createElement( - Qn.TransitionGroup, - { - appear: !0, - "aria-live": "polite", - className: f, - component: "div", - onKeyDown: this.handleKeyDown, - ref: this.refHandlers.container, - }, - u - ); - return i - ? e.createElement( - Zn, - { - className: this.props.portalClassName, - container: this.props.portalContainer, - }, - p - ) - : p; - }), - (c.prototype.componentDidMount = function () { - this.props.isOpen && this.overlayWillOpen(); - }), - (c.prototype.componentDidUpdate = function (e) { - e.isOpen && !this.props.isOpen - ? this.overlayWillClose() - : !e.isOpen && this.props.isOpen && this.overlayWillOpen(); - }), - (c.prototype.componentWillUnmount = function () { - this.overlayWillClose(); - }), - (c.prototype.bringFocusInsideOverlay = function () { - var e = this; - return this.requestAnimationFrame(function () { - var t; - null != e.containerElement && - null != document.activeElement && - e.props.isOpen && - !e.containerElement.contains(document.activeElement) && - (null === (t = e.startFocusTrapElement) || - void 0 === t || - t.focus({ preventScroll: !0 }), - (e.isAutoFocusing = !1)); - }); - }), - (c.prototype.maybeRenderBackdrop = function () { - var t = this.props, - n = t.backdropClassName, - c = t.backdropProps, - r = t.hasBackdrop, - a = t.isOpen, - o = t.transitionDuration, - l = t.transitionName; - return r && a - ? e.createElement( - Qn.CSSTransition, - { - classNames: l, - key: "__backdrop", - timeout: o, - addEndListener: this.handleTransitionAddEnd, - }, - e.createElement( - "div", - Le({}, c, { - className: Oe()( - It, - n, - null === c || void 0 === c ? void 0 : c.className - ), - onMouseDown: this.handleBackdropMouseDown, - }) - ) - ) - : null; - }), - (c.prototype.renderDummyElement = function (t, n) { - var c = this.props, - r = c.transitionDuration, - a = c.transitionName; - return e.createElement( - Qn.CSSTransition, - { - classNames: a, - key: t, - addEndListener: this.handleTransitionAddEnd, - timeout: r, - unmountOnExit: !0, - }, - e.createElement("div", Le({ tabIndex: 0 }, n)) - ); - }), - (c.prototype.getKeyboardFocusableElements = function () { - return (null !== this.containerElement - ? Array.from( - this.containerElement.querySelectorAll( - [ - 'a[href]:not([tabindex="-1"])', - 'button:not([disabled]):not([tabindex="-1"])', - 'details:not([tabindex="-1"])', - 'input:not([disabled]):not([tabindex="-1"])', - 'select:not([disabled]):not([tabindex="-1"])', - 'textarea:not([disabled]):not([tabindex="-1"])', - '[tabindex]:not([tabindex="-1"])', - ].join(",") - ) - ) - : [] - ).filter(function (e) { - return !e.classList.contains($t) && !e.classList.contains(Kt); - }); - }), - (c.prototype.overlayWillClose = function () { - document.removeEventListener( - "focus", - this.handleDocumentFocus, - !0 - ), - document.removeEventListener( - "mousedown", - this.handleDocumentClick - ); - var e = r.openStack, - t = e.indexOf(this); - if (-1 !== t) { - if ((e.splice(t, 1), e.length > 0)) { - var n = r.getLastOpened(); - n.props.autoFocus && - n.props.enforceFocus && - (n.bringFocusInsideOverlay(), - document.addEventListener( - "focus", - n.handleDocumentFocus, - !0 - )); - } - 0 === - e.filter(function (e) { - return e.props.usePortal && e.props.hasBackdrop; - }).length && document.body.classList.remove(Wt); - } - }), - (c.prototype.overlayWillOpen = function () { - var e = r.getLastOpened, - t = r.openStack; - t.length > 0 && - document.removeEventListener( - "focus", - e().handleDocumentFocus, - !0 - ), - t.push(this), - this.props.autoFocus && - ((this.isAutoFocusing = !0), this.bringFocusInsideOverlay()), - this.props.enforceFocus && - document.addEventListener( - "focus", - this.handleDocumentFocus, - !0 - ), - this.props.canOutsideClickClose && - !this.props.hasBackdrop && - document.addEventListener( - "mousedown", - this.handleDocumentClick - ), - this.props.hasBackdrop && - this.props.usePortal && - document.body.classList.add(Wt), - (this.lastActiveElementBeforeOpened = document.activeElement); - }), - (c.displayName = "Blueprint3.Overlay"), - (c.defaultProps = { - autoFocus: !0, - backdropProps: {}, - canEscapeKeyClose: !0, - canOutsideClickClose: !0, - enforceFocus: !0, - hasBackdrop: !0, - isOpen: !1, - lazy: !0, - shouldReturnFocusOnClose: !0, - transitionDuration: 300, - transitionName: Ft, - usePortal: !0, - }), - (c.openStack = []), - (c.getLastOpened = function () { - return r.openStack[r.openStack.length - 1]; - }), - (c = r = Ce([Sn.polyfill], c)) - ); - })(bn), - nc = (function (t) { - function n() { - return (null !== t && t.apply(this, arguments)) || this; - } - return ( - Ve(n, t), - (n.prototype.render = function () { - var t, - n = this.props, - c = n.alignText, - r = n.className, - a = n.fill, - o = n.minimal, - l = n.large, - i = n.vertical, - s = we(n, [ - "alignText", - "className", - "fill", - "minimal", - "large", - "vertical", - ]), - u = Oe()( - Et, - (((t = {})[ht] = a), - (t[vt] = l), - (t[mt] = o), - (t[Mt] = i), - t), - zn(c), - r - ); - return e.createElement( - "div", - Le({}, s, { className: u }), - this.props.children - ); - }), - (n.displayName = "Blueprint3.ButtonGroup"), - (n = Ce([Sn.polyfill], n)) - ); - })(bn), - cc = (function (t) { - function n() { - var e = (null !== t && t.apply(this, arguments)) || this; - return ( - (e.handleActionClick = function (t) { - var n, c; - null === - (c = - null === (n = e.props.action) || void 0 === n - ? void 0 - : n.onClick) || - void 0 === c || - c.call(n, t), - e.triggerDismiss(!1); - }), - (e.handleCloseClick = function () { - return e.triggerDismiss(!1); - }), - (e.startTimeout = function () { - e.clearTimeouts(), - e.props.timeout > 0 && - e.setTimeout(function () { - return e.triggerDismiss(!0); - }, e.props.timeout); - }), - e - ); - } - return ( - Ve(n, t), - (n.prototype.render = function () { - var t = this.props, - n = t.className, - c = t.icon, - r = t.intent, - a = t.message; - return e.createElement( - "div", - { - className: Oe()(fn, gn(r), n), - onBlur: this.startTimeout, - onFocus: this.clearTimeouts, - onMouseEnter: this.clearTimeouts, - onMouseLeave: this.startTimeout, - tabIndex: 0, - }, - e.createElement(_n, { icon: c }), - e.createElement("span", { className: vn }, a), - e.createElement( - nc, - { minimal: !0 }, - this.maybeRenderActionButton(), - e.createElement(Rn, { - "aria-label": "Close", - icon: "cross", - onClick: this.handleCloseClick, - }) - ) - ); - }), - (n.prototype.componentDidMount = function () { - this.startTimeout(); - }), - (n.prototype.componentDidUpdate = function (e) { - e.timeout !== this.props.timeout && - (this.props.timeout > 0 - ? this.startTimeout() - : this.clearTimeouts()); - }), - (n.prototype.componentWillUnmount = function () { - this.clearTimeouts(); - }), - (n.prototype.maybeRenderActionButton = function () { - var t = this.props.action; - return null == t - ? void 0 - : e.createElement( - Dn, - Le({}, t, { - intent: void 0, - onClick: this.handleActionClick, - }) - ); - }), - (n.prototype.triggerDismiss = function (e) { - var t, n; - this.clearTimeouts(), - null === (n = (t = this.props).onDismiss) || - void 0 === n || - n.call(t, e); - }), - (n.defaultProps = { className: "", message: "", timeout: 5e3 }), - (n.displayName = "Blueprint3.Toast"), - (n = Ce([Sn.polyfill], n)) - ); - })(bn), - rc = (function (n) { - function c() { - var t = (null !== n && n.apply(this, arguments)) || this; - return ( - (t.state = { toasts: [] }), - (t.toastId = 0), - (t.renderToast = function (n) { - return e.createElement( - cc, - Le({}, n, { onDismiss: t.getDismissHandler(n) }) - ); - }), - (t.getDismissHandler = function (e) { - return function (n) { - t.dismiss(e.key, n); - }; - }), - (t.handleClose = function (e) { - 27 === e.which && t.clear(); - }), - t - ); - } - var r; - return ( - Ve(c, n), - (r = c), - (c.create = function (n, c) { - void 0 === c && (c = document.body), - null == n || - null == n.usePortal || - Hn("production") || - console.warn( - "[Blueprint] Toaster.create() ignores inline prop as it always creates a new element." - ); - var a = document.createElement("div"); - c.appendChild(a); - var o = t.render( - e.createElement(r, Le({}, n, { usePortal: !1 })), - a - ); - if (null == o) - throw new Error( - "[Blueprint] Toaster.create() is not supported inside React lifecycle methods in React 16. See usage example on the docs site." - ); - return o; - }), - (c.prototype.show = function (e, t) { - this.props.maxToasts && this.dismissIfAtLimit(); - var n = this.createToastOptions(e, t); - return ( - void 0 === t || this.isNewToastKey(t) - ? this.setState(function (e) { - return { toasts: Ee([n], e.toasts) }; - }) - : this.setState(function (e) { - return { - toasts: e.toasts.map(function (e) { - return e.key === t ? n : e; - }), - }; - }), - n.key - ); - }), - (c.prototype.dismiss = function (e, t) { - void 0 === t && (t = !1), - this.setState(function (n) { - return { - toasts: n.toasts.filter(function (n) { - var c, - r = n.key === e; - return ( - r && - (null === (c = n.onDismiss) || - void 0 === c || - c.call(n, t)), - !r - ); - }), - }; - }); - }), - (c.prototype.clear = function () { - this.state.toasts.forEach(function (e) { - var t; - return null === (t = e.onDismiss) || void 0 === t - ? void 0 - : t.call(e, !1); - }), - this.setState({ toasts: [] }); - }), - (c.prototype.getToasts = function () { - return this.state.toasts; - }), - (c.prototype.render = function () { - var t = Oe()(pn, this.getPositionClasses(), this.props.className); - return e.createElement( - tc, - { - autoFocus: this.props.autoFocus, - canEscapeKeyClose: this.props.canEscapeKeyClear, - canOutsideClickClose: !1, - className: t, - enforceFocus: !1, - hasBackdrop: !1, - isOpen: - this.state.toasts.length > 0 || null != this.props.children, - onClose: this.handleClose, - shouldReturnFocusOnClose: !1, - transitionDuration: 350, - transitionName: fn, - usePortal: this.props.usePortal, - }, - this.state.toasts.map(this.renderToast, this), - this.props.children - ); - }), - (c.prototype.validateProps = function (e) { - var t = e.maxToasts; - if (void 0 !== t && t < 1) - throw new Error( - "[Blueprint] maxToasts is set to an invalid number, must be greater than 0" - ); - }), - (c.prototype.isNewToastKey = function (e) { - return this.state.toasts.every(function (t) { - return t.key !== e; - }); - }), - (c.prototype.dismissIfAtLimit = function () { - this.state.toasts.length === this.props.maxToasts && - this.dismiss( - this.state.toasts[this.state.toasts.length - 1].key - ); - }), - (c.prototype.createToastOptions = function (e, t) { - return ( - void 0 === t && (t = "toast-" + this.toastId++), - Le(Le({}, e), { key: t }) - ); - }), - (c.prototype.getPositionClasses = function () { - return Ee( - this.props.position.split("-").map(function (e) { - return pn + "-" + e.toLowerCase(); - }), - [pn + "-" + (this.props.usePortal ? "in-portal" : "inline")] - ); - }), - (c.displayName = "Blueprint3.Toaster"), - (c.defaultProps = { - autoFocus: !1, - canEscapeKeyClear: !0, - position: nt, - usePortal: !0, - }), - (c = r = Ce([Sn.polyfill], c)) - ); - })(bn); - function ac(e) { - if (void 0 === e) - throw new ReferenceError( - "this hasn't been initialised - super() hasn't been called" - ); - return e; - } - function oc(e, t, n) { - return ( - t in e - ? Object.defineProperty(e, t, { - value: n, - enumerable: !0, - configurable: !0, - writable: !0, - }) - : (e[t] = n), - e - ); - } - var lc = n(2391), - ic = n.n(lc), - sc = n(4535), - uc = n.n(sc), - hc = uc()(), - fc = uc()(), - pc = (function (t) { - function n() { - for ( - var e, n = arguments.length, c = new Array(n), r = 0; - r < n; - r++ - ) - c[r] = arguments[r]; - return ( - oc( - ac(ac((e = t.call.apply(t, [this].concat(c)) || this))), - "referenceNode", - void 0 - ), - oc(ac(ac(e)), "setReferenceNode", function (t) { - t && - e.referenceNode !== t && - ((e.referenceNode = t), e.forceUpdate()); - }), - e - ); - } - r(n, t); - var c = n.prototype; - return ( - (c.componentWillUnmount = function () { - this.referenceNode = null; - }), - (c.render = function () { - return e.createElement( - hc.Provider, - { value: this.referenceNode }, - e.createElement( - fc.Provider, - { value: this.setReferenceNode }, - this.props.children - ) - ); - }), - n - ); - })(e.Component), - vc = function (e) { - return Array.isArray(e) ? e[0] : e; - }, - dc = function (e) { - if ("function" === typeof e) { - for ( - var t = arguments.length, n = new Array(t > 1 ? t - 1 : 0), c = 1; - c < t; - c++ - ) - n[c - 1] = arguments[c]; - return e.apply(void 0, n); - } - }, - mc = function (e, t) { - if ("function" === typeof e) return dc(e, t); - null != e && (e.current = t); - }, - zc = (function (e) { - function t() { - for ( - var t, n = arguments.length, c = new Array(n), r = 0; - r < n; - r++ - ) - c[r] = arguments[r]; - return ( - oc( - ac(ac((t = e.call.apply(e, [this].concat(c)) || this))), - "refHandler", - function (e) { - mc(t.props.innerRef, e), dc(t.props.setReferenceNode, e); - } - ), - t - ); - } - r(t, e); - var n = t.prototype; - return ( - (n.componentWillUnmount = function () { - mc(this.props.innerRef, null); - }), - (n.render = function () { - return ( - ic()( - Boolean(this.props.setReferenceNode), - "`Reference` should not be used outside of a `Manager` component." - ), - vc(this.props.children)({ ref: this.refHandler }) - ); - }), - t - ); - })(e.Component); - function yc(t) { - return e.createElement(fc.Consumer, null, function (n) { - return e.createElement(zc, a({ setReferenceNode: n }, t)); - }); - } - var gc = n(4058), - Mc = n.n(gc), - Hc = - "undefined" !== typeof window && - "undefined" !== typeof document && - "undefined" !== typeof navigator, - bc = (function () { - for ( - var e = ["Edge", "Trident", "Firefox"], t = 0; - t < e.length; - t += 1 - ) - if (Hc && navigator.userAgent.indexOf(e[t]) >= 0) return 1; - return 0; - })(); - var Vc = - Hc && window.Promise - ? function (e) { - var t = !1; - return function () { - t || - ((t = !0), - window.Promise.resolve().then(function () { - (t = !1), e(); - })); - }; - } - : function (e) { - var t = !1; - return function () { - t || - ((t = !0), - setTimeout(function () { - (t = !1), e(); - }, bc)); - }; - }; - function Lc(e) { - return e && "[object Function]" === {}.toString.call(e); - } - function wc(e, t) { - if (1 !== e.nodeType) return []; - var n = e.ownerDocument.defaultView.getComputedStyle(e, null); - return t ? n[t] : n; - } - function Cc(e) { - return "HTML" === e.nodeName ? e : e.parentNode || e.host; - } - function Ec(e) { - if (!e) return document.body; - switch (e.nodeName) { - case "HTML": - case "BODY": - return e.ownerDocument.body; - case "#document": - return e.body; - } - var t = wc(e), - n = t.overflow, - c = t.overflowX, - r = t.overflowY; - return /(auto|scroll|overlay)/.test(n + r + c) ? e : Ec(Cc(e)); - } - function Sc(e) { - return e && e.referenceNode ? e.referenceNode : e; - } - var Ac = Hc && !(!window.MSInputMethodContext || !document.documentMode), - xc = Hc && /MSIE 10/.test(navigator.userAgent); - function kc(e) { - return 11 === e ? Ac : 10 === e ? xc : Ac || xc; - } - function _c(e) { - if (!e) return document.documentElement; - for ( - var t = kc(10) ? document.body : null, n = e.offsetParent || null; - n === t && e.nextElementSibling; - - ) - n = (e = e.nextElementSibling).offsetParent; - var c = n && n.nodeName; - return c && "BODY" !== c && "HTML" !== c - ? -1 !== ["TH", "TD", "TABLE"].indexOf(n.nodeName) && - "static" === wc(n, "position") - ? _c(n) - : n - : e - ? e.ownerDocument.documentElement - : document.documentElement; - } - function Oc(e) { - return null !== e.parentNode ? Oc(e.parentNode) : e; - } - function Pc(e, t) { - if (!e || !e.nodeType || !t || !t.nodeType) - return document.documentElement; - var n = e.compareDocumentPosition(t) & Node.DOCUMENT_POSITION_FOLLOWING, - c = n ? e : t, - r = n ? t : e, - a = document.createRange(); - a.setStart(c, 0), a.setEnd(r, 0); - var o = a.commonAncestorContainer; - if ((e !== o && t !== o) || c.contains(r)) - return (function (e) { - var t = e.nodeName; - return ( - "BODY" !== t && ("HTML" === t || _c(e.firstElementChild) === e) - ); - })(o) - ? o - : _c(o); - var l = Oc(e); - return l.host ? Pc(l.host, t) : Pc(e, Oc(t).host); - } - function Nc(e) { - var t = - arguments.length > 1 && void 0 !== arguments[1] - ? arguments[1] - : "top", - n = "top" === t ? "scrollTop" : "scrollLeft", - c = e.nodeName; - if ("BODY" === c || "HTML" === c) { - var r = e.ownerDocument.documentElement, - a = e.ownerDocument.scrollingElement || r; - return a[n]; - } - return e[n]; - } - function Tc(e, t) { - var n = arguments.length > 2 && void 0 !== arguments[2] && arguments[2], - c = Nc(t, "top"), - r = Nc(t, "left"), - a = n ? -1 : 1; - return ( - (e.top += c * a), - (e.bottom += c * a), - (e.left += r * a), - (e.right += r * a), - e - ); - } - function jc(e, t) { - var n = "x" === t ? "Left" : "Top", - c = "Left" === n ? "Right" : "Bottom"; - return ( - parseFloat(e["border" + n + "Width"]) + - parseFloat(e["border" + c + "Width"]) - ); - } - function Rc(e, t, n, c) { - return Math.max( - t["offset" + e], - t["scroll" + e], - n["client" + e], - n["offset" + e], - n["scroll" + e], - kc(10) - ? parseInt(n["offset" + e]) + - parseInt(c["margin" + ("Height" === e ? "Top" : "Left")]) + - parseInt(c["margin" + ("Height" === e ? "Bottom" : "Right")]) - : 0 - ); - } - function Dc(e) { - var t = e.body, - n = e.documentElement, - c = kc(10) && getComputedStyle(n); - return { height: Rc("Height", t, n, c), width: Rc("Width", t, n, c) }; - } - var Fc = function (e, t) { - if (!(e instanceof t)) - throw new TypeError("Cannot call a class as a function"); - }, - Ic = (function () { - function e(e, t) { - for (var n = 0; n < t.length; n++) { - var c = t[n]; - (c.enumerable = c.enumerable || !1), - (c.configurable = !0), - "value" in c && (c.writable = !0), - Object.defineProperty(e, c.key, c); - } - } - return function (t, n, c) { - return n && e(t.prototype, n), c && e(t, c), t; - }; - })(), - Uc = function (e, t, n) { - return ( - t in e - ? Object.defineProperty(e, t, { - value: n, - enumerable: !0, - configurable: !0, - writable: !0, - }) - : (e[t] = n), - e - ); - }, - Bc = - Object.assign || - function (e) { - for (var t = 1; t < arguments.length; t++) { - var n = arguments[t]; - for (var c in n) - Object.prototype.hasOwnProperty.call(n, c) && (e[c] = n[c]); - } - return e; - }; - function Wc(e) { - return Bc({}, e, { right: e.left + e.width, bottom: e.top + e.height }); - } - function $c(e) { - var t = {}; - try { - if (kc(10)) { - t = e.getBoundingClientRect(); - var n = Nc(e, "top"), - c = Nc(e, "left"); - (t.top += n), (t.left += c), (t.bottom += n), (t.right += c); - } else t = e.getBoundingClientRect(); - } catch (h) {} - var r = { - left: t.left, - top: t.top, - width: t.right - t.left, - height: t.bottom - t.top, - }, - a = "HTML" === e.nodeName ? Dc(e.ownerDocument) : {}, - o = a.width || e.clientWidth || r.width, - l = a.height || e.clientHeight || r.height, - i = e.offsetWidth - o, - s = e.offsetHeight - l; - if (i || s) { - var u = wc(e); - (i -= jc(u, "x")), (s -= jc(u, "y")), (r.width -= i), (r.height -= s); - } - return Wc(r); - } - function Kc(e, t) { - var n = arguments.length > 2 && void 0 !== arguments[2] && arguments[2], - c = kc(10), - r = "HTML" === t.nodeName, - a = $c(e), - o = $c(t), - l = Ec(e), - i = wc(t), - s = parseFloat(i.borderTopWidth), - u = parseFloat(i.borderLeftWidth); - n && - r && - ((o.top = Math.max(o.top, 0)), (o.left = Math.max(o.left, 0))); - var h = Wc({ - top: a.top - o.top - s, - left: a.left - o.left - u, - width: a.width, - height: a.height, - }); - if (((h.marginTop = 0), (h.marginLeft = 0), !c && r)) { - var f = parseFloat(i.marginTop), - p = parseFloat(i.marginLeft); - (h.top -= s - f), - (h.bottom -= s - f), - (h.left -= u - p), - (h.right -= u - p), - (h.marginTop = f), - (h.marginLeft = p); - } - return ( - (c && !n ? t.contains(l) : t === l && "BODY" !== l.nodeName) && - (h = Tc(h, t)), - h - ); - } - function qc(e) { - var t = arguments.length > 1 && void 0 !== arguments[1] && arguments[1], - n = e.ownerDocument.documentElement, - c = Kc(e, n), - r = Math.max(n.clientWidth, window.innerWidth || 0), - a = Math.max(n.clientHeight, window.innerHeight || 0), - o = t ? 0 : Nc(n), - l = t ? 0 : Nc(n, "left"), - i = { - top: o - c.top + c.marginTop, - left: l - c.left + c.marginLeft, - width: r, - height: a, - }; - return Wc(i); - } - function Gc(e) { - var t = e.nodeName; - if ("BODY" === t || "HTML" === t) return !1; - if ("fixed" === wc(e, "position")) return !0; - var n = Cc(e); - return !!n && Gc(n); - } - function Qc(e) { - if (!e || !e.parentElement || kc()) return document.documentElement; - for (var t = e.parentElement; t && "none" === wc(t, "transform"); ) - t = t.parentElement; - return t || document.documentElement; - } - function Yc(e, t, n, c) { - var r = arguments.length > 4 && void 0 !== arguments[4] && arguments[4], - a = { top: 0, left: 0 }, - o = r ? Qc(e) : Pc(e, Sc(t)); - if ("viewport" === c) a = qc(o, r); - else { - var l = void 0; - "scrollParent" === c - ? "BODY" === (l = Ec(Cc(t))).nodeName && - (l = e.ownerDocument.documentElement) - : (l = "window" === c ? e.ownerDocument.documentElement : c); - var i = Kc(l, o, r); - if ("HTML" !== l.nodeName || Gc(o)) a = i; - else { - var s = Dc(e.ownerDocument), - u = s.height, - h = s.width; - (a.top += i.top - i.marginTop), - (a.bottom = u + i.top), - (a.left += i.left - i.marginLeft), - (a.right = h + i.left); - } - } - var f = "number" === typeof (n = n || 0); - return ( - (a.left += f ? n : n.left || 0), - (a.top += f ? n : n.top || 0), - (a.right -= f ? n : n.right || 0), - (a.bottom -= f ? n : n.bottom || 0), - a - ); - } - function Xc(e) { - return e.width * e.height; - } - function Jc(e, t, n, c, r) { - var a = - arguments.length > 5 && void 0 !== arguments[5] ? arguments[5] : 0; - if (-1 === e.indexOf("auto")) return e; - var o = Yc(n, c, a, r), - l = { - top: { width: o.width, height: t.top - o.top }, - right: { width: o.right - t.right, height: o.height }, - bottom: { width: o.width, height: o.bottom - t.bottom }, - left: { width: t.left - o.left, height: o.height }, - }, - i = Object.keys(l) - .map(function (e) { - return Bc({ key: e }, l[e], { area: Xc(l[e]) }); - }) - .sort(function (e, t) { - return t.area - e.area; - }), - s = i.filter(function (e) { - var t = e.width, - c = e.height; - return t >= n.clientWidth && c >= n.clientHeight; - }), - u = s.length > 0 ? s[0].key : i[0].key, - h = e.split("-")[1]; - return u + (h ? "-" + h : ""); - } - function Zc(e, t, n) { - var c = - arguments.length > 3 && void 0 !== arguments[3] - ? arguments[3] - : null, - r = c ? Qc(t) : Pc(t, Sc(n)); - return Kc(n, r, c); - } - function er(e) { - var t = e.ownerDocument.defaultView.getComputedStyle(e), - n = parseFloat(t.marginTop || 0) + parseFloat(t.marginBottom || 0), - c = parseFloat(t.marginLeft || 0) + parseFloat(t.marginRight || 0); - return { width: e.offsetWidth + c, height: e.offsetHeight + n }; - } - function tr(e) { - var t = { left: "right", right: "left", bottom: "top", top: "bottom" }; - return e.replace(/left|right|bottom|top/g, function (e) { - return t[e]; - }); - } - function nr(e, t, n) { - n = n.split("-")[0]; - var c = er(e), - r = { width: c.width, height: c.height }, - a = -1 !== ["right", "left"].indexOf(n), - o = a ? "top" : "left", - l = a ? "left" : "top", - i = a ? "height" : "width", - s = a ? "width" : "height"; - return ( - (r[o] = t[o] + t[i] / 2 - c[i] / 2), - (r[l] = n === l ? t[l] - c[s] : t[tr(l)]), - r - ); - } - function cr(e, t) { - return Array.prototype.find ? e.find(t) : e.filter(t)[0]; - } - function rr(e, t, n) { - return ( - (void 0 === n - ? e - : e.slice( - 0, - (function (e, t, n) { - if (Array.prototype.findIndex) - return e.findIndex(function (e) { - return e[t] === n; - }); - var c = cr(e, function (e) { - return e[t] === n; - }); - return e.indexOf(c); - })(e, "name", n) - ) - ).forEach(function (e) { - e.function && - console.warn( - "`modifier.function` is deprecated, use `modifier.fn`!" - ); - var n = e.function || e.fn; - e.enabled && - Lc(n) && - ((t.offsets.popper = Wc(t.offsets.popper)), - (t.offsets.reference = Wc(t.offsets.reference)), - (t = n(t, e))); - }), - t - ); - } - function ar() { - if (!this.state.isDestroyed) { - var e = { - instance: this, - styles: {}, - arrowStyles: {}, - attributes: {}, - flipped: !1, - offsets: {}, - }; - (e.offsets.reference = Zc( - this.state, - this.popper, - this.reference, - this.options.positionFixed - )), - (e.placement = Jc( - this.options.placement, - e.offsets.reference, - this.popper, - this.reference, - this.options.modifiers.flip.boundariesElement, - this.options.modifiers.flip.padding - )), - (e.originalPlacement = e.placement), - (e.positionFixed = this.options.positionFixed), - (e.offsets.popper = nr( - this.popper, - e.offsets.reference, - e.placement - )), - (e.offsets.popper.position = this.options.positionFixed - ? "fixed" - : "absolute"), - (e = rr(this.modifiers, e)), - this.state.isCreated - ? this.options.onUpdate(e) - : ((this.state.isCreated = !0), this.options.onCreate(e)); - } - } - function or(e, t) { - return e.some(function (e) { - var n = e.name; - return e.enabled && n === t; - }); - } - function lr(e) { - for ( - var t = [!1, "ms", "Webkit", "Moz", "O"], - n = e.charAt(0).toUpperCase() + e.slice(1), - c = 0; - c < t.length; - c++ - ) { - var r = t[c], - a = r ? "" + r + n : e; - if ("undefined" !== typeof document.body.style[a]) return a; - } - return null; - } - function ir() { - return ( - (this.state.isDestroyed = !0), - or(this.modifiers, "applyStyle") && - (this.popper.removeAttribute("x-placement"), - (this.popper.style.position = ""), - (this.popper.style.top = ""), - (this.popper.style.left = ""), - (this.popper.style.right = ""), - (this.popper.style.bottom = ""), - (this.popper.style.willChange = ""), - (this.popper.style[lr("transform")] = "")), - this.disableEventListeners(), - this.options.removeOnDestroy && - this.popper.parentNode.removeChild(this.popper), - this - ); - } - function sr(e) { - var t = e.ownerDocument; - return t ? t.defaultView : window; - } - function ur(e, t, n, c) { - var r = "BODY" === e.nodeName, - a = r ? e.ownerDocument.defaultView : e; - a.addEventListener(t, n, { passive: !0 }), - r || ur(Ec(a.parentNode), t, n, c), - c.push(a); - } - function hr(e, t, n, c) { - (n.updateBound = c), - sr(e).addEventListener("resize", n.updateBound, { passive: !0 }); - var r = Ec(e); - return ( - ur(r, "scroll", n.updateBound, n.scrollParents), - (n.scrollElement = r), - (n.eventsEnabled = !0), - n - ); - } - function fr() { - this.state.eventsEnabled || - (this.state = hr( - this.reference, - this.options, - this.state, - this.scheduleUpdate - )); - } - function pr() { - var e, t; - this.state.eventsEnabled && - (cancelAnimationFrame(this.scheduleUpdate), - (this.state = - ((e = this.reference), - (t = this.state), - sr(e).removeEventListener("resize", t.updateBound), - t.scrollParents.forEach(function (e) { - e.removeEventListener("scroll", t.updateBound); - }), - (t.updateBound = null), - (t.scrollParents = []), - (t.scrollElement = null), - (t.eventsEnabled = !1), - t))); - } - function vr(e) { - return "" !== e && !isNaN(parseFloat(e)) && isFinite(e); - } - function dr(e, t) { - Object.keys(t).forEach(function (n) { - var c = ""; - -1 !== - ["width", "height", "top", "right", "bottom", "left"].indexOf(n) && - vr(t[n]) && - (c = "px"), - (e.style[n] = t[n] + c); - }); - } - var mr = Hc && /Firefox/i.test(navigator.userAgent); - function zr(e, t, n) { - var c = cr(e, function (e) { - return e.name === t; - }), - r = - !!c && - e.some(function (e) { - return e.name === n && e.enabled && e.order < c.order; - }); - if (!r) { - var a = "`" + t + "`", - o = "`" + n + "`"; - console.warn( - o + - " modifier is required by " + - a + - " modifier in order to work, be sure to include it before " + - a + - "!" - ); - } - return r; - } - var yr = [ - "auto-start", - "auto", - "auto-end", - "top-start", - "top", - "top-end", - "right-start", - "right", - "right-end", - "bottom-end", - "bottom", - "bottom-start", - "left-end", - "left", - "left-start", - ], - gr = yr.slice(3); - function Mr(e) { - var t = arguments.length > 1 && void 0 !== arguments[1] && arguments[1], - n = gr.indexOf(e), - c = gr.slice(n + 1).concat(gr.slice(0, n)); - return t ? c.reverse() : c; - } - var Hr = "flip", - br = "clockwise", - Vr = "counterclockwise"; - function Lr(e, t, n, c) { - var r = [0, 0], - a = -1 !== ["right", "left"].indexOf(c), - o = e.split(/(\+|\-)/).map(function (e) { - return e.trim(); - }), - l = o.indexOf( - cr(o, function (e) { - return -1 !== e.search(/,|\s/); - }) - ); - o[l] && - -1 === o[l].indexOf(",") && - console.warn( - "Offsets separated by white space(s) are deprecated, use a comma (,) instead." - ); - var i = /\s*,\s*|\s+/, - s = - -1 !== l - ? [ - o.slice(0, l).concat([o[l].split(i)[0]]), - [o[l].split(i)[1]].concat(o.slice(l + 1)), - ] - : [o]; - return ( - (s = s.map(function (e, c) { - var r = (1 === c ? !a : a) ? "height" : "width", - o = !1; - return e - .reduce(function (e, t) { - return "" === e[e.length - 1] && -1 !== ["+", "-"].indexOf(t) - ? ((e[e.length - 1] = t), (o = !0), e) - : o - ? ((e[e.length - 1] += t), (o = !1), e) - : e.concat(t); - }, []) - .map(function (e) { - return (function (e, t, n, c) { - var r = e.match(/((?:\-|\+)?\d*\.?\d*)(.*)/), - a = +r[1], - o = r[2]; - if (!a) return e; - if (0 === o.indexOf("%")) { - return (Wc("%p" === o ? n : c)[t] / 100) * a; - } - if ("vh" === o || "vw" === o) - return ( - (("vh" === o - ? Math.max( - document.documentElement.clientHeight, - window.innerHeight || 0 - ) - : Math.max( - document.documentElement.clientWidth, - window.innerWidth || 0 - )) / - 100) * - a - ); - return a; - })(e, r, t, n); - }); - })), - s.forEach(function (e, t) { - e.forEach(function (n, c) { - vr(n) && (r[t] += n * ("-" === e[c - 1] ? -1 : 1)); - }); - }), - r - ); - } - var wr = { - shift: { - order: 100, - enabled: !0, - fn: function (e) { - var t = e.placement, - n = t.split("-")[0], - c = t.split("-")[1]; - if (c) { - var r = e.offsets, - a = r.reference, - o = r.popper, - l = -1 !== ["bottom", "top"].indexOf(n), - i = l ? "left" : "top", - s = l ? "width" : "height", - u = { - start: Uc({}, i, a[i]), - end: Uc({}, i, a[i] + a[s] - o[s]), - }; - e.offsets.popper = Bc({}, o, u[c]); - } - return e; - }, - }, - offset: { - order: 200, - enabled: !0, - fn: function (e, t) { - var n = t.offset, - c = e.placement, - r = e.offsets, - a = r.popper, - o = r.reference, - l = c.split("-")[0], - i = void 0; - return ( - (i = vr(+n) ? [+n, 0] : Lr(n, a, o, l)), - "left" === l - ? ((a.top += i[0]), (a.left -= i[1])) - : "right" === l - ? ((a.top += i[0]), (a.left += i[1])) - : "top" === l - ? ((a.left += i[0]), (a.top -= i[1])) - : "bottom" === l && ((a.left += i[0]), (a.top += i[1])), - (e.popper = a), - e - ); - }, - offset: 0, - }, - preventOverflow: { - order: 300, - enabled: !0, - fn: function (e, t) { - var n = t.boundariesElement || _c(e.instance.popper); - e.instance.reference === n && (n = _c(n)); - var c = lr("transform"), - r = e.instance.popper.style, - a = r.top, - o = r.left, - l = r[c]; - (r.top = ""), (r.left = ""), (r[c] = ""); - var i = Yc( - e.instance.popper, - e.instance.reference, - t.padding, - n, - e.positionFixed - ); - (r.top = a), (r.left = o), (r[c] = l), (t.boundaries = i); - var s = t.priority, - u = e.offsets.popper, - h = { - primary: function (e) { - var n = u[e]; - return ( - u[e] < i[e] && - !t.escapeWithReference && - (n = Math.max(u[e], i[e])), - Uc({}, e, n) - ); - }, - secondary: function (e) { - var n = "right" === e ? "left" : "top", - c = u[n]; - return ( - u[e] > i[e] && - !t.escapeWithReference && - (c = Math.min( - u[n], - i[e] - ("right" === e ? u.width : u.height) - )), - Uc({}, n, c) - ); - }, - }; - return ( - s.forEach(function (e) { - var t = - -1 !== ["left", "top"].indexOf(e) ? "primary" : "secondary"; - u = Bc({}, u, h[t](e)); - }), - (e.offsets.popper = u), - e - ); - }, - priority: ["left", "right", "top", "bottom"], - padding: 5, - boundariesElement: "scrollParent", - }, - keepTogether: { - order: 400, - enabled: !0, - fn: function (e) { - var t = e.offsets, - n = t.popper, - c = t.reference, - r = e.placement.split("-")[0], - a = Math.floor, - o = -1 !== ["top", "bottom"].indexOf(r), - l = o ? "right" : "bottom", - i = o ? "left" : "top", - s = o ? "width" : "height"; - return ( - n[l] < a(c[i]) && (e.offsets.popper[i] = a(c[i]) - n[s]), - n[i] > a(c[l]) && (e.offsets.popper[i] = a(c[l])), - e - ); - }, - }, - arrow: { - order: 500, - enabled: !0, - fn: function (e, t) { - var n; - if (!zr(e.instance.modifiers, "arrow", "keepTogether")) return e; - var c = t.element; - if ("string" === typeof c) { - if (!(c = e.instance.popper.querySelector(c))) return e; - } else if (!e.instance.popper.contains(c)) - return ( - console.warn( - "WARNING: `arrow.element` must be child of its popper element!" - ), - e - ); - var r = e.placement.split("-")[0], - a = e.offsets, - o = a.popper, - l = a.reference, - i = -1 !== ["left", "right"].indexOf(r), - s = i ? "height" : "width", - u = i ? "Top" : "Left", - h = u.toLowerCase(), - f = i ? "left" : "top", - p = i ? "bottom" : "right", - v = er(c)[s]; - l[p] - v < o[h] && (e.offsets.popper[h] -= o[h] - (l[p] - v)), - l[h] + v > o[p] && (e.offsets.popper[h] += l[h] + v - o[p]), - (e.offsets.popper = Wc(e.offsets.popper)); - var d = l[h] + l[s] / 2 - v / 2, - m = wc(e.instance.popper), - z = parseFloat(m["margin" + u]), - y = parseFloat(m["border" + u + "Width"]), - g = d - e.offsets.popper[h] - z - y; - return ( - (g = Math.max(Math.min(o[s] - v, g), 0)), - (e.arrowElement = c), - (e.offsets.arrow = - (Uc((n = {}), h, Math.round(g)), Uc(n, f, ""), n)), - e - ); - }, - element: "[x-arrow]", - }, - flip: { - order: 600, - enabled: !0, - fn: function (e, t) { - if (or(e.instance.modifiers, "inner")) return e; - if (e.flipped && e.placement === e.originalPlacement) return e; - var n = Yc( - e.instance.popper, - e.instance.reference, - t.padding, - t.boundariesElement, - e.positionFixed - ), - c = e.placement.split("-")[0], - r = tr(c), - a = e.placement.split("-")[1] || "", - o = []; - switch (t.behavior) { - case Hr: - o = [c, r]; - break; - case br: - o = Mr(c); - break; - case Vr: - o = Mr(c, !0); - break; - default: - o = t.behavior; - } - return ( - o.forEach(function (l, i) { - if (c !== l || o.length === i + 1) return e; - (c = e.placement.split("-")[0]), (r = tr(c)); - var s = e.offsets.popper, - u = e.offsets.reference, - h = Math.floor, - f = - ("left" === c && h(s.right) > h(u.left)) || - ("right" === c && h(s.left) < h(u.right)) || - ("top" === c && h(s.bottom) > h(u.top)) || - ("bottom" === c && h(s.top) < h(u.bottom)), - p = h(s.left) < h(n.left), - v = h(s.right) > h(n.right), - d = h(s.top) < h(n.top), - m = h(s.bottom) > h(n.bottom), - z = - ("left" === c && p) || - ("right" === c && v) || - ("top" === c && d) || - ("bottom" === c && m), - y = -1 !== ["top", "bottom"].indexOf(c), - g = - !!t.flipVariations && - ((y && "start" === a && p) || - (y && "end" === a && v) || - (!y && "start" === a && d) || - (!y && "end" === a && m)), - M = - !!t.flipVariationsByContent && - ((y && "start" === a && v) || - (y && "end" === a && p) || - (!y && "start" === a && m) || - (!y && "end" === a && d)), - H = g || M; - (f || z || H) && - ((e.flipped = !0), - (f || z) && (c = o[i + 1]), - H && - (a = (function (e) { - return "end" === e - ? "start" - : "start" === e - ? "end" - : e; - })(a)), - (e.placement = c + (a ? "-" + a : "")), - (e.offsets.popper = Bc( - {}, - e.offsets.popper, - nr(e.instance.popper, e.offsets.reference, e.placement) - )), - (e = rr(e.instance.modifiers, e, "flip"))); - }), - e - ); - }, - behavior: "flip", - padding: 5, - boundariesElement: "viewport", - flipVariations: !1, - flipVariationsByContent: !1, - }, - inner: { - order: 700, - enabled: !1, - fn: function (e) { - var t = e.placement, - n = t.split("-")[0], - c = e.offsets, - r = c.popper, - a = c.reference, - o = -1 !== ["left", "right"].indexOf(n), - l = -1 === ["top", "left"].indexOf(n); - return ( - (r[o ? "left" : "top"] = - a[n] - (l ? r[o ? "width" : "height"] : 0)), - (e.placement = tr(t)), - (e.offsets.popper = Wc(r)), - e - ); - }, - }, - hide: { - order: 800, - enabled: !0, - fn: function (e) { - if (!zr(e.instance.modifiers, "hide", "preventOverflow")) - return e; - var t = e.offsets.reference, - n = cr(e.instance.modifiers, function (e) { - return "preventOverflow" === e.name; - }).boundaries; - if ( - t.bottom < n.top || - t.left > n.right || - t.top > n.bottom || - t.right < n.left - ) { - if (!0 === e.hide) return e; - (e.hide = !0), (e.attributes["x-out-of-boundaries"] = ""); - } else { - if (!1 === e.hide) return e; - (e.hide = !1), (e.attributes["x-out-of-boundaries"] = !1); - } - return e; - }, - }, - computeStyle: { - order: 850, - enabled: !0, - fn: function (e, t) { - var n = t.x, - c = t.y, - r = e.offsets.popper, - a = cr(e.instance.modifiers, function (e) { - return "applyStyle" === e.name; - }).gpuAcceleration; - void 0 !== a && - console.warn( - "WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!" - ); - var o = void 0 !== a ? a : t.gpuAcceleration, - l = _c(e.instance.popper), - i = $c(l), - s = { position: r.position }, - u = (function (e, t) { - var n = e.offsets, - c = n.popper, - r = n.reference, - a = Math.round, - o = Math.floor, - l = function (e) { - return e; - }, - i = a(r.width), - s = a(c.width), - u = -1 !== ["left", "right"].indexOf(e.placement), - h = -1 !== e.placement.indexOf("-"), - f = t ? (u || h || i % 2 === s % 2 ? a : o) : l, - p = t ? a : l; - return { - left: f( - i % 2 === 1 && s % 2 === 1 && !h && t - ? c.left - 1 - : c.left - ), - top: p(c.top), - bottom: p(c.bottom), - right: f(c.right), - }; - })(e, window.devicePixelRatio < 2 || !mr), - h = "bottom" === n ? "top" : "bottom", - f = "right" === c ? "left" : "right", - p = lr("transform"), - v = void 0, - d = void 0; - if ( - ((d = - "bottom" === h - ? "HTML" === l.nodeName - ? -l.clientHeight + u.bottom - : -i.height + u.bottom - : u.top), - (v = - "right" === f - ? "HTML" === l.nodeName - ? -l.clientWidth + u.right - : -i.width + u.right - : u.left), - o && p) - ) - (s[p] = "translate3d(" + v + "px, " + d + "px, 0)"), - (s[h] = 0), - (s[f] = 0), - (s.willChange = "transform"); - else { - var m = "bottom" === h ? -1 : 1, - z = "right" === f ? -1 : 1; - (s[h] = d * m), (s[f] = v * z), (s.willChange = h + ", " + f); - } - var y = { "x-placement": e.placement }; - return ( - (e.attributes = Bc({}, y, e.attributes)), - (e.styles = Bc({}, s, e.styles)), - (e.arrowStyles = Bc({}, e.offsets.arrow, e.arrowStyles)), - e - ); - }, - gpuAcceleration: !0, - x: "bottom", - y: "right", - }, - applyStyle: { - order: 900, - enabled: !0, - fn: function (e) { - var t, n; - return ( - dr(e.instance.popper, e.styles), - (t = e.instance.popper), - (n = e.attributes), - Object.keys(n).forEach(function (e) { - !1 !== n[e] ? t.setAttribute(e, n[e]) : t.removeAttribute(e); - }), - e.arrowElement && - Object.keys(e.arrowStyles).length && - dr(e.arrowElement, e.arrowStyles), - e - ); - }, - onLoad: function (e, t, n, c, r) { - var a = Zc(r, t, e, n.positionFixed), - o = Jc( - n.placement, - a, - t, - e, - n.modifiers.flip.boundariesElement, - n.modifiers.flip.padding - ); - return ( - t.setAttribute("x-placement", o), - dr(t, { position: n.positionFixed ? "fixed" : "absolute" }), - n - ); - }, - gpuAcceleration: void 0, - }, - }, - Cr = { - placement: "bottom", - positionFixed: !1, - eventsEnabled: !0, - removeOnDestroy: !1, - onCreate: function () {}, - onUpdate: function () {}, - modifiers: wr, - }, - Er = (function () { - function e(t, n) { - var c = this, - r = - arguments.length > 2 && void 0 !== arguments[2] - ? arguments[2] - : {}; - Fc(this, e), - (this.scheduleUpdate = function () { - return requestAnimationFrame(c.update); - }), - (this.update = Vc(this.update.bind(this))), - (this.options = Bc({}, e.Defaults, r)), - (this.state = { - isDestroyed: !1, - isCreated: !1, - scrollParents: [], - }), - (this.reference = t && t.jquery ? t[0] : t), - (this.popper = n && n.jquery ? n[0] : n), - (this.options.modifiers = {}), - Object.keys(Bc({}, e.Defaults.modifiers, r.modifiers)).forEach( - function (t) { - c.options.modifiers[t] = Bc( - {}, - e.Defaults.modifiers[t] || {}, - r.modifiers ? r.modifiers[t] : {} - ); - } - ), - (this.modifiers = Object.keys(this.options.modifiers) - .map(function (e) { - return Bc({ name: e }, c.options.modifiers[e]); - }) - .sort(function (e, t) { - return e.order - t.order; - })), - this.modifiers.forEach(function (e) { - e.enabled && - Lc(e.onLoad) && - e.onLoad(c.reference, c.popper, c.options, e, c.state); - }), - this.update(); - var a = this.options.eventsEnabled; - a && this.enableEventListeners(), (this.state.eventsEnabled = a); - } - return ( - Ic(e, [ - { - key: "update", - value: function () { - return ar.call(this); - }, - }, - { - key: "destroy", - value: function () { - return ir.call(this); - }, - }, - { - key: "enableEventListeners", - value: function () { - return fr.call(this); - }, - }, - { - key: "disableEventListeners", - value: function () { - return pr.call(this); - }, - }, - ]), - e - ); - })(); - (Er.Utils = ("undefined" !== typeof window ? window : n.g).PopperUtils), - (Er.placements = yr), - (Er.Defaults = Cr); - var Sr = Er, - Ar = { - position: "absolute", - top: 0, - left: 0, - opacity: 0, - pointerEvents: "none", - }, - xr = {}, - kr = (function (e) { - function t() { - for ( - var t, n = arguments.length, c = new Array(n), r = 0; - r < n; - r++ - ) - c[r] = arguments[r]; - return ( - oc( - ac(ac((t = e.call.apply(e, [this].concat(c)) || this))), - "state", - { data: void 0, placement: void 0 } - ), - oc(ac(ac(t)), "popperInstance", void 0), - oc(ac(ac(t)), "popperNode", null), - oc(ac(ac(t)), "arrowNode", null), - oc(ac(ac(t)), "setPopperNode", function (e) { - e && - t.popperNode !== e && - (mc(t.props.innerRef, e), - (t.popperNode = e), - t.updatePopperInstance()); - }), - oc(ac(ac(t)), "setArrowNode", function (e) { - t.arrowNode = e; - }), - oc(ac(ac(t)), "updateStateModifier", { - enabled: !0, - order: 900, - fn: function (e) { - var n = e.placement; - return t.setState({ data: e, placement: n }), e; - }, - }), - oc(ac(ac(t)), "getOptions", function () { - return { - placement: t.props.placement, - eventsEnabled: t.props.eventsEnabled, - positionFixed: t.props.positionFixed, - modifiers: a({}, t.props.modifiers, { - arrow: a({}, t.props.modifiers && t.props.modifiers.arrow, { - enabled: !!t.arrowNode, - element: t.arrowNode, - }), - applyStyle: { enabled: !1 }, - updateStateModifier: t.updateStateModifier, - }), - }; - }), - oc(ac(ac(t)), "getPopperStyle", function () { - return t.popperNode && t.state.data - ? a( - { position: t.state.data.offsets.popper.position }, - t.state.data.styles - ) - : Ar; - }), - oc(ac(ac(t)), "getPopperPlacement", function () { - return t.state.data ? t.state.placement : void 0; - }), - oc(ac(ac(t)), "getArrowStyle", function () { - return t.arrowNode && t.state.data - ? t.state.data.arrowStyles - : xr; - }), - oc(ac(ac(t)), "getOutOfBoundariesState", function () { - return t.state.data ? t.state.data.hide : void 0; - }), - oc(ac(ac(t)), "destroyPopperInstance", function () { - t.popperInstance && - (t.popperInstance.destroy(), (t.popperInstance = null)); - }), - oc(ac(ac(t)), "updatePopperInstance", function () { - t.destroyPopperInstance(); - var e = ac(ac(t)).popperNode, - n = t.props.referenceElement; - n && e && (t.popperInstance = new Sr(n, e, t.getOptions())); - }), - oc(ac(ac(t)), "scheduleUpdate", function () { - t.popperInstance && t.popperInstance.scheduleUpdate(); - }), - t - ); - } - r(t, e); - var n = t.prototype; - return ( - (n.componentDidUpdate = function (e, t) { - this.props.placement === e.placement && - this.props.referenceElement === e.referenceElement && - this.props.positionFixed === e.positionFixed && - Mc()(this.props.modifiers, e.modifiers, { strict: !0 }) - ? this.props.eventsEnabled !== e.eventsEnabled && - this.popperInstance && - (this.props.eventsEnabled - ? this.popperInstance.enableEventListeners() - : this.popperInstance.disableEventListeners()) - : this.updatePopperInstance(), - t.placement !== this.state.placement && this.scheduleUpdate(); - }), - (n.componentWillUnmount = function () { - mc(this.props.innerRef, null), this.destroyPopperInstance(); - }), - (n.render = function () { - return vc(this.props.children)({ - ref: this.setPopperNode, - style: this.getPopperStyle(), - placement: this.getPopperPlacement(), - outOfBoundaries: this.getOutOfBoundariesState(), - scheduleUpdate: this.scheduleUpdate, - arrowProps: { - ref: this.setArrowNode, - style: this.getArrowStyle(), - }, - }); - }), - t - ); - })(e.Component); - oc(kr, "defaultProps", { - placement: "bottom", - eventsEnabled: !0, - referenceElement: void 0, - positionFixed: !1, - }); - Sr.placements; - function _r(t) { - var n = t.referenceElement, - c = B(t, ["referenceElement"]); - return e.createElement(hc.Consumer, null, function (t) { - return e.createElement( - kr, - a({ referenceElement: void 0 !== n ? n : t }, c) - ); - }); - } - function Or(e, t) { - return e === t || e.contains(t); - } - var Pr = (function () { - if ("undefined" !== typeof Map) return Map; - function e(e, t) { - var n = -1; - return ( - e.some(function (e, c) { - return e[0] === t && ((n = c), !0); - }), - n - ); - } - return (function () { - function t() { - this.__entries__ = []; - } - return ( - Object.defineProperty(t.prototype, "size", { - get: function () { - return this.__entries__.length; - }, - enumerable: !0, - configurable: !0, - }), - (t.prototype.get = function (t) { - var n = e(this.__entries__, t), - c = this.__entries__[n]; - return c && c[1]; - }), - (t.prototype.set = function (t, n) { - var c = e(this.__entries__, t); - ~c - ? (this.__entries__[c][1] = n) - : this.__entries__.push([t, n]); - }), - (t.prototype.delete = function (t) { - var n = this.__entries__, - c = e(n, t); - ~c && n.splice(c, 1); - }), - (t.prototype.has = function (t) { - return !!~e(this.__entries__, t); - }), - (t.prototype.clear = function () { - this.__entries__.splice(0); - }), - (t.prototype.forEach = function (e, t) { - void 0 === t && (t = null); - for (var n = 0, c = this.__entries__; n < c.length; n++) { - var r = c[n]; - e.call(t, r[1], r[0]); - } - }), - t - ); - })(); - })(), - Nr = - "undefined" !== typeof window && - "undefined" !== typeof document && - window.document === document, - Tr = - "undefined" !== typeof n.g && n.g.Math === Math - ? n.g - : "undefined" !== typeof self && self.Math === Math - ? self - : "undefined" !== typeof window && window.Math === Math - ? window - : Function("return this")(), - jr = - "function" === typeof requestAnimationFrame - ? requestAnimationFrame.bind(Tr) - : function (e) { - return setTimeout(function () { - return e(Date.now()); - }, 1e3 / 60); - }; - var Rr = [ - "top", - "right", - "bottom", - "left", - "width", - "height", - "size", - "weight", - ], - Dr = "undefined" !== typeof MutationObserver, - Fr = (function () { - function e() { - (this.connected_ = !1), - (this.mutationEventsAdded_ = !1), - (this.mutationsObserver_ = null), - (this.observers_ = []), - (this.onTransitionEnd_ = this.onTransitionEnd_.bind(this)), - (this.refresh = (function (e, t) { - var n = !1, - c = !1, - r = 0; - function a() { - n && ((n = !1), e()), c && l(); - } - function o() { - jr(a); - } - function l() { - var e = Date.now(); - if (n) { - if (e - r < 2) return; - c = !0; - } else (n = !0), (c = !1), setTimeout(o, t); - r = e; - } - return l; - })(this.refresh.bind(this), 20)); - } - return ( - (e.prototype.addObserver = function (e) { - ~this.observers_.indexOf(e) || this.observers_.push(e), - this.connected_ || this.connect_(); - }), - (e.prototype.removeObserver = function (e) { - var t = this.observers_, - n = t.indexOf(e); - ~n && t.splice(n, 1), - !t.length && this.connected_ && this.disconnect_(); - }), - (e.prototype.refresh = function () { - this.updateObservers_() && this.refresh(); - }), - (e.prototype.updateObservers_ = function () { - var e = this.observers_.filter(function (e) { - return e.gatherActive(), e.hasActive(); - }); - return ( - e.forEach(function (e) { - return e.broadcastActive(); - }), - e.length > 0 - ); - }), - (e.prototype.connect_ = function () { - Nr && - !this.connected_ && - (document.addEventListener( - "transitionend", - this.onTransitionEnd_ - ), - window.addEventListener("resize", this.refresh), - Dr - ? ((this.mutationsObserver_ = new MutationObserver( - this.refresh - )), - this.mutationsObserver_.observe(document, { - attributes: !0, - childList: !0, - characterData: !0, - subtree: !0, - })) - : (document.addEventListener( - "DOMSubtreeModified", - this.refresh - ), - (this.mutationEventsAdded_ = !0)), - (this.connected_ = !0)); - }), - (e.prototype.disconnect_ = function () { - Nr && - this.connected_ && - (document.removeEventListener( - "transitionend", - this.onTransitionEnd_ - ), - window.removeEventListener("resize", this.refresh), - this.mutationsObserver_ && this.mutationsObserver_.disconnect(), - this.mutationEventsAdded_ && - document.removeEventListener( - "DOMSubtreeModified", - this.refresh - ), - (this.mutationsObserver_ = null), - (this.mutationEventsAdded_ = !1), - (this.connected_ = !1)); - }), - (e.prototype.onTransitionEnd_ = function (e) { - var t = e.propertyName, - n = void 0 === t ? "" : t, - c = Rr.some(function (e) { - return !!~n.indexOf(e); - }); - c && this.refresh(); - }), - (e.getInstance = function () { - return ( - this.instance_ || (this.instance_ = new e()), this.instance_ - ); - }), - (e.instance_ = null), - e - ); - })(), - Ir = function (e, t) { - for (var n = 0, c = Object.keys(t); n < c.length; n++) { - var r = c[n]; - Object.defineProperty(e, r, { - value: t[r], - enumerable: !1, - writable: !1, - configurable: !0, - }); - } - return e; - }, - Ur = function (e) { - return (e && e.ownerDocument && e.ownerDocument.defaultView) || Tr; - }, - Br = Qr(0, 0, 0, 0); - function Wr(e) { - return parseFloat(e) || 0; - } - function $r(e) { - for (var t = [], n = 1; n < arguments.length; n++) - t[n - 1] = arguments[n]; - return t.reduce(function (t, n) { - return t + Wr(e["border-" + n + "-width"]); - }, 0); - } - function Kr(e) { - var t = e.clientWidth, - n = e.clientHeight; - if (!t && !n) return Br; - var c = Ur(e).getComputedStyle(e), - r = (function (e) { - for ( - var t = {}, n = 0, c = ["top", "right", "bottom", "left"]; - n < c.length; - n++ - ) { - var r = c[n], - a = e["padding-" + r]; - t[r] = Wr(a); - } - return t; - })(c), - a = r.left + r.right, - o = r.top + r.bottom, - l = Wr(c.width), - i = Wr(c.height); - if ( - ("border-box" === c.boxSizing && - (Math.round(l + a) !== t && (l -= $r(c, "left", "right") + a), - Math.round(i + o) !== n && (i -= $r(c, "top", "bottom") + o)), - !(function (e) { - return e === Ur(e).document.documentElement; - })(e)) - ) { - var s = Math.round(l + a) - t, - u = Math.round(i + o) - n; - 1 !== Math.abs(s) && (l -= s), 1 !== Math.abs(u) && (i -= u); - } - return Qr(r.left, r.top, l, i); - } - var qr = - "undefined" !== typeof SVGGraphicsElement - ? function (e) { - return e instanceof Ur(e).SVGGraphicsElement; - } - : function (e) { - return ( - e instanceof Ur(e).SVGElement && "function" === typeof e.getBBox - ); - }; - function Gr(e) { - return Nr - ? qr(e) - ? (function (e) { - var t = e.getBBox(); - return Qr(0, 0, t.width, t.height); - })(e) - : Kr(e) - : Br; - } - function Qr(e, t, n, c) { - return { x: e, y: t, width: n, height: c }; - } - var Yr = (function () { - function e(e) { - (this.broadcastWidth = 0), - (this.broadcastHeight = 0), - (this.contentRect_ = Qr(0, 0, 0, 0)), - (this.target = e); - } - return ( - (e.prototype.isActive = function () { - var e = Gr(this.target); - return ( - (this.contentRect_ = e), - e.width !== this.broadcastWidth || - e.height !== this.broadcastHeight - ); - }), - (e.prototype.broadcastRect = function () { - var e = this.contentRect_; - return ( - (this.broadcastWidth = e.width), - (this.broadcastHeight = e.height), - e - ); - }), - e - ); - })(), - Xr = function (e, t) { - var n = (function (e) { - var t = e.x, - n = e.y, - c = e.width, - r = e.height, - a = - "undefined" !== typeof DOMRectReadOnly - ? DOMRectReadOnly - : Object, - o = Object.create(a.prototype); - return ( - Ir(o, { - x: t, - y: n, - width: c, - height: r, - top: n, - right: t + c, - bottom: r + n, - left: t, - }), - o - ); - })(t); - Ir(this, { target: e, contentRect: n }); - }, - Jr = (function () { - function e(e, t, n) { - if ( - ((this.activeObservations_ = []), - (this.observations_ = new Pr()), - "function" !== typeof e) - ) - throw new TypeError( - "The callback provided as parameter 1 is not a function." - ); - (this.callback_ = e), - (this.controller_ = t), - (this.callbackCtx_ = n); - } - return ( - (e.prototype.observe = function (e) { - if (!arguments.length) - throw new TypeError("1 argument required, but only 0 present."); - if ("undefined" !== typeof Element && Element instanceof Object) { - if (!(e instanceof Ur(e).Element)) - throw new TypeError('parameter 1 is not of type "Element".'); - var t = this.observations_; - t.has(e) || - (t.set(e, new Yr(e)), - this.controller_.addObserver(this), - this.controller_.refresh()); - } - }), - (e.prototype.unobserve = function (e) { - if (!arguments.length) - throw new TypeError("1 argument required, but only 0 present."); - if ("undefined" !== typeof Element && Element instanceof Object) { - if (!(e instanceof Ur(e).Element)) - throw new TypeError('parameter 1 is not of type "Element".'); - var t = this.observations_; - t.has(e) && - (t.delete(e), - t.size || this.controller_.removeObserver(this)); - } - }), - (e.prototype.disconnect = function () { - this.clearActive(), - this.observations_.clear(), - this.controller_.removeObserver(this); - }), - (e.prototype.gatherActive = function () { - var e = this; - this.clearActive(), - this.observations_.forEach(function (t) { - t.isActive() && e.activeObservations_.push(t); - }); - }), - (e.prototype.broadcastActive = function () { - if (this.hasActive()) { - var e = this.callbackCtx_, - t = this.activeObservations_.map(function (e) { - return new Xr(e.target, e.broadcastRect()); - }); - this.callback_.call(e, t, e), this.clearActive(); - } - }), - (e.prototype.clearActive = function () { - this.activeObservations_.splice(0); - }), - (e.prototype.hasActive = function () { - return this.activeObservations_.length > 0; - }), - e - ); - })(), - Zr = "undefined" !== typeof WeakMap ? new WeakMap() : new Pr(), - ea = function e(t) { - if (!(this instanceof e)) - throw new TypeError("Cannot call a class as a function."); - if (!arguments.length) - throw new TypeError("1 argument required, but only 0 present."); - var n = Fr.getInstance(), - c = new Jr(t, n, this); - Zr.set(this, c); - }; - ["observe", "unobserve", "disconnect"].forEach(function (e) { - ea.prototype[e] = function () { - var t; - return (t = Zr.get(this))[e].apply(t, arguments); - }; - }); - var ta = - "undefined" !== typeof Tr.ResizeObserver ? Tr.ResizeObserver : ea, - na = (function (n) { - function c() { - var e = (null !== n && n.apply(this, arguments)) || this; - return ( - (e.element = null), - (e.observer = new ta(function (t) { - var n, c; - return null === (c = (n = e.props).onResize) || void 0 === c - ? void 0 - : c.call(n, t); - })), - e - ); - } - return ( - Ve(c, n), - (c.prototype.render = function () { - return e.Children.only(this.props.children); - }), - (c.prototype.componentDidMount = function () { - this.observeElement(); - }), - (c.prototype.componentDidUpdate = function (e) { - this.observeElement( - this.props.observeParents !== e.observeParents - ); - }), - (c.prototype.componentWillUnmount = function () { - this.observer.disconnect(); - }), - (c.prototype.observeElement = function (e) { - void 0 === e && (e = !1); - var t = this.getElement(); - if (t instanceof Element) { - if ( - (t !== this.element || e) && - (this.observer.disconnect(), - (this.element = t), - this.observer.observe(t), - this.props.observeParents) - ) - for (var n = t.parentElement; null != n; ) - this.observer.observe(n), (n = n.parentElement); - } else this.observer.disconnect(); - }), - (c.prototype.getElement = function () { - try { - return (0, t.findDOMNode)(this); - } catch (Ne) { - return null; - } - }), - (c.displayName = "Blueprint3.ResizeSensor"), - (c = Ce([Sn.polyfill], c)) - ); - })(bn); - function ca(e) { - return e.split("-")[0]; - } - function ra(e) { - return -1 !== ["left", "right"].indexOf(e); - } - function aa(e) { - switch (e) { - case "top": - return "bottom"; - case "left": - return "right"; - case "bottom": - return "top"; - default: - return "left"; - } - } - function oa(e) { - switch (e.split("-")[1]) { - case "start": - return "left"; - case "end": - return "right"; - default: - return "center"; - } - } - function la(e) { - var t = ca(e.placement); - if (null == e.arrowElement) - return ra(t) ? aa(t) + " " + oa(t) : oa(t) + " " + aa(t); - var n = e.arrowElement.clientHeight / 2, - c = e.offsets.arrow; - return ra(t) - ? aa(t) + " " + (c.top + n) + "px" - : c.left + n + "px " + aa(t); - } - var ia = function (e) { - if (null == e.arrowElement) return e; - var t = e.arrowElement.clientWidth, - n = ca(e.placement), - c = ra(n), - r = c ? "width" : "height", - a = c ? "left" : "top", - o = Math.round(t / 2 / Math.sqrt(2)); - return ( - "top" === n || "left" === n - ? ((e.offsets.popper[a] -= o + 4), - (e.offsets.arrow[a] = e.offsets.popper[r] - t + o)) - : ((e.offsets.popper[a] += o + 4), (e.offsets.arrow[a] = -o)), - e - ); - }; - function sa(e) { - if (null == e) return 0; - switch (ca(e)) { - case "top": - return -90; - case "left": - return 180; - case "bottom": - return 90; - default: - return 0; - } - } - var ua = function (t) { - var n = t.arrowProps, - c = n.ref, - r = n.style, - a = t.placement; - return e.createElement( - "div", - { - className: Gt, - ref: c, - style: null == r.left || isNaN(+r.left) ? {} : r, - }, - e.createElement( - "svg", - { - viewBox: "0 0 30 30", - style: { transform: "rotate(" + sa(a) + "deg)" }, - }, - e.createElement("path", { - className: Gt + "-border", - d: - "M8.11 6.302c1.015-.936 1.887-2.922 1.887-4.297v26c0-1.378-.868-3.357-1.888-4.297L.925 17.09c-1.237-1.14-1.233-3.034 0-4.17L8.11 6.302z", - }), - e.createElement("path", { - className: Gt + "-fill", - d: - "M8.787 7.036c1.22-1.125 2.21-3.376 2.21-5.03V0v30-2.005c0-1.654-.983-3.9-2.21-5.03l-7.183-6.616c-.81-.746-.802-1.96 0-2.7l7.183-6.614z", - }) - ) - ); - }; - function ha(e) { - switch (e) { - case ct: - return "top-start"; - case nt: - return "top"; - case rt: - return "top-end"; - case tt: - return "right-start"; - case Ze: - return "right"; - case et: - return "right-end"; - case Qe: - return "bottom-end"; - case qe: - return "bottom"; - case Ge: - return "bottom-start"; - case Xe: - return "left-end"; - case Ye: - return "left"; - case Je: - return "left-start"; - case "auto": - case "auto-start": - case "auto-end": - return e; - default: - return (function (e) { - throw new Error("Unexpected position: " + e); - })(e); - } - } - ua.displayName = "Blueprint3.PopoverArrow"; - var fa = "click", - pa = "hover", - va = "hover-target", - da = (function (t) { - function n() { - var n = (null !== t && t.apply(this, arguments)) || this; - return ( - (n.popoverRef = Cn()), - (n.popoverElement = null), - (n.targetElement = null), - (n.state = { - hasDarkParent: !1, - isOpen: n.getIsOpen(n.props), - transformOrigin: "", - }), - (n.isMouseInTargetOrPopover = !1), - (n.lostFocusOnSamePage = !0), - (n.handlePopoverRef = ke( - n, - "popoverElement", - n.props.popoverRef - )), - (n.handleTargetRef = function (e) { - return (n.targetElement = e); - }), - (n.reposition = function () { - var e; - return null === (e = n.popperScheduleUpdate) || void 0 === e - ? void 0 - : e.call(n); - }), - (n.renderPopover = function (t) { - var c, - r = n.props, - a = r.interactionKind, - o = r.usePortal, - l = n.state.transformOrigin; - n.popperScheduleUpdate = t.scheduleUpdate; - var i = { onClick: n.handlePopoverClick }; - (a === pa || (!o && a === va)) && - ((i.onMouseEnter = n.handleMouseEnter), - (i.onMouseLeave = n.handleMouseLeave)); - var s = Oe()( - qt, - (((c = {})[st] = - n.props.inheritDarkTheme && n.state.hasDarkParent), - (c[mt] = n.props.minimal), - (c[Yt] = n.props.captureDismiss), - (c[tn] = !0 === t.outOfBoundaries), - c), - n.props.popoverClassName - ); - return e.createElement( - "div", - { className: rn, ref: t.ref, style: t.style }, - e.createElement( - na, - { onResize: n.reposition }, - e.createElement( - "div", - Le( - { - className: s, - style: { transformOrigin: l }, - ref: n.popoverRef, - }, - i - ), - n.isArrowEnabled() && - e.createElement(ua, { - arrowProps: t.arrowProps, - placement: t.placement, - }), - e.createElement( - "div", - { className: Xt }, - n.understandChildren().content - ) - ) - ) - ); - }), - (n.renderTarget = function (t) { - var c, - r, - a = n.props, - o = a.fill, - l = a.openOnTargetFocus, - i = a.targetClassName, - s = a.targetProps, - u = void 0 === s ? {} : s, - h = n.state.isOpen, - f = n.isControlled(), - p = n.isHoverInteractionKind(), - v = n.props.targetTagName; - o && (v = "div"); - var d = p - ? { - onBlur: n.handleTargetBlur, - onFocus: n.handleTargetFocus, - onMouseEnter: n.handleMouseEnter, - onMouseLeave: n.handleMouseLeave, - } - : { onClick: n.handleTargetClick }; - (d["aria-haspopup"] = "true"), - (d.className = Oe()( - nn, - (((c = {})[en] = h), c), - u.className, - i - )), - (d.ref = t.ref); - var m = Ln(n.understandChildren().target); - if (void 0 === m) return null; - var z = m.props.tabIndex, - y = null == z && l && p ? 0 : z, - g = e.cloneElement(m, { - className: Oe()( - m.props.className, - ((r = {}), (r[ot] = h && !f && !p), r) - ), - disabled: !(!h || !wn(m, ma)) || m.props.disabled, - tabIndex: y, - }), - M = e.createElement(v, Le(Le({}, u), d), g); - return e.createElement(na, { onResize: n.reposition }, M); - }), - (n.isControlled = function () { - return void 0 !== n.props.isOpen; - }), - (n.handleTargetFocus = function (e) { - var t, c; - if (n.props.openOnTargetFocus && n.isHoverInteractionKind()) { - if (null == e.relatedTarget && !n.lostFocusOnSamePage) return; - n.handleMouseEnter(e); - } - null === - (c = - null === (t = n.props.targetProps) || void 0 === t - ? void 0 - : t.onFocus) || - void 0 === c || - c.call(t, e); - }), - (n.handleTargetBlur = function (e) { - var t, c; - n.props.openOnTargetFocus && - n.isHoverInteractionKind() && - (null == e.relatedTarget || - n.isElementInPopover(e.relatedTarget) || - n.handleMouseLeave(e)), - (n.lostFocusOnSamePage = null != e.relatedTarget), - null === - (c = - null === (t = n.props.targetProps) || void 0 === t - ? void 0 - : t.onBlur) || - void 0 === c || - c.call(t, e); - }), - (n.handleMouseEnter = function (e) { - var t, c; - (n.isMouseInTargetOrPopover = !0), - n.props.usePortal || - !n.isElementInPopover(e.target) || - n.props.interactionKind !== va || - n.props.openOnTargetFocus - ? n.props.disabled || - n.setOpenState(!0, e, n.props.hoverOpenDelay) - : n.handleMouseLeave(e), - null === - (c = - null === (t = n.props.targetProps) || void 0 === t - ? void 0 - : t.onMouseEnter) || - void 0 === c || - c.call(t, e); - }), - (n.handleMouseLeave = function (e) { - var t, c; - (n.isMouseInTargetOrPopover = !1), - n.setTimeout(function () { - n.isMouseInTargetOrPopover || - n.setOpenState(!1, e, n.props.hoverCloseDelay); - }), - null === - (c = - null === (t = n.props.targetProps) || void 0 === t - ? void 0 - : t.onMouseLeave) || - void 0 === c || - c.call(t, e); - }), - (n.handlePopoverClick = function (e) { - var t = e.target, - c = t.closest("." + qt), - r = c === n.popoverRef.current, - a = - null === c || void 0 === c - ? void 0 - : c.classList.contains(Yt), - o = t.closest("." + Jt + ", ." + Zt), - l = null != o && o.classList.contains(Jt), - i = null != t.closest(":disabled, ." + ut); - !l || i || (a && !r) || n.setOpenState(!1, e); - }), - (n.handleOverlayClose = function (e) { - if (null !== n.targetElement && void 0 !== e) { - var t = e.target; - (!Or(n.targetElement, t) || - e.nativeEvent instanceof KeyboardEvent) && - n.setOpenState(!1, e); - } - }), - (n.handleTargetClick = function (e) { - var t, c; - n.props.disabled || - n.isElementInPopover(e.target) || - (null == n.props.isOpen - ? n.setState(function (e) { - return { isOpen: !e.isOpen }; - }) - : n.setOpenState(!n.props.isOpen, e)), - null === - (c = - null === (t = n.props.targetProps) || void 0 === t - ? void 0 - : t.onClick) || - void 0 === c || - c.call(t, e); - }), - (n.updatePopoverState = function (e) { - return n.setState({ transformOrigin: la(e) }), e; - }), - n - ); - } - return ( - Ve(n, t), - (n.prototype.render = function () { - var t, - n, - c = this.props, - r = c.className, - a = c.disabled, - o = c.fill, - l = c.placement, - i = c.position, - s = void 0 === i ? "auto" : i, - u = c.shouldReturnFocusOnClose, - h = this.state.isOpen, - f = this.props.wrapperTagName; - o && (f = "div"); - var p = null == Ln(this.understandChildren().content); - !p || - a || - !1 === h || - Hn("production") || - console.warn( - "[Blueprint] Disabling with empty/whitespace content..." - ); - var v = Oe()(cn, r, (((t = {})[ht] = o), t)), - d = !this.isHoverInteractionKind() && void 0, - m = e.createElement( - f, - { className: v }, - e.createElement( - yc, - { innerRef: this.handleTargetRef }, - this.renderTarget - ), - e.createElement( - tc, - { - autoFocus: - null !== (n = this.props.autoFocus) && void 0 !== n - ? n - : d, - backdropClassName: Qt, - backdropProps: this.props.backdropProps, - canEscapeKeyClose: this.props.canEscapeKeyClose, - canOutsideClickClose: this.props.interactionKind === fa, - className: this.props.portalClassName, - enforceFocus: this.props.enforceFocus, - hasBackdrop: this.props.hasBackdrop, - isOpen: h && !p, - onClose: this.handleOverlayClose, - onClosed: this.props.onClosed, - onClosing: this.props.onClosing, - onOpened: this.props.onOpened, - onOpening: this.props.onOpening, - transitionDuration: this.props.transitionDuration, - transitionName: qt, - usePortal: this.props.usePortal, - portalContainer: this.props.portalContainer, - shouldReturnFocusOnClose: - !this.isHoverInteractionKind() && u, - }, - e.createElement( - _r, - { - innerRef: this.handlePopoverRef, - placement: null !== l && void 0 !== l ? l : ha(s), - modifiers: this.getPopperModifiers(), - }, - this.renderPopover - ) - ) - ); - return e.createElement(pc, null, m); - }), - (n.prototype.componentDidMount = function () { - this.updateDarkParent(); - }), - (n.prototype.componentDidUpdate = function (e, n) { - t.prototype.componentDidUpdate.call(this, e, n), - e.popoverRef !== this.props.popoverRef && - (xe(e.popoverRef, null), - (this.handlePopoverRef = ke( - this, - "popoverElement", - this.props.popoverRef - )), - xe(this.props.popoverRef, this.popoverElement)), - this.updateDarkParent(); - var c = this.getIsOpen(this.props); - null != this.props.isOpen && c !== this.state.isOpen - ? (this.setOpenState(c), this.setState({ isOpen: c })) - : this.props.disabled && - this.state.isOpen && - null == this.props.isOpen && - this.setOpenState(!1); - }), - (n.prototype.validateProps = function (t) { - null == t.isOpen && - null != t.onInteraction && - console.warn( - "[Blueprint] onInteraction is ignored when uncontrolled." - ), - t.hasBackdrop && - !t.usePortal && - console.warn( - "[Blueprint] ignores hasBackdrop" - ), - t.hasBackdrop && - t.interactionKind !== fa && - console.error( - "[Blueprint] requires interactionKind={PopoverInteractionKind.CLICK}." - ), - void 0 !== t.placement && - void 0 !== t.position && - console.warn( - "[Blueprint] supports either placement or position prop, not both." - ); - var n = e.Children.count(t.children), - c = void 0 !== t.content, - r = void 0 !== t.target; - 0 !== n || - r || - console.error( - "[Blueprint] requires target prop or at least one child element." - ), - n > 2 && - console.warn( - "[Blueprint] supports one or two children; additional children are ignored. First child is the target, second child is the content. You may instead supply these two as props." - ), - n > 0 && - r && - console.warn( - "[Blueprint] with children ignores target prop; use either prop or children." - ), - 2 === n && - c && - console.warn( - "[Blueprint] with two children ignores content prop; use either prop or children." - ); - }), - (n.prototype.updateDarkParent = function () { - if (this.props.usePortal && this.state.isOpen) { - var e = - null != this.targetElement && - null != this.targetElement.closest("." + st); - this.setState({ hasDarkParent: e }); - } - }), - (n.prototype.understandChildren = function () { - var t = this.props, - n = t.children, - c = t.content, - r = t.target, - a = e.Children.toArray(n), - o = a[0], - l = a[1]; - return { content: null == l ? c : l, target: null == o ? r : o }; - }), - (n.prototype.getIsOpen = function (e) { - return ( - !e.disabled && (null != e.isOpen ? e.isOpen : e.defaultIsOpen) - ); - }), - (n.prototype.getPopperModifiers = function () { - var e = this.props, - t = e.boundary, - n = e.modifiers, - c = n, - r = c.flip, - a = void 0 === r ? {} : r, - o = c.preventOverflow, - l = void 0 === o ? {} : o; - return Le(Le({}, n), { - arrowOffset: { - enabled: this.isArrowEnabled(), - fn: ia, - order: 510, - }, - flip: Le({ boundariesElement: t }, a), - preventOverflow: Le({ boundariesElement: t }, l), - updatePopoverState: { - enabled: !0, - fn: this.updatePopoverState, - order: 900, - }, - }); - }), - (n.prototype.setOpenState = function (e, t, n) { - var c, - r, - a, - o, - l, - i = this; - null === (c = this.cancelOpenTimeout) || - void 0 === c || - c.call(this), - void 0 !== n && n > 0 - ? (this.cancelOpenTimeout = this.setTimeout(function () { - return i.setOpenState(e, t); - }, n)) - : (null == this.props.isOpen - ? this.setState({ isOpen: e }) - : null === (a = (r = this.props).onInteraction) || - void 0 === a || - a.call(r, e, t), - e || - null === (l = (o = this.props).onClose) || - void 0 === l || - l.call(o, t)); - }), - (n.prototype.isArrowEnabled = function () { - var e = this.props, - t = e.minimal, - n = e.modifiers; - return ( - !t && - (null == (null === n || void 0 === n ? void 0 : n.arrow) || - n.arrow.enabled) - ); - }), - (n.prototype.isElementInPopover = function (e) { - var t; - return null === (t = this.popoverElement) || void 0 === t - ? void 0 - : t.contains(e); - }), - (n.prototype.isHoverInteractionKind = function () { - return ( - this.props.interactionKind === pa || - this.props.interactionKind === va - ); - }), - (n.displayName = "Blueprint3.Popover"), - (n.defaultProps = { - boundary: "scrollParent", - captureDismiss: !1, - defaultIsOpen: !1, - disabled: !1, - fill: !1, - hasBackdrop: !1, - hoverCloseDelay: 300, - hoverOpenDelay: 150, - inheritDarkTheme: !0, - interactionKind: fa, - minimal: !1, - modifiers: {}, - openOnTargetFocus: !0, - shouldReturnFocusOnClose: !1, - targetTagName: "span", - transitionDuration: 300, - usePortal: !0, - wrapperTagName: "span", - }), - (n = Ce([Sn.polyfill], n)) - ); - })(bn), - ma = (function (t) { - function n() { - var e = (null !== t && t.apply(this, arguments)) || this; - return (e.popover = null), e; - } - return ( - Ve(n, t), - (n.prototype.render = function () { - var t, - n = this, - c = this.props, - r = c.children, - a = c.intent, - o = c.popoverClassName, - l = we(c, ["children", "intent", "popoverClassName"]), - i = Oe()( - dn, - (((t = {})[mt] = this.props.minimal), t), - gn(a), - o - ); - return e.createElement( - da, - Le( - { - interactionKind: va, - modifiers: { arrow: { enabled: !this.props.minimal } }, - }, - l, - { - autoFocus: !1, - canEscapeKeyClose: !1, - enforceFocus: !1, - lazy: !0, - popoverClassName: i, - portalContainer: this.props.portalContainer, - ref: function (e) { - return (n.popover = e); - }, - } - ), - r - ); - }), - (n.prototype.reposition = function () { - null != this.popover && this.popover.reposition(); - }), - (n.displayName = "Blueprint3.Tooltip"), - (n.defaultProps = { - hoverCloseDelay: 0, - hoverOpenDelay: 100, - minimal: !1, - transitionDuration: 100, - }), - (n = Ce([Sn.polyfill], n)) - ); - })(bn), - za = n(184); - function ya(t) { - var n = t.item, - c = Me((0, e.useState)(0), 2), - r = c[0], - a = c[1], - o = (0, e.useRef)(); - (0, e.useEffect)(function () { - a(o.current.offsetWidth); - }, []); - var l = r < 1e3; - return (0, za.jsx)("div", { - ref: o, - className: "default-item-renderer", - id: "item-view-".concat(n && n.id), - children: (0, za.jsxs)(Fn, { - elevation: Be, - interactive: l, - children: [ - (0, za.jsx)("pre", { - className: l - ? "default-item-renderer-pre small" - : "default-item-renderer-pre", - children: JSON.stringify(n && n.data), - }), - (0, za.jsx)(Wn, { - children: (0, za.jsxs)("b", { children: ["ID: ", n && n.id] }), - }), - ], - }), - }); - } - function ga(e) { - var t = e.items, - n = e.itemRenderer, - c = void 0 === n ? ya : n; - return t && t.length > 0 - ? (0, za.jsx)("div", { - className: "default-collection-renderer-container", - children: t.map(function (e) { - return (0, - za.jsx)(me, { to: "/".concat(e.id), style: { textDecoration: "none" }, id: "item-".concat(e.id), children: (0, za.jsx)(c, { item: e }) }, e.id); - }), - }) - : null; - } - var Ma = function (e) { - var t = e.page, - n = void 0 === t ? 1 : t, - c = e.totalPages, - r = void 0 === c ? 1 : c, - a = e.setPage, - o = void 0 === a ? function () {} : a, - l = (function (e, t) { - var n = Math.floor(3.5), - c = []; - if (t > 7) - if ( - ((c[0] = { number: 1 }), - (c[1] = { number: 2 }), - (c[5] = { number: t - 1 }), - (c[6] = { number: t }), - e <= n) - ) { - c[5].ellipsis = !0; - for (var r = 2; r < 5; r++) c[r] = { number: r + 1 }; - } else if (t - e < n) { - c[1].ellipsis = !0; - for (var a = 2; a < 5; a++) c[a] = { number: t - 7 + a + 1 }; - } else { - (c[1].ellipsis = !0), - (c[5].ellipsis = !0), - (c[n] = { number: e }); - for (var o = 1; o < 2; o++) - (c[n + o] = { number: e + o }), - (c[n - o] = { number: e - o }); - } - else - for (var l = 0; l < t; l++) - c[l] = { number: l + 1, ellipsis: !1 }; - return ( - c.forEach(function (t) { - t.number === e && (t.active = !0); - }), - { - pages: c, - isLeftArrowEnabled: e > 1, - isRightArrowEnabled: e < t, - } - ); - })(n, r), - i = l.pages, - s = l.isLeftArrowEnabled, - u = l.isRightArrowEnabled; - return (0, za.jsxs)("div", { - className: "bp3-button-group pagination", - children: [ - (0, za.jsx)(Rn, { - large: !0, - disabled: !s, - onClick: function () { - return o(n - 1); - }, - id: "pagination-button-left", - children: (0, za.jsx)(_n, { icon: "chevron-left" }), - }), - i.map(function (e) { - return (0, za.jsx)( - Rn, - { - large: !0, - text: e.ellipsis ? "..." : e.number, - disabled: e.ellipsis, - intent: e.active ? Ke.PRIMARY : Ke.DEFAULT, - onClick: function () { - return o(e.number); - }, - }, - e.number - ); - }), - (0, za.jsx)(Rn, { - large: !0, - disabled: !u, - onClick: function () { - return o(n + 1); - }, - id: "pagination-button-right", - children: (0, za.jsx)(_n, { icon: "chevron-right" }), - }), - ], - }); - }, - Ha = {}; - function ba() { - return Ha.port - ? "" - .concat(window.location.protocol, "//") - .concat(window.location.hostname, ":") - .concat(Ha.port) - : window.location.origin; - } - var Va = function (t) { - var n = t.error, - c = Me(e.useState(!1), 2), - r = c[0], - a = c[1], - o = n && n.type; - return ( - e.useEffect( - function () { - n && console.error(n); - }, - [n, o] - ), - n && - !r && - (0, za.jsxs)("div", { - className: "error item-view-error", - children: [ - (0, za.jsx)(Rn, { - icon: (0, za.jsx)(_n, { icon: "cross", color: "white" }), - minimal: !0, - onClick: function () { - return a(!0); - }, - }), - "Error [", - n.type, - "] \u2014 ", - JSON.stringify(n.error), - ], - }) - ); - }; - var La = function (t) { - var n = t.itemRenderer, - c = void 0 === n ? ya : n, - r = t.collectionRenderer, - a = void 0 === r ? ga : r, - o = t.pagination, - l = void 0 === o || o, - i = t.resultsPerPage, - s = void 0 === i ? 9 : i, - u = Me((0, e.useState)(l ? 1 : null), 2), - h = u[0], - f = u[1], - p = Me((0, e.useState)(""), 2), - v = p[0], - d = p[1], - m = Me((0, e.useState)(""), 2), - z = m[0], - y = m[1], - g = Me((0, e.useState)(null), 2), - M = g[0], - H = g[1], - b = (0, He.useMephistoReview)({ - page: h, - resultsPerPage: s, - filters: v, - hostname: ba(), - }), - V = b.data, - L = b.isFinished, - w = b.isLoading, - C = b.error, - E = b.mode, - S = b.totalPages, - A = function (e) { - null !== h && 1 !== h && f(1), d(e); - }, - x = function () { - M && clearTimeout(M), A(z); - }, - k = (0, za.jsx)(Rn, { - id: "mephisto-search-button", - round: !0, - onClick: x, - children: "Search", - }); - return "OBO" === E - ? (0, za.jsx)(J, { to: "/".concat(V && V.id) }) - : (0, za.jsxs)(za.Fragment, { - children: [ - (0, za.jsx)(Gn, { - fixedToTop: !0, - children: (0, za.jsxs)("div", { - className: "navbar-wrapper", - children: [ - (0, za.jsxs)(Kn, { - className: "navbar-header", - children: [ - (0, za.jsx)(qn, { - children: (0, za.jsx)("b", { - children: "Mephisto Review", - }), - }), - (0, za.jsx)($n, {}), - ], - }), - (0, za.jsx)(Kn, { - align: Fe, - children: (0, za.jsx)(ma, { - content: "Separate multiple filters with commas", - children: (0, za.jsx)(Un, { - id: "mephisto-search", - className: "all-item-view-search-bar", - leftIcon: "search", - round: !0, - onChange: function (e) { - return ( - (t = e.target.value), - y(t), - M && clearTimeout(M), - void H( - setTimeout(function () { - A(t); - }, 3e3) - ) - ); - var t; - }, - onKeyDown: function (e) { - "Enter" === e.key && x(); - }, - placeholder: "Filter data...", - value: z, - rightElement: k, - }), - }), - }), - ], - }), - }), - (0, za.jsx)("main", { - className: "all-item-view mode-".concat(E), - id: "all-item-view-wrapper", - children: (0, za.jsxs)("div", { - className: "item-dynamic", - children: [ - (0, za.jsx)(Va, { error: C }), - w - ? (0, za.jsx)("h1", { - className: "all-item-view-message", - children: "Loading...", - }) - : L - ? (0, za.jsx)("h1", { - className: "all-item-view-message", - children: - "Done reviewing! You can close this app now", - }) - : V && V.length > 0 - ? (0, za.jsxs)(za.Fragment, { - children: [ - (0, za.jsx)(a, { items: V, itemRenderer: c }), - l && S > 1 - ? (0, za.jsx)(Ma, { - totalPages: S, - page: h, - setPage: f, - }) - : null, - ], - }) - : (0, za.jsxs)("div", { - className: - "all-item-view-message all-item-view-no-data", - children: [ - (0, za.jsxs)("h3", { - children: [ - "Thanks for using the ", - (0, za.jsx)("code", { - children: "$ mephisto review", - }), - " interface. Here are a few ways to get started:", - ], - }), - (0, za.jsxs)("h3", { - children: [ - "1. Review data from a .csv or", - " ", - (0, za.jsx)("a", { - href: "https://jsonlines.org/", - children: ".jsonl", - }), - " file", - ], - }), - (0, za.jsxs)("pre", { - children: [ - "$ cat sample-data", - (0, za.jsx)("span", { - className: "highlight", - children: ".json", - }), - " | mephisto review review-app/build/", - " ", - (0, za.jsx)("span", { - className: "highlight", - children: "--json", - }), - " --all --stdout", - ], - }), - (0, za.jsxs)("pre", { - children: [ - "$ cat sample-data", - (0, za.jsx)("span", { - className: "highlight", - children: ".csv", - }), - " | mephisto review review-app/build/", - " ", - (0, za.jsx)("span", { - className: "highlight", - children: "--csv", - }), - " --all --stdout", - ], - }), - (0, za.jsx)("h3", { - children: - "2. Review data from the Mephisto database", - }), - (0, za.jsxs)("pre", { - children: [ - "$ mephisto review review-app/build/", - " ", - (0, za.jsx)("span", { - className: "highlight", - children: "--db mephisto_db_task_name", - }), - " ", - "--all --stdout", - ], - }), - ], - }), - ], - }), - }), - ], - }); - }; - function wa(e, t, n, c, r, a, o) { - try { - var l = e[a](o), - i = l.value; - } catch (s) { - return void n(s); - } - l.done ? t(i) : Promise.resolve(i).then(c, r); - } - function Ca(e) { - return function () { - var t = this, - n = arguments; - return new Promise(function (c, r) { - var a = e.apply(t, n); - function o(e) { - wa(a, c, r, o, l, "next", e); - } - function l(e) { - wa(a, c, r, o, l, "throw", e); - } - o(void 0); - }); - }; - } - var Ea = n(7757), - Sa = n.n(Ea), - Aa = rc.create({ className: "recipe-toaster", position: nt }); - var xa = function (e) { - var t = e.itemRenderer, - n = void 0 === t ? ya : t, - c = e.wrapClass, - r = e.allowReview, - a = void 0 === r || r, - o = (function () { - var e = se(K).match; - return e ? e.params : {}; - })().id, - l = (0, He.useMephistoReview)({ taskId: o, hostname: ba() }), - i = l.data, - s = l.isFinished, - u = l.isLoading, - h = l.submit, - f = l.error, - p = l.mode, - v = se($), - d = function () { - "OBO" === p - ? v.push("/") - : Aa.show({ message: "Review response recorded." }); - }, - m = function (e) { - Aa.show({ message: "ERROR: ".concat(e) }); - }, - z = f || s || u || null == i, - y = !a && "ALL" === p; - return (0, za.jsxs)(za.Fragment, { - children: [ - (0, za.jsx)(Gn, { - fixedToTop: !0, - children: (0, za.jsxs)("div", { - className: "navbar-wrapper", - children: [ - (0, za.jsxs)(Kn, { - children: [ - "ALL" === p - ? (0, za.jsxs)(za.Fragment, { - children: [ - (0, za.jsx)(me, { - to: "/", - style: { textDecoration: "none" }, - children: (0, za.jsx)(Rn, { - intent: "primary", - icon: "caret-left", - id: "home-button", - children: (0, za.jsx)("b", { - children: "Mephisto Review", - }), - }), - }), - (0, za.jsx)($n, {}), - ], - }) - : null, - (0, za.jsx)(qn, { - className: "navbar-header", - children: y - ? (0, za.jsx)("b", { children: "Viewing task:" }) - : (0, za.jsx)("b", { - children: "Please review the following item:", - }), - }), - ], - }), - y - ? null - : (0, za.jsxs)(Kn, { - align: Fe, - children: [ - (0, za.jsx)(Rn, { - className: "btn", - intent: "danger", - disabled: z, - id: "reject-button", - onClick: Ca( - Sa().mark(function e() { - var t; - return Sa().wrap(function (e) { - for (;;) - switch ((e.prev = e.next)) { - case 0: - return ( - (e.next = 2), - h({ result: "rejected" }) - ); - case 2: - "SUCCESS" === (t = e.sent) - ? d() - : t && m(t); - case 4: - case "end": - return e.stop(); - } - }, e); - }) - ), - children: (0, za.jsx)("b", { children: "REJECT" }), - }), - (0, za.jsx)(Rn, { - className: "btn", - intent: "success", - disabled: z, - id: "approve-button", - onClick: Ca( - Sa().mark(function e() { - var t; - return Sa().wrap(function (e) { - for (;;) - switch ((e.prev = e.next)) { - case 0: - return ( - (e.next = 2), - h({ result: "approved" }) - ); - case 2: - "SUCCESS" === (t = e.sent) - ? d() - : t && m(t); - case 4: - case "end": - return e.stop(); - } - }, e); - }) - ), - children: (0, za.jsx)("b", { children: "APPROVE" }), - }), - ], - }), - ], - }), - }), - (0, za.jsx)("main", { - className: "item-view mode-".concat(p), - children: u - ? (0, za.jsxs)("div", { - className: "item-dynamic", - children: [ - (0, za.jsx)(Va, { error: f }), - (0, za.jsx)("h1", { - className: "item-view-message", - children: "Loading...", - }), - ], - }) - : s - ? (0, za.jsxs)("div", { - className: "item-dynamic", - children: [ - (0, za.jsx)(Va, { error: f }), - (0, za.jsx)("h1", { - className: "item-view-message", - children: "Done reviewing! You can close this app now", - }), - ], - }) - : i - ? c - ? (0, za.jsxs)("div", { - className: c, - children: [ - (0, za.jsx)(Va, { error: f }), - (0, za.jsx)(n, { item: i }), - ], - }) - : (0, za.jsxs)(za.Fragment, { - children: [ - (0, za.jsx)(Va, { error: f }), - (0, za.jsx)(n, { item: i }), - ], - }) - : (0, za.jsx)("div", { - className: "item-dynamic", - children: (0, za.jsxs)("div", { - className: "item-view-message item-view-no-data", - children: [ - (0, za.jsx)(Va, { error: f }), - (0, za.jsxs)("h3", { - children: [ - "Thanks for using the ", - (0, za.jsx)("code", { - children: "$ mephisto review", - }), - " interface. Here are a few ways to get started:", - ], - }), - (0, za.jsxs)("h3", { - children: [ - "1. Review data from a .csv or", - " ", - (0, za.jsx)("a", { - href: "https://jsonlines.org/", - children: ".jsonl", - }), - " file", - ], - }), - (0, za.jsxs)("pre", { - children: [ - "$ cat sample-data", - (0, za.jsx)("span", { - className: "highlight", - children: ".json", - }), - " | mephisto review review-app/build/", - " ", - (0, za.jsx)("span", { - className: "highlight", - children: "--json", - }), - " --stdout", - ], - }), - (0, za.jsxs)("pre", { - children: [ - "$ cat sample-data", - (0, za.jsx)("span", { - className: "highlight", - children: ".csv", - }), - " | mephisto review review-app/build/", - " ", - (0, za.jsx)("span", { - className: "highlight", - children: "--csv", - }), - " --stdout", - ], - }), - (0, za.jsx)("h3", { - children: "2. Review data from the Mephisto database", - }), - (0, za.jsxs)("pre", { - children: [ - "$ mephisto review review-app/build/", - " ", - (0, za.jsx)("span", { - className: "highlight", - children: "--db mephisto_db_task_name", - }), - " ", - "--stdout", - ], - }), - ], - }), - }), - }), - ], - }); - }; - t.render( - (0, za.jsx)(e.StrictMode, { - children: (0, za.jsx)(ue, { - children: (0, za.jsxs)(ie, { - children: [ - (0, za.jsx)(ne, { - path: "/:id", - children: (0, za.jsx)(xa, { - wrapClass: "item-dynamic", - itemRenderer: ya, - }), - }), - (0, za.jsx)(ne, { - path: "/", - children: (0, za.jsx)(La, { - collectionRenderer: ga, - itemRenderer: ya, - pagination: !0, - resultsPerPage: 9, - }), - }), - ], - }), - }), - }), - document.getElementById("root") - ); - })(); -})(); -//# sourceMappingURL=main.7cc18a59.js.map diff --git a/mephisto/client/review/default-ui/static/js/main.7cc18a59.js.LICENSE.txt b/mephisto/client/review/default-ui/static/js/main.7cc18a59.js.LICENSE.txt deleted file mode 100644 index fadeab056..000000000 --- a/mephisto/client/review/default-ui/static/js/main.7cc18a59.js.LICENSE.txt +++ /dev/null @@ -1,94 +0,0 @@ -/* -object-assign -(c) Sindre Sorhus -@license MIT -*/ - -/*! - Copyright (c) 2018 Jed Watson. - Licensed under the MIT License (MIT), see - http://jedwatson.github.io/classnames -*/ - -/*! -Copyright (C) 2013-2015 by Andrea Giammarchi - @WebReflection - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -*/ - -/*! ***************************************************************************** -Copyright (c) Microsoft Corporation. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. -***************************************************************************** */ - -/** @license React v0.20.2 - * scheduler.production.min.js - * - * Copyright (c) Meta Platforms and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -/** @license React v16.13.1 - * react-is.production.min.js - * - * Copyright (c) Meta Platforms and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -/** @license React v17.0.2 - * react-dom.production.min.js - * - * Copyright (c) Meta Platforms and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -/** @license React v17.0.2 - * react-jsx-runtime.production.min.js - * - * Copyright (c) Meta Platforms and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -/** @license React v17.0.2 - * react.production.min.js - * - * Copyright (c) Meta Platforms and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ diff --git a/mephisto/client/review/default-ui/static/js/main.7cc18a59.js.map b/mephisto/client/review/default-ui/static/js/main.7cc18a59.js.map deleted file mode 100644 index c0e0746ec..000000000 --- a/mephisto/client/review/default-ui/static/js/main.7cc18a59.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"static/js/main.7cc18a59.js","mappings":"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","sources":["../node_modules/@babel/runtime/helpers/interopRequireDefault.js","../node_modules/@babel/runtime/regenerator/index.js","../node_modules/@hypnosphi/create-react-context/lib/implementation.js","../node_modules/@hypnosphi/create-react-context/lib/index.js","../node_modules/call-bind/callBound.js","../node_modules/call-bind/index.js","../node_modules/classnames/index.js","../node_modules/deep-equal/index.js","../node_modules/define-properties/index.js","../node_modules/dom-helpers/class/addClass.js","../node_modules/dom-helpers/class/hasClass.js","../node_modules/dom-helpers/class/removeClass.js","../node_modules/dom4/build/dom4.max.js","../node_modules/function-bind/implementation.js","../node_modules/function-bind/index.js","../node_modules/get-intrinsic/index.js","../node_modules/gud/index.js","../node_modules/has-symbols/index.js","../node_modules/has-symbols/shams.js","../node_modules/has-tostringtag/shams.js","../node_modules/has/src/index.js","../node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js","../node_modules/hoist-non-react-statics/node_modules/react-is/cjs/react-is.production.min.js","../node_modules/hoist-non-react-statics/node_modules/react-is/index.js","../node_modules/is-arguments/index.js","../node_modules/is-date-object/index.js","../node_modules/is-regex/index.js","../node_modules/mephisto-review-hook/build/bundle.js","../node_modules/object-assign/index.js","../node_modules/object-is/implementation.js","../node_modules/object-is/index.js","../node_modules/object-is/polyfill.js","../node_modules/object-is/shim.js","../node_modules/object-keys/implementation.js","../node_modules/object-keys/index.js","../node_modules/object-keys/isArguments.js","../node_modules/prop-types/factoryWithThrowingShims.js","../node_modules/prop-types/index.js","../node_modules/prop-types/lib/ReactPropTypesSecret.js","../node_modules/react-dom/cjs/react-dom.production.min.js","../node_modules/react-dom/index.js","../node_modules/react-lifecycles-compat/react-lifecycles-compat.es.js","../node_modules/react-router/node_modules/isarray/index.js","../node_modules/react-router/node_modules/path-to-regexp/index.js","../node_modules/react-router/node_modules/react-is/cjs/react-is.production.min.js","../node_modules/react-router/node_modules/react-is/index.js","../node_modules/react-transition-group/CSSTransition.js","../node_modules/react-transition-group/ReplaceTransition.js","../node_modules/react-transition-group/Transition.js","../node_modules/react-transition-group/TransitionGroup.js","../node_modules/react-transition-group/index.js","../node_modules/react-transition-group/utils/ChildMapping.js","../node_modules/react-transition-group/utils/PropTypes.js","../node_modules/react/cjs/react-jsx-runtime.production.min.js","../node_modules/react/cjs/react.production.min.js","../node_modules/react/index.js","../node_modules/react/jsx-runtime.js","../node_modules/regenerator-runtime/runtime.js","../node_modules/regexp.prototype.flags/implementation.js","../node_modules/regexp.prototype.flags/index.js","../node_modules/regexp.prototype.flags/polyfill.js","../node_modules/regexp.prototype.flags/shim.js","../node_modules/scheduler/cjs/scheduler.production.min.js","../node_modules/scheduler/index.js","../node_modules/warning/warning.js","../webpack/bootstrap","../webpack/runtime/compat get default export","../webpack/runtime/define property getters","../webpack/runtime/global","../webpack/runtime/hasOwnProperty shorthand","../webpack/runtime/make namespace object","../node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js","../node_modules/@babel/runtime/helpers/esm/inheritsLoose.js","../node_modules/@babel/runtime/helpers/esm/extends.js","../node_modules/resolve-pathname/esm/resolve-pathname.js","../node_modules/value-equal/esm/value-equal.js","../node_modules/tiny-invariant/dist/tiny-invariant.esm.js","../node_modules/history/esm/history.js","../node_modules/mini-create-react-context/dist/esm/index.js","../node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js","../node_modules/react-router/modules/createNameContext.js","../node_modules/react-router/modules/HistoryContext.js","../node_modules/react-router/modules/RouterContext.js","../node_modules/react-router/modules/Router.js","../node_modules/react-router/modules/MemoryRouter.js","../node_modules/react-router/modules/Lifecycle.js","../node_modules/react-router/modules/generatePath.js","../node_modules/react-router/modules/Redirect.js","../node_modules/react-router/modules/matchPath.js","../node_modules/react-router/modules/Route.js","../node_modules/react-router/modules/StaticRouter.js","../node_modules/react-router/modules/Switch.js","../node_modules/react-router/modules/hooks.js","../node_modules/react-router-dom/modules/BrowserRouter.js","../node_modules/react-router-dom/modules/HashRouter.js","../node_modules/react-router-dom/modules/utils/locationUtils.js","../node_modules/react-router-dom/modules/Link.js","../node_modules/react-router-dom/modules/NavLink.js","../node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js","../node_modules/@babel/runtime/helpers/esm/slicedToArray.js","../node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js","../node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js","../node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js","../node_modules/@babel/runtime/helpers/esm/nonIterableRest.js","../node_modules/@blueprintjs/core/src/common/configureDom4.ts","../node_modules/@blueprintjs/core/node_modules/tslib/tslib.es6.js","../node_modules/@blueprintjs/core/src/common/props.ts","../node_modules/@blueprintjs/core/src/common/refs.ts","../node_modules/@blueprintjs/core/src/common/keys.ts","../node_modules/@blueprintjs/core/src/common/alignment.ts","../node_modules/@blueprintjs/core/src/common/elevation.ts","../node_modules/@blueprintjs/core/src/common/intent.ts","../node_modules/@blueprintjs/core/src/common/position.ts","../node_modules/@blueprintjs/core/src/common/classes.ts","../node_modules/@blueprintjs/core/src/common/utils/jsUtils.ts","../node_modules/@blueprintjs/core/src/common/abstractPureComponent2.ts","../node_modules/@blueprintjs/core/src/common/utils/reactUtils.ts","../node_modules/@blueprintjs/core/src/components/icon/icon.tsx","../node_modules/@blueprintjs/icons/src/generated/iconSvgPaths.ts","../node_modules/@blueprintjs/core/src/components/spinner/spinner.tsx","../node_modules/@blueprintjs/core/src/common/errors.ts","../node_modules/@blueprintjs/core/src/components/button/abstractButton.tsx","../node_modules/@blueprintjs/core/src/components/button/buttons.tsx","../node_modules/@blueprintjs/core/src/components/card/card.tsx","../node_modules/@blueprintjs/core/src/components/forms/asyncControllableInput.tsx","../node_modules/@blueprintjs/core/src/components/forms/inputGroup.tsx","../node_modules/@blueprintjs/core/src/components/html/html.tsx","../node_modules/@blueprintjs/core/src/components/navbar/navbarDivider.tsx","../node_modules/@blueprintjs/core/src/components/navbar/navbarGroup.tsx","../node_modules/@blueprintjs/core/src/components/navbar/navbarHeading.tsx","../node_modules/@blueprintjs/core/src/components/navbar/navbar.tsx","../node_modules/@blueprintjs/core/src/common/utils/functionUtils.ts","../node_modules/@blueprintjs/core/src/components/portal/portal.tsx","../node_modules/@blueprintjs/core/src/components/overlay/overlay.tsx","../node_modules/@blueprintjs/core/src/components/button/buttonGroup.tsx","../node_modules/@blueprintjs/core/src/components/toast/toast.tsx","../node_modules/@blueprintjs/core/src/components/toast/toaster.tsx","../node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js","../node_modules/@babel/runtime/helpers/esm/defineProperty.js","../node_modules/react-popper/lib/esm/Manager.js","../node_modules/react-popper/lib/esm/utils.js","../node_modules/react-popper/lib/esm/Reference.js","../node_modules/popper.js/src/utils/isBrowser.js","../node_modules/popper.js/src/utils/debounce.js","../node_modules/popper.js/src/utils/isFunction.js","../node_modules/popper.js/src/utils/getStyleComputedProperty.js","../node_modules/popper.js/src/utils/getParentNode.js","../node_modules/popper.js/src/utils/getScrollParent.js","../node_modules/popper.js/src/utils/getReferenceNode.js","../node_modules/popper.js/src/utils/isIE.js","../node_modules/popper.js/src/utils/getOffsetParent.js","../node_modules/popper.js/src/utils/getRoot.js","../node_modules/popper.js/src/utils/findCommonOffsetParent.js","../node_modules/popper.js/src/utils/isOffsetContainer.js","../node_modules/popper.js/src/utils/getScroll.js","../node_modules/popper.js/src/utils/includeScroll.js","../node_modules/popper.js/src/utils/getBordersSize.js","../node_modules/popper.js/src/utils/getWindowSizes.js","../node_modules/popper.js/src/utils/getClientRect.js","../node_modules/popper.js/src/utils/getBoundingClientRect.js","../node_modules/popper.js/src/utils/getOffsetRectRelativeToArbitraryNode.js","../node_modules/popper.js/src/utils/getViewportOffsetRectRelativeToArtbitraryNode.js","../node_modules/popper.js/src/utils/isFixed.js","../node_modules/popper.js/src/utils/getFixedPositionOffsetParent.js","../node_modules/popper.js/src/utils/getBoundaries.js","../node_modules/popper.js/src/utils/computeAutoPlacement.js","../node_modules/popper.js/src/utils/getReferenceOffsets.js","../node_modules/popper.js/src/utils/getOuterSizes.js","../node_modules/popper.js/src/utils/getOppositePlacement.js","../node_modules/popper.js/src/utils/getPopperOffsets.js","../node_modules/popper.js/src/utils/find.js","../node_modules/popper.js/src/utils/runModifiers.js","../node_modules/popper.js/src/utils/findIndex.js","../node_modules/popper.js/src/methods/update.js","../node_modules/popper.js/src/utils/isModifierEnabled.js","../node_modules/popper.js/src/utils/getSupportedPropertyName.js","../node_modules/popper.js/src/methods/destroy.js","../node_modules/popper.js/src/utils/getWindow.js","../node_modules/popper.js/src/utils/setupEventListeners.js","../node_modules/popper.js/src/methods/enableEventListeners.js","../node_modules/popper.js/src/methods/disableEventListeners.js","../node_modules/popper.js/src/utils/removeEventListeners.js","../node_modules/popper.js/src/utils/isNumeric.js","../node_modules/popper.js/src/utils/setStyles.js","../node_modules/popper.js/src/modifiers/computeStyle.js","../node_modules/popper.js/src/utils/isModifierRequired.js","../node_modules/popper.js/src/methods/placements.js","../node_modules/popper.js/src/utils/clockwise.js","../node_modules/popper.js/src/modifiers/flip.js","../node_modules/popper.js/src/modifiers/offset.js","../node_modules/popper.js/src/modifiers/index.js","../node_modules/popper.js/src/modifiers/shift.js","../node_modules/popper.js/src/modifiers/preventOverflow.js","../node_modules/popper.js/src/modifiers/keepTogether.js","../node_modules/popper.js/src/modifiers/arrow.js","../node_modules/popper.js/src/utils/getOppositeVariation.js","../node_modules/popper.js/src/modifiers/inner.js","../node_modules/popper.js/src/modifiers/hide.js","../node_modules/popper.js/src/utils/getRoundedOffsets.js","../node_modules/popper.js/src/modifiers/applyStyle.js","../node_modules/popper.js/src/utils/setAttributes.js","../node_modules/popper.js/src/methods/defaults.js","../node_modules/popper.js/src/index.js","../node_modules/react-popper/lib/esm/Popper.js","../node_modules/@blueprintjs/core/src/common/utils/domUtils.ts","../node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js","../node_modules/@blueprintjs/core/src/components/resize-sensor/resizeSensor.tsx","../node_modules/@blueprintjs/core/src/components/popover/popperUtils.ts","../node_modules/@blueprintjs/core/src/components/popover/popoverArrow.tsx","../node_modules/@blueprintjs/core/src/components/popover/popoverMigrationUtils.ts","../node_modules/@blueprintjs/core/src/components/popover/popover.tsx","../node_modules/@blueprintjs/core/src/components/tooltip/tooltip.tsx","renderers/JSONItem/JSONItem.jsx","renderers/GridCollection/GridCollection.jsx","components/pagination/Pagination.jsx","config.js","utils.js","components/ErrorPane.js","components/CollectionView.jsx","../node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js","components/ItemView.jsx","index.js"],"sourcesContent":["function _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {\n \"default\": obj\n };\n}\n\nmodule.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports[\"default\"] = module.exports;","module.exports = require(\"regenerator-runtime\");\n","'use strict';\n\nexports.__esModule = true;\n\nvar _react = require('react');\n\nvar _react2 = _interopRequireDefault(_react);\n\nvar _propTypes = require('prop-types');\n\nvar _propTypes2 = _interopRequireDefault(_propTypes);\n\nvar _gud = require('gud');\n\nvar _gud2 = _interopRequireDefault(_gud);\n\nvar _warning = require('warning');\n\nvar _warning2 = _interopRequireDefault(_warning);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\nvar MAX_SIGNED_31_BIT_INT = 1073741823;\n\n// Inlined Object.is polyfill.\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is\nfunction objectIs(x, y) {\n if (x === y) {\n return x !== 0 || 1 / x === 1 / y;\n } else {\n return x !== x && y !== y;\n }\n}\n\nfunction createEventEmitter(value) {\n var handlers = [];\n return {\n on: function on(handler) {\n handlers.push(handler);\n },\n off: function off(handler) {\n handlers = handlers.filter(function (h) {\n return h !== handler;\n });\n },\n get: function get() {\n return value;\n },\n set: function set(newValue, changedBits) {\n value = newValue;\n handlers.forEach(function (handler) {\n return handler(value, changedBits);\n });\n }\n };\n}\n\nfunction onlyChild(children) {\n return Array.isArray(children) ? children[0] : children;\n}\n\nfunction createReactContext(defaultValue, calculateChangedBits) {\n var _Provider$childContex, _Consumer$contextType;\n\n var contextProp = '__create-react-context-' + (0, _gud2.default)() + '__';\n\n var Provider = function (_Component) {\n _inherits(Provider, _Component);\n\n function Provider() {\n var _temp, _this, _ret;\n\n _classCallCheck(this, Provider);\n\n for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n return _ret = (_temp = (_this = _possibleConstructorReturn(this, _Component.call.apply(_Component, [this].concat(args))), _this), _this.emitter = createEventEmitter(_this.props.value), _temp), _possibleConstructorReturn(_this, _ret);\n }\n\n Provider.prototype.getChildContext = function getChildContext() {\n var _ref;\n\n return _ref = {}, _ref[contextProp] = this.emitter, _ref;\n };\n\n Provider.prototype.componentWillReceiveProps = function componentWillReceiveProps(nextProps) {\n if (this.props.value !== nextProps.value) {\n var oldValue = this.props.value;\n var newValue = nextProps.value;\n var changedBits = void 0;\n\n if (objectIs(oldValue, newValue)) {\n changedBits = 0; // No change\n } else {\n changedBits = typeof calculateChangedBits === 'function' ? calculateChangedBits(oldValue, newValue) : MAX_SIGNED_31_BIT_INT;\n if (process.env.NODE_ENV !== 'production') {\n (0, _warning2.default)((changedBits & MAX_SIGNED_31_BIT_INT) === changedBits, 'calculateChangedBits: Expected the return value to be a ' + '31-bit integer. Instead received: %s', changedBits);\n }\n\n changedBits |= 0;\n\n if (changedBits !== 0) {\n this.emitter.set(nextProps.value, changedBits);\n }\n }\n }\n };\n\n Provider.prototype.render = function render() {\n return this.props.children;\n };\n\n return Provider;\n }(_react.Component);\n\n Provider.childContextTypes = (_Provider$childContex = {}, _Provider$childContex[contextProp] = _propTypes2.default.object.isRequired, _Provider$childContex);\n\n var Consumer = function (_Component2) {\n _inherits(Consumer, _Component2);\n\n function Consumer() {\n var _temp2, _this2, _ret2;\n\n _classCallCheck(this, Consumer);\n\n for (var _len2 = arguments.length, args = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n args[_key2] = arguments[_key2];\n }\n\n return _ret2 = (_temp2 = (_this2 = _possibleConstructorReturn(this, _Component2.call.apply(_Component2, [this].concat(args))), _this2), _this2.state = {\n value: _this2.getValue()\n }, _this2.onUpdate = function (newValue, changedBits) {\n var observedBits = _this2.observedBits | 0;\n if ((observedBits & changedBits) !== 0) {\n _this2.setState({ value: _this2.getValue() });\n }\n }, _temp2), _possibleConstructorReturn(_this2, _ret2);\n }\n\n Consumer.prototype.componentWillReceiveProps = function componentWillReceiveProps(nextProps) {\n var observedBits = nextProps.observedBits;\n\n this.observedBits = observedBits === undefined || observedBits === null ? MAX_SIGNED_31_BIT_INT // Subscribe to all changes by default\n : observedBits;\n };\n\n Consumer.prototype.componentDidMount = function componentDidMount() {\n if (this.context[contextProp]) {\n this.context[contextProp].on(this.onUpdate);\n }\n var observedBits = this.props.observedBits;\n\n this.observedBits = observedBits === undefined || observedBits === null ? MAX_SIGNED_31_BIT_INT // Subscribe to all changes by default\n : observedBits;\n };\n\n Consumer.prototype.componentWillUnmount = function componentWillUnmount() {\n if (this.context[contextProp]) {\n this.context[contextProp].off(this.onUpdate);\n }\n };\n\n Consumer.prototype.getValue = function getValue() {\n if (this.context[contextProp]) {\n return this.context[contextProp].get();\n } else {\n return defaultValue;\n }\n };\n\n Consumer.prototype.render = function render() {\n return onlyChild(this.props.children)(this.state.value);\n };\n\n return Consumer;\n }(_react.Component);\n\n Consumer.contextTypes = (_Consumer$contextType = {}, _Consumer$contextType[contextProp] = _propTypes2.default.object, _Consumer$contextType);\n\n\n return {\n Provider: Provider,\n Consumer: Consumer\n };\n}\n\nexports.default = createReactContext;\nmodule.exports = exports['default'];","'use strict';\n\nexports.__esModule = true;\n\nvar _react = require('react');\n\nvar _react2 = _interopRequireDefault(_react);\n\nvar _implementation = require('./implementation');\n\nvar _implementation2 = _interopRequireDefault(_implementation);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nexports.default = _react2.default.createContext || _implementation2.default;\nmodule.exports = exports['default'];","'use strict';\n\nvar GetIntrinsic = require('get-intrinsic');\n\nvar callBind = require('./');\n\nvar $indexOf = callBind(GetIntrinsic('String.prototype.indexOf'));\n\nmodule.exports = function callBoundIntrinsic(name, allowMissing) {\n\tvar intrinsic = GetIntrinsic(name, !!allowMissing);\n\tif (typeof intrinsic === 'function' && $indexOf(name, '.prototype.') > -1) {\n\t\treturn callBind(intrinsic);\n\t}\n\treturn intrinsic;\n};\n","'use strict';\n\nvar bind = require('function-bind');\nvar GetIntrinsic = require('get-intrinsic');\n\nvar $apply = GetIntrinsic('%Function.prototype.apply%');\nvar $call = GetIntrinsic('%Function.prototype.call%');\nvar $reflectApply = GetIntrinsic('%Reflect.apply%', true) || bind.call($call, $apply);\n\nvar $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true);\nvar $defineProperty = GetIntrinsic('%Object.defineProperty%', true);\nvar $max = GetIntrinsic('%Math.max%');\n\nif ($defineProperty) {\n\ttry {\n\t\t$defineProperty({}, 'a', { value: 1 });\n\t} catch (e) {\n\t\t// IE 8 has a broken defineProperty\n\t\t$defineProperty = null;\n\t}\n}\n\nmodule.exports = function callBind(originalFunction) {\n\tvar func = $reflectApply(bind, $call, arguments);\n\tif ($gOPD && $defineProperty) {\n\t\tvar desc = $gOPD(func, 'length');\n\t\tif (desc.configurable) {\n\t\t\t// original length, plus the receiver, minus any additional arguments (after the receiver)\n\t\t\t$defineProperty(\n\t\t\t\tfunc,\n\t\t\t\t'length',\n\t\t\t\t{ value: 1 + $max(0, originalFunction.length - (arguments.length - 1)) }\n\t\t\t);\n\t\t}\n\t}\n\treturn func;\n};\n\nvar applyBind = function applyBind() {\n\treturn $reflectApply(bind, $apply, arguments);\n};\n\nif ($defineProperty) {\n\t$defineProperty(module.exports, 'apply', { value: applyBind });\n} else {\n\tmodule.exports.apply = applyBind;\n}\n","/*!\n Copyright (c) 2018 Jed Watson.\n Licensed under the MIT License (MIT), see\n http://jedwatson.github.io/classnames\n*/\n/* global define */\n\n(function () {\n\t'use strict';\n\n\tvar hasOwn = {}.hasOwnProperty;\n\n\tfunction classNames() {\n\t\tvar classes = [];\n\n\t\tfor (var i = 0; i < arguments.length; i++) {\n\t\t\tvar arg = arguments[i];\n\t\t\tif (!arg) continue;\n\n\t\t\tvar argType = typeof arg;\n\n\t\t\tif (argType === 'string' || argType === 'number') {\n\t\t\t\tclasses.push(arg);\n\t\t\t} else if (Array.isArray(arg)) {\n\t\t\t\tif (arg.length) {\n\t\t\t\t\tvar inner = classNames.apply(null, arg);\n\t\t\t\t\tif (inner) {\n\t\t\t\t\t\tclasses.push(inner);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else if (argType === 'object') {\n\t\t\t\tif (arg.toString === Object.prototype.toString) {\n\t\t\t\t\tfor (var key in arg) {\n\t\t\t\t\t\tif (hasOwn.call(arg, key) && arg[key]) {\n\t\t\t\t\t\t\tclasses.push(key);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tclasses.push(arg.toString());\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn classes.join(' ');\n\t}\n\n\tif (typeof module !== 'undefined' && module.exports) {\n\t\tclassNames.default = classNames;\n\t\tmodule.exports = classNames;\n\t} else if (typeof define === 'function' && typeof define.amd === 'object' && define.amd) {\n\t\t// register as 'classnames', consistent with npm package name\n\t\tdefine('classnames', [], function () {\n\t\t\treturn classNames;\n\t\t});\n\t} else {\n\t\twindow.classNames = classNames;\n\t}\n}());\n","var objectKeys = require('object-keys');\nvar isArguments = require('is-arguments');\nvar is = require('object-is');\nvar isRegex = require('is-regex');\nvar flags = require('regexp.prototype.flags');\nvar isDate = require('is-date-object');\n\nvar getTime = Date.prototype.getTime;\n\nfunction deepEqual(actual, expected, options) {\n var opts = options || {};\n\n // 7.1. All identical values are equivalent, as determined by ===.\n if (opts.strict ? is(actual, expected) : actual === expected) {\n return true;\n }\n\n // 7.3. Other pairs that do not both pass typeof value == 'object', equivalence is determined by ==.\n if (!actual || !expected || (typeof actual !== 'object' && typeof expected !== 'object')) {\n return opts.strict ? is(actual, expected) : actual == expected;\n }\n\n /*\n * 7.4. For all other Object pairs, including Array objects, equivalence is\n * determined by having the same number of owned properties (as verified\n * with Object.prototype.hasOwnProperty.call), the same set of keys\n * (although not necessarily the same order), equivalent values for every\n * corresponding key, and an identical 'prototype' property. Note: this\n * accounts for both named and indexed properties on Arrays.\n */\n // eslint-disable-next-line no-use-before-define\n return objEquiv(actual, expected, opts);\n}\n\nfunction isUndefinedOrNull(value) {\n return value === null || value === undefined;\n}\n\nfunction isBuffer(x) {\n if (!x || typeof x !== 'object' || typeof x.length !== 'number') {\n return false;\n }\n if (typeof x.copy !== 'function' || typeof x.slice !== 'function') {\n return false;\n }\n if (x.length > 0 && typeof x[0] !== 'number') {\n return false;\n }\n return true;\n}\n\nfunction objEquiv(a, b, opts) {\n /* eslint max-statements: [2, 50] */\n var i, key;\n if (typeof a !== typeof b) { return false; }\n if (isUndefinedOrNull(a) || isUndefinedOrNull(b)) { return false; }\n\n // an identical 'prototype' property.\n if (a.prototype !== b.prototype) { return false; }\n\n if (isArguments(a) !== isArguments(b)) { return false; }\n\n var aIsRegex = isRegex(a);\n var bIsRegex = isRegex(b);\n if (aIsRegex !== bIsRegex) { return false; }\n if (aIsRegex || bIsRegex) {\n return a.source === b.source && flags(a) === flags(b);\n }\n\n if (isDate(a) && isDate(b)) {\n return getTime.call(a) === getTime.call(b);\n }\n\n var aIsBuffer = isBuffer(a);\n var bIsBuffer = isBuffer(b);\n if (aIsBuffer !== bIsBuffer) { return false; }\n if (aIsBuffer || bIsBuffer) { // && would work too, because both are true or both false here\n if (a.length !== b.length) { return false; }\n for (i = 0; i < a.length; i++) {\n if (a[i] !== b[i]) { return false; }\n }\n return true;\n }\n\n if (typeof a !== typeof b) { return false; }\n\n try {\n var ka = objectKeys(a);\n var kb = objectKeys(b);\n } catch (e) { // happens when one is a string literal and the other isn't\n return false;\n }\n // having the same number of owned properties (keys incorporates hasOwnProperty)\n if (ka.length !== kb.length) { return false; }\n\n // the same set of keys (although not necessarily the same order),\n ka.sort();\n kb.sort();\n // ~~~cheap key test\n for (i = ka.length - 1; i >= 0; i--) {\n if (ka[i] != kb[i]) { return false; }\n }\n // equivalent values for every corresponding key, and ~~~possibly expensive deep test\n for (i = ka.length - 1; i >= 0; i--) {\n key = ka[i];\n if (!deepEqual(a[key], b[key], opts)) { return false; }\n }\n\n return true;\n}\n\nmodule.exports = deepEqual;\n","'use strict';\n\nvar keys = require('object-keys');\nvar hasSymbols = typeof Symbol === 'function' && typeof Symbol('foo') === 'symbol';\n\nvar toStr = Object.prototype.toString;\nvar concat = Array.prototype.concat;\nvar origDefineProperty = Object.defineProperty;\n\nvar isFunction = function (fn) {\n\treturn typeof fn === 'function' && toStr.call(fn) === '[object Function]';\n};\n\nvar arePropertyDescriptorsSupported = function () {\n\tvar obj = {};\n\ttry {\n\t\torigDefineProperty(obj, 'x', { enumerable: false, value: obj });\n\t\t// eslint-disable-next-line no-unused-vars, no-restricted-syntax\n\t\tfor (var _ in obj) { // jscs:ignore disallowUnusedVariables\n\t\t\treturn false;\n\t\t}\n\t\treturn obj.x === obj;\n\t} catch (e) { /* this is IE 8. */\n\t\treturn false;\n\t}\n};\nvar supportsDescriptors = origDefineProperty && arePropertyDescriptorsSupported();\n\nvar defineProperty = function (object, name, value, predicate) {\n\tif (name in object && (!isFunction(predicate) || !predicate())) {\n\t\treturn;\n\t}\n\tif (supportsDescriptors) {\n\t\torigDefineProperty(object, name, {\n\t\t\tconfigurable: true,\n\t\t\tenumerable: false,\n\t\t\tvalue: value,\n\t\t\twritable: true\n\t\t});\n\t} else {\n\t\tobject[name] = value;\n\t}\n};\n\nvar defineProperties = function (object, map) {\n\tvar predicates = arguments.length > 2 ? arguments[2] : {};\n\tvar props = keys(map);\n\tif (hasSymbols) {\n\t\tprops = concat.call(props, Object.getOwnPropertySymbols(map));\n\t}\n\tfor (var i = 0; i < props.length; i += 1) {\n\t\tdefineProperty(object, props[i], map[props[i]], predicates[props[i]]);\n\t}\n};\n\ndefineProperties.supportsDescriptors = !!supportsDescriptors;\n\nmodule.exports = defineProperties;\n","\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\n\nexports.__esModule = true;\nexports.default = addClass;\n\nvar _hasClass = _interopRequireDefault(require(\"./hasClass\"));\n\nfunction addClass(element, className) {\n if (element.classList) element.classList.add(className);else if (!(0, _hasClass.default)(element, className)) if (typeof element.className === 'string') element.className = element.className + ' ' + className;else element.setAttribute('class', (element.className && element.className.baseVal || '') + ' ' + className);\n}\n\nmodule.exports = exports[\"default\"];","\"use strict\";\n\nexports.__esModule = true;\nexports.default = hasClass;\n\nfunction hasClass(element, className) {\n if (element.classList) return !!className && element.classList.contains(className);else return (\" \" + (element.className.baseVal || element.className) + \" \").indexOf(\" \" + className + \" \") !== -1;\n}\n\nmodule.exports = exports[\"default\"];","'use strict';\n\nfunction replaceClassName(origClass, classToRemove) {\n return origClass.replace(new RegExp('(^|\\\\s)' + classToRemove + '(?:\\\\s|$)', 'g'), '$1').replace(/\\s+/g, ' ').replace(/^\\s*|\\s*$/g, '');\n}\n\nmodule.exports = function removeClass(element, className) {\n if (element.classList) element.classList.remove(className);else if (typeof element.className === 'string') element.className = replaceClassName(element.className, className);else element.setAttribute('class', replaceClassName(element.className && element.className.baseVal || '', className));\n};","/*!\nCopyright (C) 2013-2015 by Andrea Giammarchi - @WebReflection\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n*/\n(function(window){'use strict';\n /* jshint loopfunc: true, noempty: false*/\n // http://www.w3.org/TR/dom/#element\n\n function createDocumentFragment() {\n return document.createDocumentFragment();\n }\n\n function createElement(nodeName) {\n return document.createElement(nodeName);\n }\n\n function enoughArguments(length, name) {\n if (!length) throw new Error(\n 'Failed to construct ' +\n name +\n ': 1 argument required, but only 0 present.'\n );\n }\n\n function mutationMacro(nodes) {\n if (nodes.length === 1) {\n return textNodeIfPrimitive(nodes[0]);\n }\n for (var\n fragment = createDocumentFragment(),\n list = slice.call(nodes),\n i = 0; i < nodes.length; i++\n ) {\n fragment.appendChild(textNodeIfPrimitive(list[i]));\n }\n return fragment;\n }\n\n function textNodeIfPrimitive(node) {\n return typeof node === 'object' ? node : document.createTextNode(node);\n }\n\n for(var\n head,\n property,\n TemporaryPrototype,\n TemporaryTokenList,\n wrapVerifyToken,\n document = window.document,\n hOP = Object.prototype.hasOwnProperty,\n defineProperty = Object.defineProperty || function (object, property, descriptor) {\n if (hOP.call(descriptor, 'value')) {\n object[property] = descriptor.value;\n } else {\n if (hOP.call(descriptor, 'get'))\n object.__defineGetter__(property, descriptor.get);\n if (hOP.call(descriptor, 'set'))\n object.__defineSetter__(property, descriptor.set);\n }\n return object;\n },\n indexOf = [].indexOf || function indexOf(value){\n var length = this.length;\n while(length--) {\n if (this[length] === value) {\n break;\n }\n }\n return length;\n },\n // http://www.w3.org/TR/domcore/#domtokenlist\n verifyToken = function (token) {\n if (!token) {\n throw 'SyntaxError';\n } else if (spaces.test(token)) {\n throw 'InvalidCharacterError';\n }\n return token;\n },\n DOMTokenList = function (node) {\n var\n noClassName = typeof node.className === 'undefined',\n className = noClassName ?\n (node.getAttribute('class') || '') : node.className,\n isSVG = noClassName || typeof className === 'object',\n value = (isSVG ?\n (noClassName ? className : className.baseVal) :\n className\n ).replace(trim, '')\n ;\n if (value.length) {\n properties.push.apply(\n this,\n value.split(spaces)\n );\n }\n this._isSVG = isSVG;\n this._ = node;\n },\n classListDescriptor = {\n get: function get() {\n return new DOMTokenList(this);\n },\n set: function(){}\n },\n trim = /^\\s+|\\s+$/g,\n spaces = /\\s+/,\n SPACE = '\\x20',\n CLASS_LIST = 'classList',\n toggle = function toggle(token, force) {\n if (this.contains(token)) {\n if (!force) {\n // force is not true (either false or omitted)\n this.remove(token);\n }\n } else if(force === undefined || force) {\n force = true;\n this.add(token);\n }\n return !!force;\n },\n DocumentFragmentPrototype = window.DocumentFragment && DocumentFragment.prototype,\n Node = window.Node,\n NodePrototype = (Node || Element).prototype,\n CharacterData = window.CharacterData || Node,\n CharacterDataPrototype = CharacterData && CharacterData.prototype,\n DocumentType = window.DocumentType,\n DocumentTypePrototype = DocumentType && DocumentType.prototype,\n ElementPrototype = (window.Element || Node || window.HTMLElement).prototype,\n HTMLSelectElement = window.HTMLSelectElement || createElement('select').constructor,\n selectRemove = HTMLSelectElement.prototype.remove,\n SVGElement = window.SVGElement,\n properties = [\n 'matches', (\n ElementPrototype.matchesSelector ||\n ElementPrototype.webkitMatchesSelector ||\n ElementPrototype.khtmlMatchesSelector ||\n ElementPrototype.mozMatchesSelector ||\n ElementPrototype.msMatchesSelector ||\n ElementPrototype.oMatchesSelector ||\n function matches(selector) {\n var parentNode = this.parentNode;\n return !!parentNode && -1 < indexOf.call(\n parentNode.querySelectorAll(selector),\n this\n );\n }\n ),\n 'closest', function closest(selector) {\n var parentNode = this, matches;\n while (\n // document has no .matches\n (matches = parentNode && parentNode.matches) &&\n !parentNode.matches(selector)\n ) {\n parentNode = parentNode.parentNode;\n }\n return matches ? parentNode : null;\n },\n 'prepend', function prepend() {\n var firstChild = this.firstChild,\n node = mutationMacro(arguments);\n if (firstChild) {\n this.insertBefore(node, firstChild);\n } else {\n this.appendChild(node);\n }\n },\n 'append', function append() {\n this.appendChild(mutationMacro(arguments));\n },\n 'before', function before() {\n var parentNode = this.parentNode;\n if (parentNode) {\n parentNode.insertBefore(\n mutationMacro(arguments), this\n );\n }\n },\n 'after', function after() {\n var parentNode = this.parentNode,\n nextSibling = this.nextSibling,\n node = mutationMacro(arguments);\n if (parentNode) {\n if (nextSibling) {\n parentNode.insertBefore(node, nextSibling);\n } else {\n parentNode.appendChild(node);\n }\n }\n },\n // https://dom.spec.whatwg.org/#dom-element-toggleattribute\n 'toggleAttribute', function toggleAttribute(name, force) {\n var had = this.hasAttribute(name);\n if (1 < arguments.length) {\n if (had && !force)\n this.removeAttribute(name);\n else if (force && !had)\n this.setAttribute(name, \"\");\n }\n else if (had)\n this.removeAttribute(name);\n else\n this.setAttribute(name, \"\");\n return this.hasAttribute(name);\n },\n // WARNING - DEPRECATED - use .replaceWith() instead\n 'replace', function replace() {\n this.replaceWith.apply(this, arguments);\n },\n 'replaceWith', function replaceWith() {\n var parentNode = this.parentNode;\n if (parentNode) {\n parentNode.replaceChild(\n mutationMacro(arguments),\n this\n );\n }\n },\n 'remove', function remove() {\n var parentNode = this.parentNode;\n if (parentNode) {\n parentNode.removeChild(this);\n }\n }\n ],\n slice = properties.slice,\n i = properties.length; i; i -= 2\n ) {\n property = properties[i - 2];\n if (!(property in ElementPrototype)) {\n ElementPrototype[property] = properties[i - 1];\n }\n // avoid unnecessary re-patch when the script is included\n // gazillion times without any reason whatsoever\n // https://github.com/WebReflection/dom4/pull/48\n if (property === 'remove' && !selectRemove._dom4) {\n // see https://github.com/WebReflection/dom4/issues/19\n (HTMLSelectElement.prototype[property] = function () {\n return 0 < arguments.length ?\n selectRemove.apply(this, arguments) :\n ElementPrototype.remove.call(this);\n })._dom4 = true;\n }\n // see https://github.com/WebReflection/dom4/issues/18\n if (/^(?:before|after|replace|replaceWith|remove)$/.test(property)) {\n if (CharacterData && !(property in CharacterDataPrototype)) {\n CharacterDataPrototype[property] = properties[i - 1];\n }\n if (DocumentType && !(property in DocumentTypePrototype)) {\n DocumentTypePrototype[property] = properties[i - 1];\n }\n }\n // see https://github.com/WebReflection/dom4/pull/26\n if (/^(?:append|prepend)$/.test(property)) {\n if (DocumentFragmentPrototype) {\n if (!(property in DocumentFragmentPrototype)) {\n DocumentFragmentPrototype[property] = properties[i - 1];\n }\n } else {\n try {\n createDocumentFragment().constructor.prototype[property] = properties[i - 1];\n } catch(o_O) {}\n }\n }\n }\n\n // most likely an IE9 only issue\n // see https://github.com/WebReflection/dom4/issues/6\n if (!createElement('a').matches('a')) {\n ElementPrototype[property] = function(matches){\n return function (selector) {\n return matches.call(\n this.parentNode ?\n this :\n createDocumentFragment().appendChild(this),\n selector\n );\n };\n }(ElementPrototype[property]);\n }\n\n // used to fix both old webkit and SVG\n DOMTokenList.prototype = {\n length: 0,\n add: function add() {\n for(var j = 0, token; j < arguments.length; j++) {\n token = arguments[j];\n if(!this.contains(token)) {\n properties.push.call(this, property);\n }\n }\n if (this._isSVG) {\n this._.setAttribute('class', '' + this);\n } else {\n this._.className = '' + this;\n }\n },\n contains: (function(indexOf){\n return function contains(token) {\n i = indexOf.call(this, property = verifyToken(token));\n return -1 < i;\n };\n }([].indexOf || function (token) {\n i = this.length;\n while(i-- && this[i] !== token){}\n return i;\n })),\n item: function item(i) {\n return this[i] || null;\n },\n remove: function remove() {\n for(var j = 0, token; j < arguments.length; j++) {\n token = arguments[j];\n if(this.contains(token)) {\n properties.splice.call(this, i, 1);\n }\n }\n if (this._isSVG) {\n this._.setAttribute('class', '' + this);\n } else {\n this._.className = '' + this;\n }\n },\n toggle: toggle,\n toString: function toString() {\n return properties.join.call(this, SPACE);\n }\n };\n\n if (SVGElement && !(CLASS_LIST in SVGElement.prototype)) {\n defineProperty(SVGElement.prototype, CLASS_LIST, classListDescriptor);\n }\n\n // http://www.w3.org/TR/dom/#domtokenlist\n // iOS 5.1 has completely screwed this property\n // classList in ElementPrototype is false\n // but it's actually there as getter\n if (!(CLASS_LIST in document.documentElement)) {\n defineProperty(ElementPrototype, CLASS_LIST, classListDescriptor);\n } else {\n // iOS 5.1 and Nokia ASHA do not support multiple add or remove\n // trying to detect and fix that in here\n TemporaryTokenList = createElement('div')[CLASS_LIST];\n TemporaryTokenList.add('a', 'b', 'a');\n if ('a\\x20b' != TemporaryTokenList) {\n // no other way to reach original methods in iOS 5.1\n TemporaryPrototype = TemporaryTokenList.constructor.prototype;\n if (!('add' in TemporaryPrototype)) {\n // ASHA double fails in here\n TemporaryPrototype = window.TemporaryTokenList.prototype;\n }\n wrapVerifyToken = function (original) {\n return function () {\n var i = 0;\n while (i < arguments.length) {\n original.call(this, arguments[i++]);\n }\n };\n };\n TemporaryPrototype.add = wrapVerifyToken(TemporaryPrototype.add);\n TemporaryPrototype.remove = wrapVerifyToken(TemporaryPrototype.remove);\n // toggle is broken too ^_^ ... let's fix it\n TemporaryPrototype.toggle = toggle;\n }\n }\n\n if (!('contains' in NodePrototype)) {\n defineProperty(NodePrototype, 'contains', {\n value: function (el) {\n while (el && el !== this) el = el.parentNode;\n return this === el;\n }\n });\n }\n\n if (!('head' in document)) {\n defineProperty(document, 'head', {\n get: function () {\n return head || (\n head = document.getElementsByTagName('head')[0]\n );\n }\n });\n }\n\n // requestAnimationFrame partial polyfill\n (function () {\n for (var\n raf,\n rAF = window.requestAnimationFrame,\n cAF = window.cancelAnimationFrame,\n prefixes = ['o', 'ms', 'moz', 'webkit'],\n i = prefixes.length;\n !cAF && i--;\n ) {\n rAF = rAF || window[prefixes[i] + 'RequestAnimationFrame'];\n cAF = window[prefixes[i] + 'CancelAnimationFrame'] ||\n window[prefixes[i] + 'CancelRequestAnimationFrame'];\n }\n if (!cAF) {\n // some FF apparently implemented rAF but no cAF \n if (rAF) {\n raf = rAF;\n rAF = function (callback) {\n var goOn = true;\n raf(function () {\n if (goOn) callback.apply(this, arguments);\n });\n return function () {\n goOn = false;\n };\n };\n cAF = function (id) {\n id();\n };\n } else {\n rAF = function (callback) {\n return setTimeout(callback, 15, 15);\n };\n cAF = function (id) {\n clearTimeout(id);\n };\n }\n }\n window.requestAnimationFrame = rAF;\n window.cancelAnimationFrame = cAF;\n }());\n\n // http://www.w3.org/TR/dom/#customevent\n try{new window.CustomEvent('?');}catch(o_O){\n window.CustomEvent = function(\n eventName,\n defaultInitDict\n ){\n\n // the infamous substitute\n function CustomEvent(type, eventInitDict) {\n /*jshint eqnull:true */\n var event = document.createEvent(eventName);\n if (typeof type != 'string') {\n throw new Error('An event name must be provided');\n }\n if (eventName == 'Event') {\n event.initCustomEvent = initCustomEvent;\n }\n if (eventInitDict == null) {\n eventInitDict = defaultInitDict;\n }\n event.initCustomEvent(\n type,\n eventInitDict.bubbles,\n eventInitDict.cancelable,\n eventInitDict.detail\n );\n return event;\n }\n\n // attached at runtime\n function initCustomEvent(\n type, bubbles, cancelable, detail\n ) {\n /*jshint validthis:true*/\n this.initEvent(type, bubbles, cancelable);\n this.detail = detail;\n }\n\n // that's it\n return CustomEvent;\n }(\n // is this IE9 or IE10 ?\n // where CustomEvent is there\n // but not usable as construtor ?\n window.CustomEvent ?\n // use the CustomEvent interface in such case\n 'CustomEvent' : 'Event',\n // otherwise the common compatible one\n {\n bubbles: false,\n cancelable: false,\n detail: null\n }\n );\n }\n\n // window.Event as constructor\n try { new Event('_'); } catch (o_O) {\n /* jshint -W022 */\n o_O = (function ($Event) {\n function Event(type, init) {\n enoughArguments(arguments.length, 'Event');\n var out = document.createEvent('Event');\n if (!init) init = {};\n out.initEvent(\n type,\n !!init.bubbles,\n !!init.cancelable\n );\n return out;\n }\n Event.prototype = $Event.prototype;\n return Event;\n }(window.Event || function Event() {}));\n defineProperty(window, 'Event', {value: o_O});\n // Android 4 gotcha\n if (Event !== o_O) Event = o_O;\n }\n\n // window.KeyboardEvent as constructor\n try { new KeyboardEvent('_', {}); } catch (o_O) {\n /* jshint -W022 */\n o_O = (function ($KeyboardEvent) {\n // code inspired by https://gist.github.com/termi/4654819\n var\n initType = 0,\n defaults = {\n char: '',\n key: '',\n location: 0,\n ctrlKey: false,\n shiftKey: false,\n altKey: false,\n metaKey: false,\n altGraphKey: false,\n repeat: false,\n locale: navigator.language,\n detail: 0,\n bubbles: false,\n cancelable: false,\n keyCode: 0,\n charCode: 0,\n which: 0\n },\n eventType\n ;\n try {\n var e = document.createEvent('KeyboardEvent');\n e.initKeyboardEvent(\n 'keyup', false, false, window, '+', 3,\n true, false, true, false, false\n );\n initType = (\n (e.keyIdentifier || e.key) == '+' &&\n (e.keyLocation || e.location) == 3\n ) && (\n e.ctrlKey ? e.altKey ? 1 : 3 : e.shiftKey ? 2 : 4\n ) || 9;\n } catch(o_O) {}\n eventType = 0 < initType ? 'KeyboardEvent' : 'Event';\n\n function getModifier(init) {\n for (var\n out = [],\n keys = [\n 'ctrlKey',\n 'Control',\n 'shiftKey',\n 'Shift',\n 'altKey',\n 'Alt',\n 'metaKey',\n 'Meta',\n 'altGraphKey',\n 'AltGraph'\n ],\n i = 0; i < keys.length; i += 2\n ) {\n if (init[keys[i]])\n out.push(keys[i + 1]);\n }\n return out.join(' ');\n }\n\n function withDefaults(target, source) {\n for (var key in source) {\n if (\n source.hasOwnProperty(key) &&\n !source.hasOwnProperty.call(target, key)\n ) target[key] = source[key];\n }\n return target;\n }\n\n function withInitValues(key, out, init) {\n try {\n out[key] = init[key];\n } catch(o_O) {}\n }\n\n function KeyboardEvent(type, init) {\n enoughArguments(arguments.length, 'KeyboardEvent');\n init = withDefaults(init || {}, defaults);\n var\n out = document.createEvent(eventType),\n ctrlKey = init.ctrlKey,\n shiftKey = init.shiftKey,\n altKey = init.altKey,\n metaKey = init.metaKey,\n altGraphKey = init.altGraphKey,\n modifiers = initType > 3 ? getModifier(init) : null,\n key = String(init.key),\n chr = String(init.char),\n location = init.location,\n keyCode = init.keyCode || (\n (init.keyCode = key) &&\n key.charCodeAt(0)\n ) || 0,\n charCode = init.charCode || (\n (init.charCode = chr) &&\n chr.charCodeAt(0)\n ) || 0,\n bubbles = init.bubbles,\n cancelable = init.cancelable,\n repeat = init.repeat,\n locale = init.locale,\n view = init.view || window,\n args\n ;\n if (!init.which) init.which = init.keyCode;\n if ('initKeyEvent' in out) {\n out.initKeyEvent(\n type, bubbles, cancelable, view,\n ctrlKey, altKey, shiftKey, metaKey, keyCode, charCode\n );\n } else if (0 < initType && 'initKeyboardEvent' in out) {\n args = [type, bubbles, cancelable, view];\n switch (initType) {\n case 1:\n args.push(key, location, ctrlKey, shiftKey, altKey, metaKey, altGraphKey);\n break;\n case 2:\n args.push(ctrlKey, altKey, shiftKey, metaKey, keyCode, charCode);\n break;\n case 3:\n args.push(key, location, ctrlKey, altKey, shiftKey, metaKey, altGraphKey);\n break;\n case 4:\n args.push(key, location, modifiers, repeat, locale);\n break;\n default:\n args.push(char, key, location, modifiers, repeat, locale);\n }\n out.initKeyboardEvent.apply(out, args);\n } else {\n out.initEvent(type, bubbles, cancelable);\n }\n for (key in out) {\n if (defaults.hasOwnProperty(key) && out[key] !== init[key]) {\n withInitValues(key, out, init);\n }\n }\n return out;\n }\n KeyboardEvent.prototype = $KeyboardEvent.prototype;\n return KeyboardEvent;\n }(window.KeyboardEvent || function KeyboardEvent() {}));\n defineProperty(window, 'KeyboardEvent', {value: o_O});\n // Android 4 gotcha\n if (KeyboardEvent !== o_O) KeyboardEvent = o_O;\n }\n\n // window.MouseEvent as constructor\n try { new MouseEvent('_', {}); } catch (o_O) {\n /* jshint -W022 */\n o_O = (function ($MouseEvent) {\n function MouseEvent(type, init) {\n enoughArguments(arguments.length, 'MouseEvent');\n var out = document.createEvent('MouseEvent');\n if (!init) init = {};\n out.initMouseEvent(\n type,\n !!init.bubbles,\n !!init.cancelable,\n init.view || window,\n init.detail || 1,\n init.screenX || 0,\n init.screenY || 0,\n init.clientX || 0,\n init.clientY || 0,\n !!init.ctrlKey,\n !!init.altKey,\n !!init.shiftKey,\n !!init.metaKey,\n init.button || 0,\n init.relatedTarget || null\n );\n return out;\n }\n MouseEvent.prototype = $MouseEvent.prototype;\n return MouseEvent;\n }(window.MouseEvent || function MouseEvent() {}));\n defineProperty(window, 'MouseEvent', {value: o_O});\n // Android 4 gotcha\n if (MouseEvent !== o_O) MouseEvent = o_O;\n }\n\n if (!document.querySelectorAll('*').forEach) {\n (function () {\n function patch(what) {\n var querySelectorAll = what.querySelectorAll;\n what.querySelectorAll = function qSA(css) {\n var result = querySelectorAll.call(this, css);\n result.forEach = Array.prototype.forEach;\n return result;\n };\n }\n patch(document);\n patch(Element.prototype);\n }());\n }\n\n try {\n // https://drafts.csswg.org/selectors-4/#the-scope-pseudo\n document.querySelector(':scope *');\n } catch(o_O) {\n (function () {\n var dataScope = 'data-scope-' + (Math.random() * 1e9 >>> 0);\n var proto = Element.prototype;\n var querySelector = proto.querySelector;\n var querySelectorAll = proto.querySelectorAll;\n proto.querySelector = function qS(css) {\n return find(this, querySelector, css);\n };\n proto.querySelectorAll = function qSA(css) {\n return find(this, querySelectorAll, css);\n };\n function find(node, method, css) {\n if (node.type != document.ELEMENT_NODE) return method.call(node, css);\n node.setAttribute(dataScope, null);\n var result = method.call(\n node,\n String(css).replace(\n /(^|,\\s*)(:scope([ >]|$))/g,\n function ($0, $1, $2, $3) {\n return $1 + '[' + dataScope + ']' + ($3 || ' ');\n }\n )\n );\n node.removeAttribute(dataScope);\n return result;\n }\n }());\n }\n}(window));\n(function (global){'use strict';\n\n // a WeakMap fallback for DOM nodes only used as key\n var DOMMap = global.WeakMap || (function () {\n\n var\n counter = 0,\n dispatched = false,\n drop = false,\n value\n ;\n\n function dispatch(key, ce, shouldDrop) {\n drop = shouldDrop;\n dispatched = false;\n value = undefined;\n key.dispatchEvent(ce);\n }\n\n function Handler(value) {\n this.value = value;\n }\n\n Handler.prototype.handleEvent = function handleEvent(e) {\n dispatched = true;\n if (drop) {\n e.currentTarget.removeEventListener(e.type, this, false);\n } else {\n value = this.value;\n }\n };\n\n function DOMMap() {\n counter++; // make id clashing highly improbable\n this.__ce__ = new Event(('@DOMMap:' + counter) + Math.random());\n }\n\n DOMMap.prototype = {\n 'constructor': DOMMap,\n 'delete': function del(key) {\n return dispatch(key, this.__ce__, true), dispatched;\n },\n 'get': function get(key) {\n dispatch(key, this.__ce__, false);\n var v = value;\n value = undefined;\n return v;\n },\n 'has': function has(key) {\n return dispatch(key, this.__ce__, false), dispatched;\n },\n 'set': function set(key, value) {\n dispatch(key, this.__ce__, true);\n key.addEventListener(this.__ce__.type, new Handler(value), false);\n return this;\n },\n };\n\n return DOMMap;\n\n }());\n\n function Dict() {}\n Dict.prototype = (Object.create || Object)(null);\n\n // https://dom.spec.whatwg.org/#interface-eventtarget\n\n function createEventListener(type, callback, options) {\n function eventListener(e) {\n if (eventListener.once) {\n e.currentTarget.removeEventListener(\n e.type,\n callback,\n eventListener\n );\n eventListener.removed = true;\n }\n if (eventListener.passive) {\n e.preventDefault = createEventListener.preventDefault;\n }\n if (typeof eventListener.callback === 'function') {\n /* jshint validthis: true */\n eventListener.callback.call(this, e);\n } else if (eventListener.callback) {\n eventListener.callback.handleEvent(e);\n }\n if (eventListener.passive) {\n delete e.preventDefault;\n }\n }\n eventListener.type = type;\n eventListener.callback = callback;\n eventListener.capture = !!options.capture;\n eventListener.passive = !!options.passive;\n eventListener.once = !!options.once;\n // currently pointless but specs say to use it, so ...\n eventListener.removed = false;\n return eventListener;\n }\n\n createEventListener.preventDefault = function preventDefault() {};\n\n var\n Event = global.CustomEvent,\n dE = global.dispatchEvent,\n aEL = global.addEventListener,\n rEL = global.removeEventListener,\n counter = 0,\n increment = function () { counter++; },\n indexOf = [].indexOf || function indexOf(value){\n var length = this.length;\n while(length--) {\n if (this[length] === value) {\n break;\n }\n }\n return length;\n },\n getListenerKey = function (options) {\n return ''.concat(\n options.capture ? '1' : '0',\n options.passive ? '1' : '0',\n options.once ? '1' : '0'\n );\n },\n augment\n ;\n\n try {\n aEL('_', increment, {once: true});\n dE(new Event('_'));\n dE(new Event('_'));\n rEL('_', increment, {once: true});\n } catch(o_O) {}\n\n if (counter !== 1) {\n (function () {\n var dm = new DOMMap();\n function createAEL(aEL) {\n return function addEventListener(type, handler, options) {\n if (options && typeof options !== 'boolean') {\n var\n info = dm.get(this),\n key = getListenerKey(options),\n i, tmp, wrap\n ;\n if (!info) dm.set(this, (info = new Dict()));\n if (!(type in info)) info[type] = {\n handler: [],\n wrap: []\n };\n tmp = info[type];\n i = indexOf.call(tmp.handler, handler);\n if (i < 0) {\n i = tmp.handler.push(handler) - 1;\n tmp.wrap[i] = (wrap = new Dict());\n } else {\n wrap = tmp.wrap[i];\n }\n if (!(key in wrap)) {\n wrap[key] = createEventListener(type, handler, options);\n aEL.call(this, type, wrap[key], wrap[key].capture);\n }\n } else {\n aEL.call(this, type, handler, options);\n }\n };\n }\n function createREL(rEL) {\n return function removeEventListener(type, handler, options) {\n if (options && typeof options !== 'boolean') {\n var\n info = dm.get(this),\n key, i, tmp, wrap\n ;\n if (info && (type in info)) {\n tmp = info[type];\n i = indexOf.call(tmp.handler, handler);\n if (-1 < i) {\n key = getListenerKey(options);\n wrap = tmp.wrap[i];\n if (key in wrap) {\n rEL.call(this, type, wrap[key], wrap[key].capture);\n delete wrap[key];\n // return if there are other wraps\n for (key in wrap) return;\n // otherwise remove all the things\n tmp.handler.splice(i, 1);\n tmp.wrap.splice(i, 1);\n // if there are no other handlers\n if (tmp.handler.length === 0)\n // drop the info[type] entirely\n delete info[type];\n }\n }\n }\n } else {\n rEL.call(this, type, handler, options);\n }\n };\n }\n\n augment = function (Constructor) {\n if (!Constructor) return;\n var proto = Constructor.prototype;\n proto.addEventListener = createAEL(proto.addEventListener);\n proto.removeEventListener = createREL(proto.removeEventListener);\n };\n\n if (global.EventTarget) {\n augment(EventTarget);\n } else {\n augment(global.Text);\n augment(global.Element || global.HTMLElement);\n augment(global.HTMLDocument);\n augment(global.Window || {prototype:global});\n augment(global.XMLHttpRequest);\n }\n\n }());\n }\n\n}(self));\n","'use strict';\n\n/* eslint no-invalid-this: 1 */\n\nvar ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';\nvar slice = Array.prototype.slice;\nvar toStr = Object.prototype.toString;\nvar funcType = '[object Function]';\n\nmodule.exports = function bind(that) {\n var target = this;\n if (typeof target !== 'function' || toStr.call(target) !== funcType) {\n throw new TypeError(ERROR_MESSAGE + target);\n }\n var args = slice.call(arguments, 1);\n\n var bound;\n var binder = function () {\n if (this instanceof bound) {\n var result = target.apply(\n this,\n args.concat(slice.call(arguments))\n );\n if (Object(result) === result) {\n return result;\n }\n return this;\n } else {\n return target.apply(\n that,\n args.concat(slice.call(arguments))\n );\n }\n };\n\n var boundLength = Math.max(0, target.length - args.length);\n var boundArgs = [];\n for (var i = 0; i < boundLength; i++) {\n boundArgs.push('$' + i);\n }\n\n bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this,arguments); }')(binder);\n\n if (target.prototype) {\n var Empty = function Empty() {};\n Empty.prototype = target.prototype;\n bound.prototype = new Empty();\n Empty.prototype = null;\n }\n\n return bound;\n};\n","'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = Function.prototype.bind || implementation;\n","'use strict';\n\nvar undefined;\n\nvar $SyntaxError = SyntaxError;\nvar $Function = Function;\nvar $TypeError = TypeError;\n\n// eslint-disable-next-line consistent-return\nvar getEvalledConstructor = function (expressionSyntax) {\n\ttry {\n\t\treturn $Function('\"use strict\"; return (' + expressionSyntax + ').constructor;')();\n\t} catch (e) {}\n};\n\nvar $gOPD = Object.getOwnPropertyDescriptor;\nif ($gOPD) {\n\ttry {\n\t\t$gOPD({}, '');\n\t} catch (e) {\n\t\t$gOPD = null; // this is IE 8, which has a broken gOPD\n\t}\n}\n\nvar throwTypeError = function () {\n\tthrow new $TypeError();\n};\nvar ThrowTypeError = $gOPD\n\t? (function () {\n\t\ttry {\n\t\t\t// eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties\n\t\t\targuments.callee; // IE 8 does not throw here\n\t\t\treturn throwTypeError;\n\t\t} catch (calleeThrows) {\n\t\t\ttry {\n\t\t\t\t// IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '')\n\t\t\t\treturn $gOPD(arguments, 'callee').get;\n\t\t\t} catch (gOPDthrows) {\n\t\t\t\treturn throwTypeError;\n\t\t\t}\n\t\t}\n\t}())\n\t: throwTypeError;\n\nvar hasSymbols = require('has-symbols')();\n\nvar getProto = Object.getPrototypeOf || function (x) { return x.__proto__; }; // eslint-disable-line no-proto\n\nvar needsEval = {};\n\nvar TypedArray = typeof Uint8Array === 'undefined' ? undefined : getProto(Uint8Array);\n\nvar INTRINSICS = {\n\t'%AggregateError%': typeof AggregateError === 'undefined' ? undefined : AggregateError,\n\t'%Array%': Array,\n\t'%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer,\n\t'%ArrayIteratorPrototype%': hasSymbols ? getProto([][Symbol.iterator]()) : undefined,\n\t'%AsyncFromSyncIteratorPrototype%': undefined,\n\t'%AsyncFunction%': needsEval,\n\t'%AsyncGenerator%': needsEval,\n\t'%AsyncGeneratorFunction%': needsEval,\n\t'%AsyncIteratorPrototype%': needsEval,\n\t'%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,\n\t'%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt,\n\t'%Boolean%': Boolean,\n\t'%DataView%': typeof DataView === 'undefined' ? undefined : DataView,\n\t'%Date%': Date,\n\t'%decodeURI%': decodeURI,\n\t'%decodeURIComponent%': decodeURIComponent,\n\t'%encodeURI%': encodeURI,\n\t'%encodeURIComponent%': encodeURIComponent,\n\t'%Error%': Error,\n\t'%eval%': eval, // eslint-disable-line no-eval\n\t'%EvalError%': EvalError,\n\t'%Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array,\n\t'%Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array,\n\t'%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined : FinalizationRegistry,\n\t'%Function%': $Function,\n\t'%GeneratorFunction%': needsEval,\n\t'%Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array,\n\t'%Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array,\n\t'%Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array,\n\t'%isFinite%': isFinite,\n\t'%isNaN%': isNaN,\n\t'%IteratorPrototype%': hasSymbols ? getProto(getProto([][Symbol.iterator]())) : undefined,\n\t'%JSON%': typeof JSON === 'object' ? JSON : undefined,\n\t'%Map%': typeof Map === 'undefined' ? undefined : Map,\n\t'%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols ? undefined : getProto(new Map()[Symbol.iterator]()),\n\t'%Math%': Math,\n\t'%Number%': Number,\n\t'%Object%': Object,\n\t'%parseFloat%': parseFloat,\n\t'%parseInt%': parseInt,\n\t'%Promise%': typeof Promise === 'undefined' ? undefined : Promise,\n\t'%Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy,\n\t'%RangeError%': RangeError,\n\t'%ReferenceError%': ReferenceError,\n\t'%Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect,\n\t'%RegExp%': RegExp,\n\t'%Set%': typeof Set === 'undefined' ? undefined : Set,\n\t'%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols ? undefined : getProto(new Set()[Symbol.iterator]()),\n\t'%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer,\n\t'%String%': String,\n\t'%StringIteratorPrototype%': hasSymbols ? getProto(''[Symbol.iterator]()) : undefined,\n\t'%Symbol%': hasSymbols ? Symbol : undefined,\n\t'%SyntaxError%': $SyntaxError,\n\t'%ThrowTypeError%': ThrowTypeError,\n\t'%TypedArray%': TypedArray,\n\t'%TypeError%': $TypeError,\n\t'%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array,\n\t'%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray,\n\t'%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array,\n\t'%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array,\n\t'%URIError%': URIError,\n\t'%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap,\n\t'%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef,\n\t'%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet\n};\n\nvar doEval = function doEval(name) {\n\tvar value;\n\tif (name === '%AsyncFunction%') {\n\t\tvalue = getEvalledConstructor('async function () {}');\n\t} else if (name === '%GeneratorFunction%') {\n\t\tvalue = getEvalledConstructor('function* () {}');\n\t} else if (name === '%AsyncGeneratorFunction%') {\n\t\tvalue = getEvalledConstructor('async function* () {}');\n\t} else if (name === '%AsyncGenerator%') {\n\t\tvar fn = doEval('%AsyncGeneratorFunction%');\n\t\tif (fn) {\n\t\t\tvalue = fn.prototype;\n\t\t}\n\t} else if (name === '%AsyncIteratorPrototype%') {\n\t\tvar gen = doEval('%AsyncGenerator%');\n\t\tif (gen) {\n\t\t\tvalue = getProto(gen.prototype);\n\t\t}\n\t}\n\n\tINTRINSICS[name] = value;\n\n\treturn value;\n};\n\nvar LEGACY_ALIASES = {\n\t'%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'],\n\t'%ArrayPrototype%': ['Array', 'prototype'],\n\t'%ArrayProto_entries%': ['Array', 'prototype', 'entries'],\n\t'%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'],\n\t'%ArrayProto_keys%': ['Array', 'prototype', 'keys'],\n\t'%ArrayProto_values%': ['Array', 'prototype', 'values'],\n\t'%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'],\n\t'%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'],\n\t'%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'],\n\t'%BooleanPrototype%': ['Boolean', 'prototype'],\n\t'%DataViewPrototype%': ['DataView', 'prototype'],\n\t'%DatePrototype%': ['Date', 'prototype'],\n\t'%ErrorPrototype%': ['Error', 'prototype'],\n\t'%EvalErrorPrototype%': ['EvalError', 'prototype'],\n\t'%Float32ArrayPrototype%': ['Float32Array', 'prototype'],\n\t'%Float64ArrayPrototype%': ['Float64Array', 'prototype'],\n\t'%FunctionPrototype%': ['Function', 'prototype'],\n\t'%Generator%': ['GeneratorFunction', 'prototype'],\n\t'%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'],\n\t'%Int8ArrayPrototype%': ['Int8Array', 'prototype'],\n\t'%Int16ArrayPrototype%': ['Int16Array', 'prototype'],\n\t'%Int32ArrayPrototype%': ['Int32Array', 'prototype'],\n\t'%JSONParse%': ['JSON', 'parse'],\n\t'%JSONStringify%': ['JSON', 'stringify'],\n\t'%MapPrototype%': ['Map', 'prototype'],\n\t'%NumberPrototype%': ['Number', 'prototype'],\n\t'%ObjectPrototype%': ['Object', 'prototype'],\n\t'%ObjProto_toString%': ['Object', 'prototype', 'toString'],\n\t'%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'],\n\t'%PromisePrototype%': ['Promise', 'prototype'],\n\t'%PromiseProto_then%': ['Promise', 'prototype', 'then'],\n\t'%Promise_all%': ['Promise', 'all'],\n\t'%Promise_reject%': ['Promise', 'reject'],\n\t'%Promise_resolve%': ['Promise', 'resolve'],\n\t'%RangeErrorPrototype%': ['RangeError', 'prototype'],\n\t'%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'],\n\t'%RegExpPrototype%': ['RegExp', 'prototype'],\n\t'%SetPrototype%': ['Set', 'prototype'],\n\t'%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'],\n\t'%StringPrototype%': ['String', 'prototype'],\n\t'%SymbolPrototype%': ['Symbol', 'prototype'],\n\t'%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'],\n\t'%TypedArrayPrototype%': ['TypedArray', 'prototype'],\n\t'%TypeErrorPrototype%': ['TypeError', 'prototype'],\n\t'%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'],\n\t'%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'],\n\t'%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'],\n\t'%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'],\n\t'%URIErrorPrototype%': ['URIError', 'prototype'],\n\t'%WeakMapPrototype%': ['WeakMap', 'prototype'],\n\t'%WeakSetPrototype%': ['WeakSet', 'prototype']\n};\n\nvar bind = require('function-bind');\nvar hasOwn = require('has');\nvar $concat = bind.call(Function.call, Array.prototype.concat);\nvar $spliceApply = bind.call(Function.apply, Array.prototype.splice);\nvar $replace = bind.call(Function.call, String.prototype.replace);\nvar $strSlice = bind.call(Function.call, String.prototype.slice);\n\n/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */\nvar rePropName = /[^%.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|%$))/g;\nvar reEscapeChar = /\\\\(\\\\)?/g; /** Used to match backslashes in property paths. */\nvar stringToPath = function stringToPath(string) {\n\tvar first = $strSlice(string, 0, 1);\n\tvar last = $strSlice(string, -1);\n\tif (first === '%' && last !== '%') {\n\t\tthrow new $SyntaxError('invalid intrinsic syntax, expected closing `%`');\n\t} else if (last === '%' && first !== '%') {\n\t\tthrow new $SyntaxError('invalid intrinsic syntax, expected opening `%`');\n\t}\n\tvar result = [];\n\t$replace(string, rePropName, function (match, number, quote, subString) {\n\t\tresult[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match;\n\t});\n\treturn result;\n};\n/* end adaptation */\n\nvar getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) {\n\tvar intrinsicName = name;\n\tvar alias;\n\tif (hasOwn(LEGACY_ALIASES, intrinsicName)) {\n\t\talias = LEGACY_ALIASES[intrinsicName];\n\t\tintrinsicName = '%' + alias[0] + '%';\n\t}\n\n\tif (hasOwn(INTRINSICS, intrinsicName)) {\n\t\tvar value = INTRINSICS[intrinsicName];\n\t\tif (value === needsEval) {\n\t\t\tvalue = doEval(intrinsicName);\n\t\t}\n\t\tif (typeof value === 'undefined' && !allowMissing) {\n\t\t\tthrow new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');\n\t\t}\n\n\t\treturn {\n\t\t\talias: alias,\n\t\t\tname: intrinsicName,\n\t\t\tvalue: value\n\t\t};\n\t}\n\n\tthrow new $SyntaxError('intrinsic ' + name + ' does not exist!');\n};\n\nmodule.exports = function GetIntrinsic(name, allowMissing) {\n\tif (typeof name !== 'string' || name.length === 0) {\n\t\tthrow new $TypeError('intrinsic name must be a non-empty string');\n\t}\n\tif (arguments.length > 1 && typeof allowMissing !== 'boolean') {\n\t\tthrow new $TypeError('\"allowMissing\" argument must be a boolean');\n\t}\n\n\tvar parts = stringToPath(name);\n\tvar intrinsicBaseName = parts.length > 0 ? parts[0] : '';\n\n\tvar intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing);\n\tvar intrinsicRealName = intrinsic.name;\n\tvar value = intrinsic.value;\n\tvar skipFurtherCaching = false;\n\n\tvar alias = intrinsic.alias;\n\tif (alias) {\n\t\tintrinsicBaseName = alias[0];\n\t\t$spliceApply(parts, $concat([0, 1], alias));\n\t}\n\n\tfor (var i = 1, isOwn = true; i < parts.length; i += 1) {\n\t\tvar part = parts[i];\n\t\tvar first = $strSlice(part, 0, 1);\n\t\tvar last = $strSlice(part, -1);\n\t\tif (\n\t\t\t(\n\t\t\t\t(first === '\"' || first === \"'\" || first === '`')\n\t\t\t\t|| (last === '\"' || last === \"'\" || last === '`')\n\t\t\t)\n\t\t\t&& first !== last\n\t\t) {\n\t\t\tthrow new $SyntaxError('property names with quotes must have matching quotes');\n\t\t}\n\t\tif (part === 'constructor' || !isOwn) {\n\t\t\tskipFurtherCaching = true;\n\t\t}\n\n\t\tintrinsicBaseName += '.' + part;\n\t\tintrinsicRealName = '%' + intrinsicBaseName + '%';\n\n\t\tif (hasOwn(INTRINSICS, intrinsicRealName)) {\n\t\t\tvalue = INTRINSICS[intrinsicRealName];\n\t\t} else if (value != null) {\n\t\t\tif (!(part in value)) {\n\t\t\t\tif (!allowMissing) {\n\t\t\t\t\tthrow new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.');\n\t\t\t\t}\n\t\t\t\treturn void undefined;\n\t\t\t}\n\t\t\tif ($gOPD && (i + 1) >= parts.length) {\n\t\t\t\tvar desc = $gOPD(value, part);\n\t\t\t\tisOwn = !!desc;\n\n\t\t\t\t// By convention, when a data property is converted to an accessor\n\t\t\t\t// property to emulate a data property that does not suffer from\n\t\t\t\t// the override mistake, that accessor's getter is marked with\n\t\t\t\t// an `originalValue` property. Here, when we detect this, we\n\t\t\t\t// uphold the illusion by pretending to see that original data\n\t\t\t\t// property, i.e., returning the value rather than the getter\n\t\t\t\t// itself.\n\t\t\t\tif (isOwn && 'get' in desc && !('originalValue' in desc.get)) {\n\t\t\t\t\tvalue = desc.get;\n\t\t\t\t} else {\n\t\t\t\t\tvalue = value[part];\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tisOwn = hasOwn(value, part);\n\t\t\t\tvalue = value[part];\n\t\t\t}\n\n\t\t\tif (isOwn && !skipFurtherCaching) {\n\t\t\t\tINTRINSICS[intrinsicRealName] = value;\n\t\t\t}\n\t\t}\n\t}\n\treturn value;\n};\n","// @flow\n'use strict';\n\nvar key = '__global_unique_id__';\n\nmodule.exports = function() {\n return global[key] = (global[key] || 0) + 1;\n};\n","'use strict';\n\nvar origSymbol = typeof Symbol !== 'undefined' && Symbol;\nvar hasSymbolSham = require('./shams');\n\nmodule.exports = function hasNativeSymbols() {\n\tif (typeof origSymbol !== 'function') { return false; }\n\tif (typeof Symbol !== 'function') { return false; }\n\tif (typeof origSymbol('foo') !== 'symbol') { return false; }\n\tif (typeof Symbol('bar') !== 'symbol') { return false; }\n\n\treturn hasSymbolSham();\n};\n","'use strict';\n\n/* eslint complexity: [2, 18], max-statements: [2, 33] */\nmodule.exports = function hasSymbols() {\n\tif (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; }\n\tif (typeof Symbol.iterator === 'symbol') { return true; }\n\n\tvar obj = {};\n\tvar sym = Symbol('test');\n\tvar symObj = Object(sym);\n\tif (typeof sym === 'string') { return false; }\n\n\tif (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; }\n\tif (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; }\n\n\t// temp disabled per https://github.com/ljharb/object.assign/issues/17\n\t// if (sym instanceof Symbol) { return false; }\n\t// temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4\n\t// if (!(symObj instanceof Symbol)) { return false; }\n\n\t// if (typeof Symbol.prototype.toString !== 'function') { return false; }\n\t// if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; }\n\n\tvar symVal = 42;\n\tobj[sym] = symVal;\n\tfor (sym in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop\n\tif (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; }\n\n\tif (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; }\n\n\tvar syms = Object.getOwnPropertySymbols(obj);\n\tif (syms.length !== 1 || syms[0] !== sym) { return false; }\n\n\tif (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }\n\n\tif (typeof Object.getOwnPropertyDescriptor === 'function') {\n\t\tvar descriptor = Object.getOwnPropertyDescriptor(obj, sym);\n\t\tif (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; }\n\t}\n\n\treturn true;\n};\n","'use strict';\n\nvar hasSymbols = require('has-symbols/shams');\n\nmodule.exports = function hasToStringTagShams() {\n\treturn hasSymbols() && !!Symbol.toStringTag;\n};\n","'use strict';\n\nvar bind = require('function-bind');\n\nmodule.exports = bind.call(Function.call, Object.prototype.hasOwnProperty);\n","'use strict';\n\nvar reactIs = require('react-is');\n\n/**\n * Copyright 2015, Yahoo! Inc.\n * Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.\n */\nvar REACT_STATICS = {\n childContextTypes: true,\n contextType: true,\n contextTypes: true,\n defaultProps: true,\n displayName: true,\n getDefaultProps: true,\n getDerivedStateFromError: true,\n getDerivedStateFromProps: true,\n mixins: true,\n propTypes: true,\n type: true\n};\nvar KNOWN_STATICS = {\n name: true,\n length: true,\n prototype: true,\n caller: true,\n callee: true,\n arguments: true,\n arity: true\n};\nvar FORWARD_REF_STATICS = {\n '$$typeof': true,\n render: true,\n defaultProps: true,\n displayName: true,\n propTypes: true\n};\nvar MEMO_STATICS = {\n '$$typeof': true,\n compare: true,\n defaultProps: true,\n displayName: true,\n propTypes: true,\n type: true\n};\nvar TYPE_STATICS = {};\nTYPE_STATICS[reactIs.ForwardRef] = FORWARD_REF_STATICS;\nTYPE_STATICS[reactIs.Memo] = MEMO_STATICS;\n\nfunction getStatics(component) {\n // React v16.11 and below\n if (reactIs.isMemo(component)) {\n return MEMO_STATICS;\n } // React v16.12 and above\n\n\n return TYPE_STATICS[component['$$typeof']] || REACT_STATICS;\n}\n\nvar defineProperty = Object.defineProperty;\nvar getOwnPropertyNames = Object.getOwnPropertyNames;\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\nvar getPrototypeOf = Object.getPrototypeOf;\nvar objectPrototype = Object.prototype;\nfunction hoistNonReactStatics(targetComponent, sourceComponent, blacklist) {\n if (typeof sourceComponent !== 'string') {\n // don't hoist over string (html) components\n if (objectPrototype) {\n var inheritedComponent = getPrototypeOf(sourceComponent);\n\n if (inheritedComponent && inheritedComponent !== objectPrototype) {\n hoistNonReactStatics(targetComponent, inheritedComponent, blacklist);\n }\n }\n\n var keys = getOwnPropertyNames(sourceComponent);\n\n if (getOwnPropertySymbols) {\n keys = keys.concat(getOwnPropertySymbols(sourceComponent));\n }\n\n var targetStatics = getStatics(targetComponent);\n var sourceStatics = getStatics(sourceComponent);\n\n for (var i = 0; i < keys.length; ++i) {\n var key = keys[i];\n\n if (!KNOWN_STATICS[key] && !(blacklist && blacklist[key]) && !(sourceStatics && sourceStatics[key]) && !(targetStatics && targetStatics[key])) {\n var descriptor = getOwnPropertyDescriptor(sourceComponent, key);\n\n try {\n // Avoid failures from read-only properties\n defineProperty(targetComponent, key, descriptor);\n } catch (e) {}\n }\n }\n }\n\n return targetComponent;\n}\n\nmodule.exports = hoistNonReactStatics;\n","/** @license React v16.13.1\n * react-is.production.min.js\n *\n * Copyright (c) Meta Platforms and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';var b=\"function\"===typeof Symbol&&Symbol.for,c=b?Symbol.for(\"react.element\"):60103,d=b?Symbol.for(\"react.portal\"):60106,e=b?Symbol.for(\"react.fragment\"):60107,f=b?Symbol.for(\"react.strict_mode\"):60108,g=b?Symbol.for(\"react.profiler\"):60114,h=b?Symbol.for(\"react.provider\"):60109,k=b?Symbol.for(\"react.context\"):60110,l=b?Symbol.for(\"react.async_mode\"):60111,m=b?Symbol.for(\"react.concurrent_mode\"):60111,n=b?Symbol.for(\"react.forward_ref\"):60112,p=b?Symbol.for(\"react.suspense\"):60113,q=b?\nSymbol.for(\"react.suspense_list\"):60120,r=b?Symbol.for(\"react.memo\"):60115,t=b?Symbol.for(\"react.lazy\"):60116,v=b?Symbol.for(\"react.block\"):60121,w=b?Symbol.for(\"react.fundamental\"):60117,x=b?Symbol.for(\"react.responder\"):60118,y=b?Symbol.for(\"react.scope\"):60119;\nfunction z(a){if(\"object\"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c:switch(a=a.type,a){case l:case m:case e:case g:case f:case p:return a;default:switch(a=a&&a.$$typeof,a){case k:case n:case t:case r:case h:return a;default:return u}}case d:return u}}}function A(a){return z(a)===m}exports.AsyncMode=l;exports.ConcurrentMode=m;exports.ContextConsumer=k;exports.ContextProvider=h;exports.Element=c;exports.ForwardRef=n;exports.Fragment=e;exports.Lazy=t;exports.Memo=r;exports.Portal=d;\nexports.Profiler=g;exports.StrictMode=f;exports.Suspense=p;exports.isAsyncMode=function(a){return A(a)||z(a)===l};exports.isConcurrentMode=A;exports.isContextConsumer=function(a){return z(a)===k};exports.isContextProvider=function(a){return z(a)===h};exports.isElement=function(a){return\"object\"===typeof a&&null!==a&&a.$$typeof===c};exports.isForwardRef=function(a){return z(a)===n};exports.isFragment=function(a){return z(a)===e};exports.isLazy=function(a){return z(a)===t};\nexports.isMemo=function(a){return z(a)===r};exports.isPortal=function(a){return z(a)===d};exports.isProfiler=function(a){return z(a)===g};exports.isStrictMode=function(a){return z(a)===f};exports.isSuspense=function(a){return z(a)===p};\nexports.isValidElementType=function(a){return\"string\"===typeof a||\"function\"===typeof a||a===e||a===m||a===g||a===f||a===p||a===q||\"object\"===typeof a&&null!==a&&(a.$$typeof===t||a.$$typeof===r||a.$$typeof===h||a.$$typeof===k||a.$$typeof===n||a.$$typeof===w||a.$$typeof===x||a.$$typeof===y||a.$$typeof===v)};exports.typeOf=z;\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-is.production.min.js');\n} else {\n module.exports = require('./cjs/react-is.development.js');\n}\n","'use strict';\n\nvar hasToStringTag = require('has-tostringtag/shams')();\nvar callBound = require('call-bind/callBound');\n\nvar $toString = callBound('Object.prototype.toString');\n\nvar isStandardArguments = function isArguments(value) {\n\tif (hasToStringTag && value && typeof value === 'object' && Symbol.toStringTag in value) {\n\t\treturn false;\n\t}\n\treturn $toString(value) === '[object Arguments]';\n};\n\nvar isLegacyArguments = function isArguments(value) {\n\tif (isStandardArguments(value)) {\n\t\treturn true;\n\t}\n\treturn value !== null &&\n\t\ttypeof value === 'object' &&\n\t\ttypeof value.length === 'number' &&\n\t\tvalue.length >= 0 &&\n\t\t$toString(value) !== '[object Array]' &&\n\t\t$toString(value.callee) === '[object Function]';\n};\n\nvar supportsStandardArguments = (function () {\n\treturn isStandardArguments(arguments);\n}());\n\nisStandardArguments.isLegacyArguments = isLegacyArguments; // for tests\n\nmodule.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;\n","'use strict';\n\nvar getDay = Date.prototype.getDay;\nvar tryDateObject = function tryDateGetDayCall(value) {\n\ttry {\n\t\tgetDay.call(value);\n\t\treturn true;\n\t} catch (e) {\n\t\treturn false;\n\t}\n};\n\nvar toStr = Object.prototype.toString;\nvar dateClass = '[object Date]';\nvar hasToStringTag = require('has-tostringtag/shams')();\n\nmodule.exports = function isDateObject(value) {\n\tif (typeof value !== 'object' || value === null) {\n\t\treturn false;\n\t}\n\treturn hasToStringTag ? tryDateObject(value) : toStr.call(value) === dateClass;\n};\n","'use strict';\n\nvar callBound = require('call-bind/callBound');\nvar hasToStringTag = require('has-tostringtag/shams')();\nvar has;\nvar $exec;\nvar isRegexMarker;\nvar badStringifier;\n\nif (hasToStringTag) {\n\thas = callBound('Object.prototype.hasOwnProperty');\n\t$exec = callBound('RegExp.prototype.exec');\n\tisRegexMarker = {};\n\n\tvar throwRegexMarker = function () {\n\t\tthrow isRegexMarker;\n\t};\n\tbadStringifier = {\n\t\ttoString: throwRegexMarker,\n\t\tvalueOf: throwRegexMarker\n\t};\n\n\tif (typeof Symbol.toPrimitive === 'symbol') {\n\t\tbadStringifier[Symbol.toPrimitive] = throwRegexMarker;\n\t}\n}\n\nvar $toString = callBound('Object.prototype.toString');\nvar gOPD = Object.getOwnPropertyDescriptor;\nvar regexClass = '[object RegExp]';\n\nmodule.exports = hasToStringTag\n\t// eslint-disable-next-line consistent-return\n\t? function isRegex(value) {\n\t\tif (!value || typeof value !== 'object') {\n\t\t\treturn false;\n\t\t}\n\n\t\tvar descriptor = gOPD(value, 'lastIndex');\n\t\tvar hasLastIndexDataProperty = descriptor && has(descriptor, 'value');\n\t\tif (!hasLastIndexDataProperty) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\t\t\t$exec(value, badStringifier);\n\t\t} catch (e) {\n\t\t\treturn e === isRegexMarker;\n\t\t}\n\t}\n\t: function isRegex(value) {\n\t\t// In older browsers, typeof regex incorrectly returns 'function'\n\t\tif (!value || (typeof value !== 'object' && typeof value !== 'function')) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn $toString(value) === regexClass;\n\t};\n","!function(t,e){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=e(require(\"react\")):\"function\"==typeof define&&define.amd?define([\"react\"],e):\"object\"==typeof exports?exports[\"mephisto-review-hook\"]=e(require(\"react\")):t[\"mephisto-review-hook\"]=e(t.react)}(window,(function(t){return function(t){var e={};function r(n){if(e[n])return e[n].exports;var o=e[n]={i:n,l:!1,exports:{}};return t[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}return r.m=t,r.c=e,r.d=function(t,e,n){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},r.r=function(t){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(t,\"__esModule\",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&\"object\"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:t}),2&e&&\"string\"!=typeof t)for(var o in t)r.d(n,o,function(e){return t[e]}.bind(null,o));return n},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,\"a\",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p=\"\",r(r.s=1)}([function(e,r){e.exports=t},function(t,e,r){\"use strict\";r.r(e),r.d(e,\"useMephistoReview\",(function(){return d})),r.d(e,\"useMephistoReviewLegacy\",(function(){return c}));var n=r(0),o=r.n(n);function u(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){if(\"undefined\"==typeof Symbol||!(Symbol.iterator in Object(t)))return;var r=[],n=!0,o=!1,u=void 0;try{for(var i,c=t[Symbol.iterator]();!(n=(i=c.next()).done)&&(r.push(i.value),!e||r.length!==e);n=!0);}catch(t){o=!0,u=t}finally{try{n||null==c.return||c.return()}finally{if(o)throw u}}return r}(t,e)||function(t,e){if(!t)return;if(\"string\"==typeof t)return i(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);\"Object\"===r&&t.constructor&&(r=t.constructor.name);if(\"Map\"===r||\"Set\"===r)return Array.from(t);if(\"Arguments\"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return i(t,e)}(t,e)||function(){throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}()}function i(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r0&&void 0!==arguments[0]?arguments[0]:{},e=t.useMock,r=t.mock,i=Object(n.useState)(null),c=u(i,2),a=c[0],f=c[1],s=Object(n.useState)(0),l=u(s,2),d=l[0],p=l[1],y=Object(n.useState)(null),h=u(y,2),b=h[0],v=h[1],m=void 0!==r&&(void 0===e||!0===e);Object(n.useEffect)((function(){m||fetch(\"/data_for_current_task\").catch((function(t){v({type:\"DATA_RETRIEVAL\",error:t})})).then((function(t){return t.json()})).then((function(t){return f(t)})).catch((function(t){v({type:\"DATA_PARSE\",error:t})}))}),[d]);var S=o.a.useCallback((function(t){fetch(\"/submit_current_task\",{method:\"POST\",body:JSON.stringify(t)}).catch((function(t){v({type:\"RESPONSE_SUBMIT\",error:t})})).then((function(){return p(d+1)}))}),[d,p]);return m?r:{isLoading:!a,data:a&&a.data,isFinished:a&&a.finished,submit:S,error:b}}function a(t,e,r,n,o,u,i){try{var c=t[u](i),a=c.value}catch(t){return void r(t)}c.done?e(a):Promise.resolve(a).then(n,o)}function f(t){return function(){var e=this,r=arguments;return new Promise((function(n,o){var u=t.apply(e,r);function i(t){a(u,n,o,i,c,\"next\",t)}function c(t){a(u,n,o,i,c,\"throw\",t)}i(void 0)}))}}function s(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){if(\"undefined\"==typeof Symbol||!(Symbol.iterator in Object(t)))return;var r=[],n=!0,o=!1,u=void 0;try{for(var i,c=t[Symbol.iterator]();!(n=(i=c.next()).done)&&(r.push(i.value),!e||r.length!==e);n=!0);}catch(t){o=!0,u=t}finally{try{n||null==c.return||c.return()}finally{if(o)throw u}}return r}(t,e)||function(t,e){if(!t)return;if(\"string\"==typeof t)return l(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);\"Object\"===r&&t.constructor&&(r=t.constructor.name);if(\"Map\"===r||\"Set\"===r)return Array.from(t);if(\"Arguments\"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return l(t,e)}(t,e)||function(){throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}()}function l(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r0&&void 0!==arguments[0]?arguments[0]:{},e=t.useMock,r=t.mock,o=t.taskId,u=t.page,i=t.resultsPerPage,c=t.filters,a=t.hostname,l=void 0===a?\"\":a,d=Object(n.useState)(null),p=s(d,2),y=p[0],h=p[1],b=Object(n.useState)(!1),v=s(b,2),m=v[0],S=v[1],g=Object(n.useState)(null),j=s(g,2),O=j[0],A=j[1],_=void 0!==r&&(void 0===e||!0===e);Object(n.useEffect)((function(){if(!_){var t=o?\"\".concat(l,\"/data/\").concat(o):\"\".concat(l,\"/data?\").concat(u?\"page=\"+u:\"\").concat(i?\"&results_per_page=\"+i:\"\").concat(c?\"&filters=\"+encodeURIComponent(c):\"\");S(!0),fetch(t,{method:\"GET\"}).catch((function(t){return A({type:\"DATA_RETRIEVAL\",error:t})})).then((function(t){return t.json()})).then((function(t){return h(t)})).catch((function(t){return A({type:\"DATA_PARSE\",error:t})})).then((function(){return S(!1)}))}}),[o,u,i,c]);var w=Object(n.useCallback)(function(){var t=f(regeneratorRuntime.mark((function t(e){var r;return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return r=null,S(!0),t.next=4,fetch(\"\".concat(l,\"/data/\").concat(o),{method:\"POST\",body:JSON.stringify(e)}).catch((function(t){return A({type:\"RESPONSE_SUBMIT\",error:t})})).then((function(t){return t.json()})).then((function(t){return r=t&&(t.result||t.error)})).catch((function(t){return A({type:\"DATA_PARSE\",error:t})})).then((function(){return S(!1)}));case 4:return t.abrupt(\"return\",r);case 5:case\"end\":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}(),[o]);return _?r:{isLoading:m,mode:y&&y.mode,data:y&&y.data,isFinished:y&&y.finished,totalPages:y&&y.total_pages||1,submit:w,error:O}}}])}));","/*\nobject-assign\n(c) Sindre Sorhus\n@license MIT\n*/\n\n'use strict';\n/* eslint-disable no-unused-vars */\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar propIsEnumerable = Object.prototype.propertyIsEnumerable;\n\nfunction toObject(val) {\n\tif (val === null || val === undefined) {\n\t\tthrow new TypeError('Object.assign cannot be called with null or undefined');\n\t}\n\n\treturn Object(val);\n}\n\nfunction shouldUseNative() {\n\ttry {\n\t\tif (!Object.assign) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Detect buggy property enumeration order in older V8 versions.\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=4118\n\t\tvar test1 = new String('abc'); // eslint-disable-line no-new-wrappers\n\t\ttest1[5] = 'de';\n\t\tif (Object.getOwnPropertyNames(test1)[0] === '5') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test2 = {};\n\t\tfor (var i = 0; i < 10; i++) {\n\t\t\ttest2['_' + String.fromCharCode(i)] = i;\n\t\t}\n\t\tvar order2 = Object.getOwnPropertyNames(test2).map(function (n) {\n\t\t\treturn test2[n];\n\t\t});\n\t\tif (order2.join('') !== '0123456789') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test3 = {};\n\t\t'abcdefghijklmnopqrst'.split('').forEach(function (letter) {\n\t\t\ttest3[letter] = letter;\n\t\t});\n\t\tif (Object.keys(Object.assign({}, test3)).join('') !==\n\t\t\t\t'abcdefghijklmnopqrst') {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t} catch (err) {\n\t\t// We don't expect any of the above to throw, but better to be safe.\n\t\treturn false;\n\t}\n}\n\nmodule.exports = shouldUseNative() ? Object.assign : function (target, source) {\n\tvar from;\n\tvar to = toObject(target);\n\tvar symbols;\n\n\tfor (var s = 1; s < arguments.length; s++) {\n\t\tfrom = Object(arguments[s]);\n\n\t\tfor (var key in from) {\n\t\t\tif (hasOwnProperty.call(from, key)) {\n\t\t\t\tto[key] = from[key];\n\t\t\t}\n\t\t}\n\n\t\tif (getOwnPropertySymbols) {\n\t\t\tsymbols = getOwnPropertySymbols(from);\n\t\t\tfor (var i = 0; i < symbols.length; i++) {\n\t\t\t\tif (propIsEnumerable.call(from, symbols[i])) {\n\t\t\t\t\tto[symbols[i]] = from[symbols[i]];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn to;\n};\n","'use strict';\n\nvar numberIsNaN = function (value) {\n\treturn value !== value;\n};\n\nmodule.exports = function is(a, b) {\n\tif (a === 0 && b === 0) {\n\t\treturn 1 / a === 1 / b;\n\t}\n\tif (a === b) {\n\t\treturn true;\n\t}\n\tif (numberIsNaN(a) && numberIsNaN(b)) {\n\t\treturn true;\n\t}\n\treturn false;\n};\n\n","'use strict';\n\nvar define = require('define-properties');\nvar callBind = require('call-bind');\n\nvar implementation = require('./implementation');\nvar getPolyfill = require('./polyfill');\nvar shim = require('./shim');\n\nvar polyfill = callBind(getPolyfill(), Object);\n\ndefine(polyfill, {\n\tgetPolyfill: getPolyfill,\n\timplementation: implementation,\n\tshim: shim\n});\n\nmodule.exports = polyfill;\n","'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = function getPolyfill() {\n\treturn typeof Object.is === 'function' ? Object.is : implementation;\n};\n","'use strict';\n\nvar getPolyfill = require('./polyfill');\nvar define = require('define-properties');\n\nmodule.exports = function shimObjectIs() {\n\tvar polyfill = getPolyfill();\n\tdefine(Object, { is: polyfill }, {\n\t\tis: function testObjectIs() {\n\t\t\treturn Object.is !== polyfill;\n\t\t}\n\t});\n\treturn polyfill;\n};\n","'use strict';\n\nvar keysShim;\nif (!Object.keys) {\n\t// modified from https://github.com/es-shims/es5-shim\n\tvar has = Object.prototype.hasOwnProperty;\n\tvar toStr = Object.prototype.toString;\n\tvar isArgs = require('./isArguments'); // eslint-disable-line global-require\n\tvar isEnumerable = Object.prototype.propertyIsEnumerable;\n\tvar hasDontEnumBug = !isEnumerable.call({ toString: null }, 'toString');\n\tvar hasProtoEnumBug = isEnumerable.call(function () {}, 'prototype');\n\tvar dontEnums = [\n\t\t'toString',\n\t\t'toLocaleString',\n\t\t'valueOf',\n\t\t'hasOwnProperty',\n\t\t'isPrototypeOf',\n\t\t'propertyIsEnumerable',\n\t\t'constructor'\n\t];\n\tvar equalsConstructorPrototype = function (o) {\n\t\tvar ctor = o.constructor;\n\t\treturn ctor && ctor.prototype === o;\n\t};\n\tvar excludedKeys = {\n\t\t$applicationCache: true,\n\t\t$console: true,\n\t\t$external: true,\n\t\t$frame: true,\n\t\t$frameElement: true,\n\t\t$frames: true,\n\t\t$innerHeight: true,\n\t\t$innerWidth: true,\n\t\t$onmozfullscreenchange: true,\n\t\t$onmozfullscreenerror: true,\n\t\t$outerHeight: true,\n\t\t$outerWidth: true,\n\t\t$pageXOffset: true,\n\t\t$pageYOffset: true,\n\t\t$parent: true,\n\t\t$scrollLeft: true,\n\t\t$scrollTop: true,\n\t\t$scrollX: true,\n\t\t$scrollY: true,\n\t\t$self: true,\n\t\t$webkitIndexedDB: true,\n\t\t$webkitStorageInfo: true,\n\t\t$window: true\n\t};\n\tvar hasAutomationEqualityBug = (function () {\n\t\t/* global window */\n\t\tif (typeof window === 'undefined') { return false; }\n\t\tfor (var k in window) {\n\t\t\ttry {\n\t\t\t\tif (!excludedKeys['$' + k] && has.call(window, k) && window[k] !== null && typeof window[k] === 'object') {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tequalsConstructorPrototype(window[k]);\n\t\t\t\t\t} catch (e) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} catch (e) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t\treturn false;\n\t}());\n\tvar equalsConstructorPrototypeIfNotBuggy = function (o) {\n\t\t/* global window */\n\t\tif (typeof window === 'undefined' || !hasAutomationEqualityBug) {\n\t\t\treturn equalsConstructorPrototype(o);\n\t\t}\n\t\ttry {\n\t\t\treturn equalsConstructorPrototype(o);\n\t\t} catch (e) {\n\t\t\treturn false;\n\t\t}\n\t};\n\n\tkeysShim = function keys(object) {\n\t\tvar isObject = object !== null && typeof object === 'object';\n\t\tvar isFunction = toStr.call(object) === '[object Function]';\n\t\tvar isArguments = isArgs(object);\n\t\tvar isString = isObject && toStr.call(object) === '[object String]';\n\t\tvar theKeys = [];\n\n\t\tif (!isObject && !isFunction && !isArguments) {\n\t\t\tthrow new TypeError('Object.keys called on a non-object');\n\t\t}\n\n\t\tvar skipProto = hasProtoEnumBug && isFunction;\n\t\tif (isString && object.length > 0 && !has.call(object, 0)) {\n\t\t\tfor (var i = 0; i < object.length; ++i) {\n\t\t\t\ttheKeys.push(String(i));\n\t\t\t}\n\t\t}\n\n\t\tif (isArguments && object.length > 0) {\n\t\t\tfor (var j = 0; j < object.length; ++j) {\n\t\t\t\ttheKeys.push(String(j));\n\t\t\t}\n\t\t} else {\n\t\t\tfor (var name in object) {\n\t\t\t\tif (!(skipProto && name === 'prototype') && has.call(object, name)) {\n\t\t\t\t\ttheKeys.push(String(name));\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif (hasDontEnumBug) {\n\t\t\tvar skipConstructor = equalsConstructorPrototypeIfNotBuggy(object);\n\n\t\t\tfor (var k = 0; k < dontEnums.length; ++k) {\n\t\t\t\tif (!(skipConstructor && dontEnums[k] === 'constructor') && has.call(object, dontEnums[k])) {\n\t\t\t\t\ttheKeys.push(dontEnums[k]);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn theKeys;\n\t};\n}\nmodule.exports = keysShim;\n","'use strict';\n\nvar slice = Array.prototype.slice;\nvar isArgs = require('./isArguments');\n\nvar origKeys = Object.keys;\nvar keysShim = origKeys ? function keys(o) { return origKeys(o); } : require('./implementation');\n\nvar originalKeys = Object.keys;\n\nkeysShim.shim = function shimObjectKeys() {\n\tif (Object.keys) {\n\t\tvar keysWorksWithArguments = (function () {\n\t\t\t// Safari 5.0 bug\n\t\t\tvar args = Object.keys(arguments);\n\t\t\treturn args && args.length === arguments.length;\n\t\t}(1, 2));\n\t\tif (!keysWorksWithArguments) {\n\t\t\tObject.keys = function keys(object) { // eslint-disable-line func-name-matching\n\t\t\t\tif (isArgs(object)) {\n\t\t\t\t\treturn originalKeys(slice.call(object));\n\t\t\t\t}\n\t\t\t\treturn originalKeys(object);\n\t\t\t};\n\t\t}\n\t} else {\n\t\tObject.keys = keysShim;\n\t}\n\treturn Object.keys || keysShim;\n};\n\nmodule.exports = keysShim;\n","'use strict';\n\nvar toStr = Object.prototype.toString;\n\nmodule.exports = function isArguments(value) {\n\tvar str = toStr.call(value);\n\tvar isArgs = str === '[object Arguments]';\n\tif (!isArgs) {\n\t\tisArgs = str !== '[object Array]' &&\n\t\t\tvalue !== null &&\n\t\t\ttypeof value === 'object' &&\n\t\t\ttypeof value.length === 'number' &&\n\t\t\tvalue.length >= 0 &&\n\t\t\ttoStr.call(value.callee) === '[object Function]';\n\t}\n\treturn isArgs;\n};\n","/**\n * Copyright (c) 2013-present, Meta Platforms\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n\nfunction emptyFunction() {}\nfunction emptyFunctionWithReset() {}\nemptyFunctionWithReset.resetWarningCache = emptyFunction;\n\nmodule.exports = function() {\n function shim(props, propName, componentName, location, propFullName, secret) {\n if (secret === ReactPropTypesSecret) {\n // It is still safe when called from React.\n return;\n }\n var err = new Error(\n 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n 'Use PropTypes.checkPropTypes() to call them. ' +\n 'Read more at http://fb.me/use-check-prop-types'\n );\n err.name = 'Invariant Violation';\n throw err;\n };\n shim.isRequired = shim;\n function getShim() {\n return shim;\n };\n // Important!\n // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.\n var ReactPropTypes = {\n array: shim,\n bigint: shim,\n bool: shim,\n func: shim,\n number: shim,\n object: shim,\n string: shim,\n symbol: shim,\n\n any: shim,\n arrayOf: getShim,\n element: shim,\n elementType: shim,\n instanceOf: getShim,\n node: shim,\n objectOf: getShim,\n oneOf: getShim,\n oneOfType: getShim,\n shape: getShim,\n exact: getShim,\n\n checkPropTypes: emptyFunctionWithReset,\n resetWarningCache: emptyFunction\n };\n\n ReactPropTypes.PropTypes = ReactPropTypes;\n\n return ReactPropTypes;\n};\n","/**\n * Copyright (c) 2013-present, Meta Platforms\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nif (process.env.NODE_ENV !== 'production') {\n var ReactIs = require('react-is');\n\n // By explicitly using `prop-types` you are opting into new development behavior.\n // http://fb.me/prop-types-in-prod\n var throwOnDirectAccess = true;\n module.exports = require('./factoryWithTypeCheckers')(ReactIs.isElement, throwOnDirectAccess);\n} else {\n // By explicitly using `prop-types` you are opting into new production behavior.\n // http://fb.me/prop-types-in-prod\n module.exports = require('./factoryWithThrowingShims')();\n}\n","/**\n * Copyright (c) 2013-present, Meta Platforms\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';\n\nmodule.exports = ReactPropTypesSecret;\n","/** @license React v17.0.2\n * react-dom.production.min.js\n *\n * Copyright (c) Meta Platforms and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n/*\n Modernizr 3.0.0pre (Custom Build) | MIT\n*/\n'use strict';var aa=require(\"react\"),m=require(\"object-assign\"),r=require(\"scheduler\");function y(a){for(var b=\"https://reactjs.org/docs/error-decoder.html?invariant=\"+a,c=1;cb}return!1}function B(a,b,c,d,e,f,g){this.acceptsBooleans=2===b||3===b||4===b;this.attributeName=d;this.attributeNamespace=e;this.mustUseProperty=c;this.propertyName=a;this.type=b;this.sanitizeURL=f;this.removeEmptyString=g}var D={};\n\"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style\".split(\" \").forEach(function(a){D[a]=new B(a,0,!1,a,null,!1,!1)});[[\"acceptCharset\",\"accept-charset\"],[\"className\",\"class\"],[\"htmlFor\",\"for\"],[\"httpEquiv\",\"http-equiv\"]].forEach(function(a){var b=a[0];D[b]=new B(b,1,!1,a[1],null,!1,!1)});[\"contentEditable\",\"draggable\",\"spellCheck\",\"value\"].forEach(function(a){D[a]=new B(a,2,!1,a.toLowerCase(),null,!1,!1)});\n[\"autoReverse\",\"externalResourcesRequired\",\"focusable\",\"preserveAlpha\"].forEach(function(a){D[a]=new B(a,2,!1,a,null,!1,!1)});\"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope\".split(\" \").forEach(function(a){D[a]=new B(a,3,!1,a.toLowerCase(),null,!1,!1)});\n[\"checked\",\"multiple\",\"muted\",\"selected\"].forEach(function(a){D[a]=new B(a,3,!0,a,null,!1,!1)});[\"capture\",\"download\"].forEach(function(a){D[a]=new B(a,4,!1,a,null,!1,!1)});[\"cols\",\"rows\",\"size\",\"span\"].forEach(function(a){D[a]=new B(a,6,!1,a,null,!1,!1)});[\"rowSpan\",\"start\"].forEach(function(a){D[a]=new B(a,5,!1,a.toLowerCase(),null,!1,!1)});var oa=/[\\-:]([a-z])/g;function pa(a){return a[1].toUpperCase()}\n\"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height\".split(\" \").forEach(function(a){var b=a.replace(oa,\npa);D[b]=new B(b,1,!1,a,null,!1,!1)});\"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type\".split(\" \").forEach(function(a){var b=a.replace(oa,pa);D[b]=new B(b,1,!1,a,\"http://www.w3.org/1999/xlink\",!1,!1)});[\"xml:base\",\"xml:lang\",\"xml:space\"].forEach(function(a){var b=a.replace(oa,pa);D[b]=new B(b,1,!1,a,\"http://www.w3.org/XML/1998/namespace\",!1,!1)});[\"tabIndex\",\"crossOrigin\"].forEach(function(a){D[a]=new B(a,1,!1,a.toLowerCase(),null,!1,!1)});\nD.xlinkHref=new B(\"xlinkHref\",1,!1,\"xlink:href\",\"http://www.w3.org/1999/xlink\",!0,!1);[\"src\",\"href\",\"action\",\"formAction\"].forEach(function(a){D[a]=new B(a,1,!1,a.toLowerCase(),null,!0,!0)});\nfunction qa(a,b,c,d){var e=D.hasOwnProperty(b)?D[b]:null;var f=null!==e?0===e.type:d?!1:!(2h||e[g]!==f[h])return\"\\n\"+e[g].replace(\" at new \",\" at \");while(1<=g&&0<=h)}break}}}finally{Oa=!1,Error.prepareStackTrace=c}return(a=a?a.displayName||a.name:\"\")?Na(a):\"\"}\nfunction Qa(a){switch(a.tag){case 5:return Na(a.type);case 16:return Na(\"Lazy\");case 13:return Na(\"Suspense\");case 19:return Na(\"SuspenseList\");case 0:case 2:case 15:return a=Pa(a.type,!1),a;case 11:return a=Pa(a.type.render,!1),a;case 22:return a=Pa(a.type._render,!1),a;case 1:return a=Pa(a.type,!0),a;default:return\"\"}}\nfunction Ra(a){if(null==a)return null;if(\"function\"===typeof a)return a.displayName||a.name||null;if(\"string\"===typeof a)return a;switch(a){case ua:return\"Fragment\";case ta:return\"Portal\";case xa:return\"Profiler\";case wa:return\"StrictMode\";case Ba:return\"Suspense\";case Ca:return\"SuspenseList\"}if(\"object\"===typeof a)switch(a.$$typeof){case za:return(a.displayName||\"Context\")+\".Consumer\";case ya:return(a._context.displayName||\"Context\")+\".Provider\";case Aa:var b=a.render;b=b.displayName||b.name||\"\";\nreturn a.displayName||(\"\"!==b?\"ForwardRef(\"+b+\")\":\"ForwardRef\");case Da:return Ra(a.type);case Fa:return Ra(a._render);case Ea:b=a._payload;a=a._init;try{return Ra(a(b))}catch(c){}}return null}function Sa(a){switch(typeof a){case \"boolean\":case \"number\":case \"object\":case \"string\":case \"undefined\":return a;default:return\"\"}}function Ta(a){var b=a.type;return(a=a.nodeName)&&\"input\"===a.toLowerCase()&&(\"checkbox\"===b||\"radio\"===b)}\nfunction Ua(a){var b=Ta(a)?\"checked\":\"value\",c=Object.getOwnPropertyDescriptor(a.constructor.prototype,b),d=\"\"+a[b];if(!a.hasOwnProperty(b)&&\"undefined\"!==typeof c&&\"function\"===typeof c.get&&\"function\"===typeof c.set){var e=c.get,f=c.set;Object.defineProperty(a,b,{configurable:!0,get:function(){return e.call(this)},set:function(a){d=\"\"+a;f.call(this,a)}});Object.defineProperty(a,b,{enumerable:c.enumerable});return{getValue:function(){return d},setValue:function(a){d=\"\"+a},stopTracking:function(){a._valueTracker=\nnull;delete a[b]}}}}function Va(a){a._valueTracker||(a._valueTracker=Ua(a))}function Wa(a){if(!a)return!1;var b=a._valueTracker;if(!b)return!0;var c=b.getValue();var d=\"\";a&&(d=Ta(a)?a.checked?\"true\":\"false\":a.value);a=d;return a!==c?(b.setValue(a),!0):!1}function Xa(a){a=a||(\"undefined\"!==typeof document?document:void 0);if(\"undefined\"===typeof a)return null;try{return a.activeElement||a.body}catch(b){return a.body}}\nfunction Ya(a,b){var c=b.checked;return m({},b,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=c?c:a._wrapperState.initialChecked})}function Za(a,b){var c=null==b.defaultValue?\"\":b.defaultValue,d=null!=b.checked?b.checked:b.defaultChecked;c=Sa(null!=b.value?b.value:c);a._wrapperState={initialChecked:d,initialValue:c,controlled:\"checkbox\"===b.type||\"radio\"===b.type?null!=b.checked:null!=b.value}}function $a(a,b){b=b.checked;null!=b&&qa(a,\"checked\",b,!1)}\nfunction ab(a,b){$a(a,b);var c=Sa(b.value),d=b.type;if(null!=c)if(\"number\"===d){if(0===c&&\"\"===a.value||a.value!=c)a.value=\"\"+c}else a.value!==\"\"+c&&(a.value=\"\"+c);else if(\"submit\"===d||\"reset\"===d){a.removeAttribute(\"value\");return}b.hasOwnProperty(\"value\")?bb(a,b.type,c):b.hasOwnProperty(\"defaultValue\")&&bb(a,b.type,Sa(b.defaultValue));null==b.checked&&null!=b.defaultChecked&&(a.defaultChecked=!!b.defaultChecked)}\nfunction cb(a,b,c){if(b.hasOwnProperty(\"value\")||b.hasOwnProperty(\"defaultValue\")){var d=b.type;if(!(\"submit\"!==d&&\"reset\"!==d||void 0!==b.value&&null!==b.value))return;b=\"\"+a._wrapperState.initialValue;c||b===a.value||(a.value=b);a.defaultValue=b}c=a.name;\"\"!==c&&(a.name=\"\");a.defaultChecked=!!a._wrapperState.initialChecked;\"\"!==c&&(a.name=c)}\nfunction bb(a,b,c){if(\"number\"!==b||Xa(a.ownerDocument)!==a)null==c?a.defaultValue=\"\"+a._wrapperState.initialValue:a.defaultValue!==\"\"+c&&(a.defaultValue=\"\"+c)}function db(a){var b=\"\";aa.Children.forEach(a,function(a){null!=a&&(b+=a)});return b}function eb(a,b){a=m({children:void 0},b);if(b=db(b.children))a.children=b;return a}\nfunction fb(a,b,c,d){a=a.options;if(b){b={};for(var e=0;e=c.length))throw Error(y(93));c=c[0]}b=c}null==b&&(b=\"\");c=b}a._wrapperState={initialValue:Sa(c)}}\nfunction ib(a,b){var c=Sa(b.value),d=Sa(b.defaultValue);null!=c&&(c=\"\"+c,c!==a.value&&(a.value=c),null==b.defaultValue&&a.defaultValue!==c&&(a.defaultValue=c));null!=d&&(a.defaultValue=\"\"+d)}function jb(a){var b=a.textContent;b===a._wrapperState.initialValue&&\"\"!==b&&null!==b&&(a.value=b)}var kb={html:\"http://www.w3.org/1999/xhtml\",mathml:\"http://www.w3.org/1998/Math/MathML\",svg:\"http://www.w3.org/2000/svg\"};\nfunction lb(a){switch(a){case \"svg\":return\"http://www.w3.org/2000/svg\";case \"math\":return\"http://www.w3.org/1998/Math/MathML\";default:return\"http://www.w3.org/1999/xhtml\"}}function mb(a,b){return null==a||\"http://www.w3.org/1999/xhtml\"===a?lb(b):\"http://www.w3.org/2000/svg\"===a&&\"foreignObject\"===b?\"http://www.w3.org/1999/xhtml\":a}\nvar nb,ob=function(a){return\"undefined\"!==typeof MSApp&&MSApp.execUnsafeLocalFunction?function(b,c,d,e){MSApp.execUnsafeLocalFunction(function(){return a(b,c,d,e)})}:a}(function(a,b){if(a.namespaceURI!==kb.svg||\"innerHTML\"in a)a.innerHTML=b;else{nb=nb||document.createElement(\"div\");nb.innerHTML=\"\"+b.valueOf().toString()+\"\";for(b=nb.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;b.firstChild;)a.appendChild(b.firstChild)}});\nfunction pb(a,b){if(b){var c=a.firstChild;if(c&&c===a.lastChild&&3===c.nodeType){c.nodeValue=b;return}}a.textContent=b}\nvar qb={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,\nfloodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},rb=[\"Webkit\",\"ms\",\"Moz\",\"O\"];Object.keys(qb).forEach(function(a){rb.forEach(function(b){b=b+a.charAt(0).toUpperCase()+a.substring(1);qb[b]=qb[a]})});function sb(a,b,c){return null==b||\"boolean\"===typeof b||\"\"===b?\"\":c||\"number\"!==typeof b||0===b||qb.hasOwnProperty(a)&&qb[a]?(\"\"+b).trim():b+\"px\"}\nfunction tb(a,b){a=a.style;for(var c in b)if(b.hasOwnProperty(c)){var d=0===c.indexOf(\"--\"),e=sb(c,b[c],d);\"float\"===c&&(c=\"cssFloat\");d?a.setProperty(c,e):a[c]=e}}var ub=m({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});\nfunction vb(a,b){if(b){if(ub[a]&&(null!=b.children||null!=b.dangerouslySetInnerHTML))throw Error(y(137,a));if(null!=b.dangerouslySetInnerHTML){if(null!=b.children)throw Error(y(60));if(!(\"object\"===typeof b.dangerouslySetInnerHTML&&\"__html\"in b.dangerouslySetInnerHTML))throw Error(y(61));}if(null!=b.style&&\"object\"!==typeof b.style)throw Error(y(62));}}\nfunction wb(a,b){if(-1===a.indexOf(\"-\"))return\"string\"===typeof b.is;switch(a){case \"annotation-xml\":case \"color-profile\":case \"font-face\":case \"font-face-src\":case \"font-face-uri\":case \"font-face-format\":case \"font-face-name\":case \"missing-glyph\":return!1;default:return!0}}function xb(a){a=a.target||a.srcElement||window;a.correspondingUseElement&&(a=a.correspondingUseElement);return 3===a.nodeType?a.parentNode:a}var yb=null,zb=null,Ab=null;\nfunction Bb(a){if(a=Cb(a)){if(\"function\"!==typeof yb)throw Error(y(280));var b=a.stateNode;b&&(b=Db(b),yb(a.stateNode,a.type,b))}}function Eb(a){zb?Ab?Ab.push(a):Ab=[a]:zb=a}function Fb(){if(zb){var a=zb,b=Ab;Ab=zb=null;Bb(a);if(b)for(a=0;ad?0:1<c;c++)b.push(a);return b}\nfunction $c(a,b,c){a.pendingLanes|=b;var d=b-1;a.suspendedLanes&=d;a.pingedLanes&=d;a=a.eventTimes;b=31-Vc(b);a[b]=c}var Vc=Math.clz32?Math.clz32:ad,bd=Math.log,cd=Math.LN2;function ad(a){return 0===a?32:31-(bd(a)/cd|0)|0}var dd=r.unstable_UserBlockingPriority,ed=r.unstable_runWithPriority,fd=!0;function gd(a,b,c,d){Kb||Ib();var e=hd,f=Kb;Kb=!0;try{Hb(e,a,b,c,d)}finally{(Kb=f)||Mb()}}function id(a,b,c,d){ed(dd,hd.bind(null,a,b,c,d))}\nfunction hd(a,b,c,d){if(fd){var e;if((e=0===(b&4))&&0=be),ee=String.fromCharCode(32),fe=!1;\nfunction ge(a,b){switch(a){case \"keyup\":return-1!==$d.indexOf(b.keyCode);case \"keydown\":return 229!==b.keyCode;case \"keypress\":case \"mousedown\":case \"focusout\":return!0;default:return!1}}function he(a){a=a.detail;return\"object\"===typeof a&&\"data\"in a?a.data:null}var ie=!1;function je(a,b){switch(a){case \"compositionend\":return he(b);case \"keypress\":if(32!==b.which)return null;fe=!0;return ee;case \"textInput\":return a=b.data,a===ee&&fe?null:a;default:return null}}\nfunction ke(a,b){if(ie)return\"compositionend\"===a||!ae&&ge(a,b)?(a=nd(),md=ld=kd=null,ie=!1,a):null;switch(a){case \"paste\":return null;case \"keypress\":if(!(b.ctrlKey||b.altKey||b.metaKey)||b.ctrlKey&&b.altKey){if(b.char&&1=b)return{node:c,offset:b-a};a=d}a:{for(;c;){if(c.nextSibling){c=c.nextSibling;break a}c=c.parentNode}c=void 0}c=Ke(c)}}function Me(a,b){return a&&b?a===b?!0:a&&3===a.nodeType?!1:b&&3===b.nodeType?Me(a,b.parentNode):\"contains\"in a?a.contains(b):a.compareDocumentPosition?!!(a.compareDocumentPosition(b)&16):!1:!1}\nfunction Ne(){for(var a=window,b=Xa();b instanceof a.HTMLIFrameElement;){try{var c=\"string\"===typeof b.contentWindow.location.href}catch(d){c=!1}if(c)a=b.contentWindow;else break;b=Xa(a.document)}return b}function Oe(a){var b=a&&a.nodeName&&a.nodeName.toLowerCase();return b&&(\"input\"===b&&(\"text\"===a.type||\"search\"===a.type||\"tel\"===a.type||\"url\"===a.type||\"password\"===a.type)||\"textarea\"===b||\"true\"===a.contentEditable)}\nvar Pe=fa&&\"documentMode\"in document&&11>=document.documentMode,Qe=null,Re=null,Se=null,Te=!1;\nfunction Ue(a,b,c){var d=c.window===c?c.document:9===c.nodeType?c:c.ownerDocument;Te||null==Qe||Qe!==Xa(d)||(d=Qe,\"selectionStart\"in d&&Oe(d)?d={start:d.selectionStart,end:d.selectionEnd}:(d=(d.ownerDocument&&d.ownerDocument.defaultView||window).getSelection(),d={anchorNode:d.anchorNode,anchorOffset:d.anchorOffset,focusNode:d.focusNode,focusOffset:d.focusOffset}),Se&&Je(Se,d)||(Se=d,d=oe(Re,\"onSelect\"),0Af||(a.current=zf[Af],zf[Af]=null,Af--)}function I(a,b){Af++;zf[Af]=a.current;a.current=b}var Cf={},M=Bf(Cf),N=Bf(!1),Df=Cf;\nfunction Ef(a,b){var c=a.type.contextTypes;if(!c)return Cf;var d=a.stateNode;if(d&&d.__reactInternalMemoizedUnmaskedChildContext===b)return d.__reactInternalMemoizedMaskedChildContext;var e={},f;for(f in c)e[f]=b[f];d&&(a=a.stateNode,a.__reactInternalMemoizedUnmaskedChildContext=b,a.__reactInternalMemoizedMaskedChildContext=e);return e}function Ff(a){a=a.childContextTypes;return null!==a&&void 0!==a}function Gf(){H(N);H(M)}function Hf(a,b,c){if(M.current!==Cf)throw Error(y(168));I(M,b);I(N,c)}\nfunction If(a,b,c){var d=a.stateNode;a=b.childContextTypes;if(\"function\"!==typeof d.getChildContext)return c;d=d.getChildContext();for(var e in d)if(!(e in a))throw Error(y(108,Ra(b)||\"Unknown\",e));return m({},c,d)}function Jf(a){a=(a=a.stateNode)&&a.__reactInternalMemoizedMergedChildContext||Cf;Df=M.current;I(M,a);I(N,N.current);return!0}function Kf(a,b,c){var d=a.stateNode;if(!d)throw Error(y(169));c?(a=If(a,b,Df),d.__reactInternalMemoizedMergedChildContext=a,H(N),H(M),I(M,a)):H(N);I(N,c)}\nvar Lf=null,Mf=null,Nf=r.unstable_runWithPriority,Of=r.unstable_scheduleCallback,Pf=r.unstable_cancelCallback,Qf=r.unstable_shouldYield,Rf=r.unstable_requestPaint,Sf=r.unstable_now,Tf=r.unstable_getCurrentPriorityLevel,Uf=r.unstable_ImmediatePriority,Vf=r.unstable_UserBlockingPriority,Wf=r.unstable_NormalPriority,Xf=r.unstable_LowPriority,Yf=r.unstable_IdlePriority,Zf={},$f=void 0!==Rf?Rf:function(){},ag=null,bg=null,cg=!1,dg=Sf(),O=1E4>dg?Sf:function(){return Sf()-dg};\nfunction eg(){switch(Tf()){case Uf:return 99;case Vf:return 98;case Wf:return 97;case Xf:return 96;case Yf:return 95;default:throw Error(y(332));}}function fg(a){switch(a){case 99:return Uf;case 98:return Vf;case 97:return Wf;case 96:return Xf;case 95:return Yf;default:throw Error(y(332));}}function gg(a,b){a=fg(a);return Nf(a,b)}function hg(a,b,c){a=fg(a);return Of(a,b,c)}function ig(){if(null!==bg){var a=bg;bg=null;Pf(a)}jg()}\nfunction jg(){if(!cg&&null!==ag){cg=!0;var a=0;try{var b=ag;gg(99,function(){for(;az?(q=u,u=null):q=u.sibling;var n=p(e,u,h[z],k);if(null===n){null===u&&(u=q);break}a&&u&&null===\nn.alternate&&b(e,u);g=f(n,g,z);null===t?l=n:t.sibling=n;t=n;u=q}if(z===h.length)return c(e,u),l;if(null===u){for(;zz?(q=u,u=null):q=u.sibling;var w=p(e,u,n.value,k);if(null===w){null===u&&(u=q);break}a&&u&&null===w.alternate&&b(e,u);g=f(w,g,z);null===t?l=w:t.sibling=w;t=w;u=q}if(n.done)return c(e,u),l;if(null===u){for(;!n.done;z++,n=h.next())n=A(e,n.value,k),null!==n&&(g=f(n,g,z),null===t?l=n:t.sibling=n,t=n);return l}for(u=d(e,u);!n.done;z++,n=h.next())n=C(u,e,z,n.value,k),null!==n&&(a&&null!==n.alternate&&\nu.delete(null===n.key?z:n.key),g=f(n,g,z),null===t?l=n:t.sibling=n,t=n);a&&u.forEach(function(a){return b(e,a)});return l}return function(a,d,f,h){var k=\"object\"===typeof f&&null!==f&&f.type===ua&&null===f.key;k&&(f=f.props.children);var l=\"object\"===typeof f&&null!==f;if(l)switch(f.$$typeof){case sa:a:{l=f.key;for(k=d;null!==k;){if(k.key===l){switch(k.tag){case 7:if(f.type===ua){c(a,k.sibling);d=e(k,f.props.children);d.return=a;a=d;break a}break;default:if(k.elementType===f.type){c(a,k.sibling);\nd=e(k,f.props);d.ref=Qg(a,k,f);d.return=a;a=d;break a}}c(a,k);break}else b(a,k);k=k.sibling}f.type===ua?(d=Xg(f.props.children,a.mode,h,f.key),d.return=a,a=d):(h=Vg(f.type,f.key,f.props,null,a.mode,h),h.ref=Qg(a,d,f),h.return=a,a=h)}return g(a);case ta:a:{for(k=f.key;null!==d;){if(d.key===k)if(4===d.tag&&d.stateNode.containerInfo===f.containerInfo&&d.stateNode.implementation===f.implementation){c(a,d.sibling);d=e(d,f.children||[]);d.return=a;a=d;break a}else{c(a,d);break}else b(a,d);d=d.sibling}d=\nWg(f,a.mode,h);d.return=a;a=d}return g(a)}if(\"string\"===typeof f||\"number\"===typeof f)return f=\"\"+f,null!==d&&6===d.tag?(c(a,d.sibling),d=e(d,f),d.return=a,a=d):(c(a,d),d=Ug(f,a.mode,h),d.return=a,a=d),g(a);if(Pg(f))return x(a,d,f,h);if(La(f))return w(a,d,f,h);l&&Rg(a,f);if(\"undefined\"===typeof f&&!k)switch(a.tag){case 1:case 22:case 0:case 11:case 15:throw Error(y(152,Ra(a.type)||\"Component\"));}return c(a,d)}}var Yg=Sg(!0),Zg=Sg(!1),$g={},ah=Bf($g),bh=Bf($g),ch=Bf($g);\nfunction dh(a){if(a===$g)throw Error(y(174));return a}function eh(a,b){I(ch,b);I(bh,a);I(ah,$g);a=b.nodeType;switch(a){case 9:case 11:b=(b=b.documentElement)?b.namespaceURI:mb(null,\"\");break;default:a=8===a?b.parentNode:b,b=a.namespaceURI||null,a=a.tagName,b=mb(b,a)}H(ah);I(ah,b)}function fh(){H(ah);H(bh);H(ch)}function gh(a){dh(ch.current);var b=dh(ah.current);var c=mb(b,a.type);b!==c&&(I(bh,a),I(ah,c))}function hh(a){bh.current===a&&(H(ah),H(bh))}var P=Bf(0);\nfunction ih(a){for(var b=a;null!==b;){if(13===b.tag){var c=b.memoizedState;if(null!==c&&(c=c.dehydrated,null===c||\"$?\"===c.data||\"$!\"===c.data))return b}else if(19===b.tag&&void 0!==b.memoizedProps.revealOrder){if(0!==(b.flags&64))return b}else if(null!==b.child){b.child.return=b;b=b.child;continue}if(b===a)break;for(;null===b.sibling;){if(null===b.return||b.return===a)return null;b=b.return}b.sibling.return=b.return;b=b.sibling}return null}var jh=null,kh=null,lh=!1;\nfunction mh(a,b){var c=nh(5,null,null,0);c.elementType=\"DELETED\";c.type=\"DELETED\";c.stateNode=b;c.return=a;c.flags=8;null!==a.lastEffect?(a.lastEffect.nextEffect=c,a.lastEffect=c):a.firstEffect=a.lastEffect=c}function oh(a,b){switch(a.tag){case 5:var c=a.type;b=1!==b.nodeType||c.toLowerCase()!==b.nodeName.toLowerCase()?null:b;return null!==b?(a.stateNode=b,!0):!1;case 6:return b=\"\"===a.pendingProps||3!==b.nodeType?null:b,null!==b?(a.stateNode=b,!0):!1;case 13:return!1;default:return!1}}\nfunction ph(a){if(lh){var b=kh;if(b){var c=b;if(!oh(a,b)){b=rf(c.nextSibling);if(!b||!oh(a,b)){a.flags=a.flags&-1025|2;lh=!1;jh=a;return}mh(jh,c)}jh=a;kh=rf(b.firstChild)}else a.flags=a.flags&-1025|2,lh=!1,jh=a}}function qh(a){for(a=a.return;null!==a&&5!==a.tag&&3!==a.tag&&13!==a.tag;)a=a.return;jh=a}\nfunction rh(a){if(a!==jh)return!1;if(!lh)return qh(a),lh=!0,!1;var b=a.type;if(5!==a.tag||\"head\"!==b&&\"body\"!==b&&!nf(b,a.memoizedProps))for(b=kh;b;)mh(a,b),b=rf(b.nextSibling);qh(a);if(13===a.tag){a=a.memoizedState;a=null!==a?a.dehydrated:null;if(!a)throw Error(y(317));a:{a=a.nextSibling;for(b=0;a;){if(8===a.nodeType){var c=a.data;if(\"/$\"===c){if(0===b){kh=rf(a.nextSibling);break a}b--}else\"$\"!==c&&\"$!\"!==c&&\"$?\"!==c||b++}a=a.nextSibling}kh=null}}else kh=jh?rf(a.stateNode.nextSibling):null;return!0}\nfunction sh(){kh=jh=null;lh=!1}var th=[];function uh(){for(var a=0;af))throw Error(y(301));f+=1;T=S=null;b.updateQueue=null;vh.current=Fh;a=c(d,e)}while(zh)}vh.current=Gh;b=null!==S&&null!==S.next;xh=0;T=S=R=null;yh=!1;if(b)throw Error(y(300));return a}function Hh(){var a={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};null===T?R.memoizedState=T=a:T=T.next=a;return T}\nfunction Ih(){if(null===S){var a=R.alternate;a=null!==a?a.memoizedState:null}else a=S.next;var b=null===T?R.memoizedState:T.next;if(null!==b)T=b,S=a;else{if(null===a)throw Error(y(310));S=a;a={memoizedState:S.memoizedState,baseState:S.baseState,baseQueue:S.baseQueue,queue:S.queue,next:null};null===T?R.memoizedState=T=a:T=T.next=a}return T}function Jh(a,b){return\"function\"===typeof b?b(a):b}\nfunction Kh(a){var b=Ih(),c=b.queue;if(null===c)throw Error(y(311));c.lastRenderedReducer=a;var d=S,e=d.baseQueue,f=c.pending;if(null!==f){if(null!==e){var g=e.next;e.next=f.next;f.next=g}d.baseQueue=e=f;c.pending=null}if(null!==e){e=e.next;d=d.baseState;var h=g=f=null,k=e;do{var l=k.lane;if((xh&l)===l)null!==h&&(h=h.next={lane:0,action:k.action,eagerReducer:k.eagerReducer,eagerState:k.eagerState,next:null}),d=k.eagerReducer===a?k.eagerState:a(d,k.action);else{var n={lane:l,action:k.action,eagerReducer:k.eagerReducer,\neagerState:k.eagerState,next:null};null===h?(g=h=n,f=d):h=h.next=n;R.lanes|=l;Dg|=l}k=k.next}while(null!==k&&k!==e);null===h?f=d:h.next=g;He(d,b.memoizedState)||(ug=!0);b.memoizedState=d;b.baseState=f;b.baseQueue=h;c.lastRenderedState=d}return[b.memoizedState,c.dispatch]}\nfunction Lh(a){var b=Ih(),c=b.queue;if(null===c)throw Error(y(311));c.lastRenderedReducer=a;var d=c.dispatch,e=c.pending,f=b.memoizedState;if(null!==e){c.pending=null;var g=e=e.next;do f=a(f,g.action),g=g.next;while(g!==e);He(f,b.memoizedState)||(ug=!0);b.memoizedState=f;null===b.baseQueue&&(b.baseState=f);c.lastRenderedState=f}return[f,d]}\nfunction Mh(a,b,c){var d=b._getVersion;d=d(b._source);var e=b._workInProgressVersionPrimary;if(null!==e)a=e===d;else if(a=a.mutableReadLanes,a=(xh&a)===a)b._workInProgressVersionPrimary=d,th.push(b);if(a)return c(b._source);th.push(b);throw Error(y(350));}\nfunction Nh(a,b,c,d){var e=U;if(null===e)throw Error(y(349));var f=b._getVersion,g=f(b._source),h=vh.current,k=h.useState(function(){return Mh(e,b,c)}),l=k[1],n=k[0];k=T;var A=a.memoizedState,p=A.refs,C=p.getSnapshot,x=A.source;A=A.subscribe;var w=R;a.memoizedState={refs:p,source:b,subscribe:d};h.useEffect(function(){p.getSnapshot=c;p.setSnapshot=l;var a=f(b._source);if(!He(g,a)){a=c(b._source);He(n,a)||(l(a),a=Ig(w),e.mutableReadLanes|=a&e.pendingLanes);a=e.mutableReadLanes;e.entangledLanes|=a;for(var d=\ne.entanglements,h=a;0c?98:c,function(){a(!0)});gg(97\\x3c/script>\",a=a.removeChild(a.firstChild)):\"string\"===typeof d.is?a=g.createElement(c,{is:d.is}):(a=g.createElement(c),\"select\"===c&&(g=a,d.multiple?g.multiple=!0:d.size&&(g.size=d.size))):a=g.createElementNS(a,c);a[wf]=b;a[xf]=d;Bi(a,b,!1,!1);b.stateNode=a;g=wb(c,d);switch(c){case \"dialog\":G(\"cancel\",a);G(\"close\",a);\ne=d;break;case \"iframe\":case \"object\":case \"embed\":G(\"load\",a);e=d;break;case \"video\":case \"audio\":for(e=0;eJi&&(b.flags|=64,f=!0,Fi(d,!1),b.lanes=33554432)}else{if(!f)if(a=ih(g),null!==a){if(b.flags|=64,f=!0,c=a.updateQueue,null!==c&&(b.updateQueue=c,b.flags|=4),Fi(d,!0),null===d.tail&&\"hidden\"===d.tailMode&&!g.alternate&&!lh)return b=b.lastEffect=d.lastEffect,null!==b&&(b.nextEffect=null),null}else 2*O()-d.renderingStartTime>Ji&&1073741824!==c&&(b.flags|=\n64,f=!0,Fi(d,!1),b.lanes=33554432);d.isBackwards?(g.sibling=b.child,b.child=g):(c=d.last,null!==c?c.sibling=g:b.child=g,d.last=g)}return null!==d.tail?(c=d.tail,d.rendering=c,d.tail=c.sibling,d.lastEffect=b.lastEffect,d.renderingStartTime=O(),c.sibling=null,b=P.current,I(P,f?b&1|2:b&1),c):null;case 23:case 24:return Ki(),null!==a&&null!==a.memoizedState!==(null!==b.memoizedState)&&\"unstable-defer-without-hiding\"!==d.mode&&(b.flags|=4),null}throw Error(y(156,b.tag));}\nfunction Li(a){switch(a.tag){case 1:Ff(a.type)&&Gf();var b=a.flags;return b&4096?(a.flags=b&-4097|64,a):null;case 3:fh();H(N);H(M);uh();b=a.flags;if(0!==(b&64))throw Error(y(285));a.flags=b&-4097|64;return a;case 5:return hh(a),null;case 13:return H(P),b=a.flags,b&4096?(a.flags=b&-4097|64,a):null;case 19:return H(P),null;case 4:return fh(),null;case 10:return rg(a),null;case 23:case 24:return Ki(),null;default:return null}}\nfunction Mi(a,b){try{var c=\"\",d=b;do c+=Qa(d),d=d.return;while(d);var e=c}catch(f){e=\"\\nError generating stack: \"+f.message+\"\\n\"+f.stack}return{value:a,source:b,stack:e}}function Ni(a,b){try{console.error(b.value)}catch(c){setTimeout(function(){throw c;})}}var Oi=\"function\"===typeof WeakMap?WeakMap:Map;function Pi(a,b,c){c=zg(-1,c);c.tag=3;c.payload={element:null};var d=b.value;c.callback=function(){Qi||(Qi=!0,Ri=d);Ni(a,b)};return c}\nfunction Si(a,b,c){c=zg(-1,c);c.tag=3;var d=a.type.getDerivedStateFromError;if(\"function\"===typeof d){var e=b.value;c.payload=function(){Ni(a,b);return d(e)}}var f=a.stateNode;null!==f&&\"function\"===typeof f.componentDidCatch&&(c.callback=function(){\"function\"!==typeof d&&(null===Ti?Ti=new Set([this]):Ti.add(this),Ni(a,b));var c=b.stack;this.componentDidCatch(b.value,{componentStack:null!==c?c:\"\"})});return c}var Ui=\"function\"===typeof WeakSet?WeakSet:Set;\nfunction Vi(a){var b=a.ref;if(null!==b)if(\"function\"===typeof b)try{b(null)}catch(c){Wi(a,c)}else b.current=null}function Xi(a,b){switch(b.tag){case 0:case 11:case 15:case 22:return;case 1:if(b.flags&256&&null!==a){var c=a.memoizedProps,d=a.memoizedState;a=b.stateNode;b=a.getSnapshotBeforeUpdate(b.elementType===b.type?c:lg(b.type,c),d);a.__reactInternalSnapshotBeforeUpdate=b}return;case 3:b.flags&256&&qf(b.stateNode.containerInfo);return;case 5:case 6:case 4:case 17:return}throw Error(y(163));}\nfunction Yi(a,b,c){switch(c.tag){case 0:case 11:case 15:case 22:b=c.updateQueue;b=null!==b?b.lastEffect:null;if(null!==b){a=b=b.next;do{if(3===(a.tag&3)){var d=a.create;a.destroy=d()}a=a.next}while(a!==b)}b=c.updateQueue;b=null!==b?b.lastEffect:null;if(null!==b){a=b=b.next;do{var e=a;d=e.next;e=e.tag;0!==(e&4)&&0!==(e&1)&&(Zi(c,a),$i(c,a));a=d}while(a!==b)}return;case 1:a=c.stateNode;c.flags&4&&(null===b?a.componentDidMount():(d=c.elementType===c.type?b.memoizedProps:lg(c.type,b.memoizedProps),a.componentDidUpdate(d,\nb.memoizedState,a.__reactInternalSnapshotBeforeUpdate)));b=c.updateQueue;null!==b&&Eg(c,b,a);return;case 3:b=c.updateQueue;if(null!==b){a=null;if(null!==c.child)switch(c.child.tag){case 5:a=c.child.stateNode;break;case 1:a=c.child.stateNode}Eg(c,b,a)}return;case 5:a=c.stateNode;null===b&&c.flags&4&&mf(c.type,c.memoizedProps)&&a.focus();return;case 6:return;case 4:return;case 12:return;case 13:null===c.memoizedState&&(c=c.alternate,null!==c&&(c=c.memoizedState,null!==c&&(c=c.dehydrated,null!==c&&Cc(c))));\nreturn;case 19:case 17:case 20:case 21:case 23:case 24:return}throw Error(y(163));}\nfunction aj(a,b){for(var c=a;;){if(5===c.tag){var d=c.stateNode;if(b)d=d.style,\"function\"===typeof d.setProperty?d.setProperty(\"display\",\"none\",\"important\"):d.display=\"none\";else{d=c.stateNode;var e=c.memoizedProps.style;e=void 0!==e&&null!==e&&e.hasOwnProperty(\"display\")?e.display:null;d.style.display=sb(\"display\",e)}}else if(6===c.tag)c.stateNode.nodeValue=b?\"\":c.memoizedProps;else if((23!==c.tag&&24!==c.tag||null===c.memoizedState||c===a)&&null!==c.child){c.child.return=c;c=c.child;continue}if(c===\na)break;for(;null===c.sibling;){if(null===c.return||c.return===a)return;c=c.return}c.sibling.return=c.return;c=c.sibling}}\nfunction bj(a,b){if(Mf&&\"function\"===typeof Mf.onCommitFiberUnmount)try{Mf.onCommitFiberUnmount(Lf,b)}catch(f){}switch(b.tag){case 0:case 11:case 14:case 15:case 22:a=b.updateQueue;if(null!==a&&(a=a.lastEffect,null!==a)){var c=a=a.next;do{var d=c,e=d.destroy;d=d.tag;if(void 0!==e)if(0!==(d&4))Zi(b,c);else{d=b;try{e()}catch(f){Wi(d,f)}}c=c.next}while(c!==a)}break;case 1:Vi(b);a=b.stateNode;if(\"function\"===typeof a.componentWillUnmount)try{a.props=b.memoizedProps,a.state=b.memoizedState,a.componentWillUnmount()}catch(f){Wi(b,\nf)}break;case 5:Vi(b);break;case 4:cj(a,b)}}function dj(a){a.alternate=null;a.child=null;a.dependencies=null;a.firstEffect=null;a.lastEffect=null;a.memoizedProps=null;a.memoizedState=null;a.pendingProps=null;a.return=null;a.updateQueue=null}function ej(a){return 5===a.tag||3===a.tag||4===a.tag}\nfunction fj(a){a:{for(var b=a.return;null!==b;){if(ej(b))break a;b=b.return}throw Error(y(160));}var c=b;b=c.stateNode;switch(c.tag){case 5:var d=!1;break;case 3:b=b.containerInfo;d=!0;break;case 4:b=b.containerInfo;d=!0;break;default:throw Error(y(161));}c.flags&16&&(pb(b,\"\"),c.flags&=-17);a:b:for(c=a;;){for(;null===c.sibling;){if(null===c.return||ej(c.return)){c=null;break a}c=c.return}c.sibling.return=c.return;for(c=c.sibling;5!==c.tag&&6!==c.tag&&18!==c.tag;){if(c.flags&2)continue b;if(null===\nc.child||4===c.tag)continue b;else c.child.return=c,c=c.child}if(!(c.flags&2)){c=c.stateNode;break a}}d?gj(a,c,b):hj(a,c,b)}\nfunction gj(a,b,c){var d=a.tag,e=5===d||6===d;if(e)a=e?a.stateNode:a.stateNode.instance,b?8===c.nodeType?c.parentNode.insertBefore(a,b):c.insertBefore(a,b):(8===c.nodeType?(b=c.parentNode,b.insertBefore(a,c)):(b=c,b.appendChild(a)),c=c._reactRootContainer,null!==c&&void 0!==c||null!==b.onclick||(b.onclick=jf));else if(4!==d&&(a=a.child,null!==a))for(gj(a,b,c),a=a.sibling;null!==a;)gj(a,b,c),a=a.sibling}\nfunction hj(a,b,c){var d=a.tag,e=5===d||6===d;if(e)a=e?a.stateNode:a.stateNode.instance,b?c.insertBefore(a,b):c.appendChild(a);else if(4!==d&&(a=a.child,null!==a))for(hj(a,b,c),a=a.sibling;null!==a;)hj(a,b,c),a=a.sibling}\nfunction cj(a,b){for(var c=b,d=!1,e,f;;){if(!d){d=c.return;a:for(;;){if(null===d)throw Error(y(160));e=d.stateNode;switch(d.tag){case 5:f=!1;break a;case 3:e=e.containerInfo;f=!0;break a;case 4:e=e.containerInfo;f=!0;break a}d=d.return}d=!0}if(5===c.tag||6===c.tag){a:for(var g=a,h=c,k=h;;)if(bj(g,k),null!==k.child&&4!==k.tag)k.child.return=k,k=k.child;else{if(k===h)break a;for(;null===k.sibling;){if(null===k.return||k.return===h)break a;k=k.return}k.sibling.return=k.return;k=k.sibling}f?(g=e,h=c.stateNode,\n8===g.nodeType?g.parentNode.removeChild(h):g.removeChild(h)):e.removeChild(c.stateNode)}else if(4===c.tag){if(null!==c.child){e=c.stateNode.containerInfo;f=!0;c.child.return=c;c=c.child;continue}}else if(bj(a,c),null!==c.child){c.child.return=c;c=c.child;continue}if(c===b)break;for(;null===c.sibling;){if(null===c.return||c.return===b)return;c=c.return;4===c.tag&&(d=!1)}c.sibling.return=c.return;c=c.sibling}}\nfunction ij(a,b){switch(b.tag){case 0:case 11:case 14:case 15:case 22:var c=b.updateQueue;c=null!==c?c.lastEffect:null;if(null!==c){var d=c=c.next;do 3===(d.tag&3)&&(a=d.destroy,d.destroy=void 0,void 0!==a&&a()),d=d.next;while(d!==c)}return;case 1:return;case 5:c=b.stateNode;if(null!=c){d=b.memoizedProps;var e=null!==a?a.memoizedProps:d;a=b.type;var f=b.updateQueue;b.updateQueue=null;if(null!==f){c[xf]=d;\"input\"===a&&\"radio\"===d.type&&null!=d.name&&$a(c,d);wb(a,e);b=wb(a,d);for(e=0;ee&&(e=g);c&=~f}c=e;c=O()-c;c=(120>c?120:480>c?480:1080>c?1080:1920>c?1920:3E3>c?3E3:4320>\nc?4320:1960*nj(c/1960))-c;if(10 component higher in the tree to provide a loading indicator or placeholder to display.\")}5!==V&&(V=2);k=Mi(k,h);p=\ng;do{switch(p.tag){case 3:f=k;p.flags|=4096;b&=-b;p.lanes|=b;var J=Pi(p,f,b);Bg(p,J);break a;case 1:f=k;var K=p.type,Q=p.stateNode;if(0===(p.flags&64)&&(\"function\"===typeof K.getDerivedStateFromError||null!==Q&&\"function\"===typeof Q.componentDidCatch&&(null===Ti||!Ti.has(Q)))){p.flags|=4096;b&=-b;p.lanes|=b;var L=Si(p,f,b);Bg(p,L);break a}}p=p.return}while(null!==p)}Zj(c)}catch(va){b=va;Y===c&&null!==c&&(Y=c=c.return);continue}break}while(1)}\nfunction Pj(){var a=oj.current;oj.current=Gh;return null===a?Gh:a}function Tj(a,b){var c=X;X|=16;var d=Pj();U===a&&W===b||Qj(a,b);do try{ak();break}catch(e){Sj(a,e)}while(1);qg();X=c;oj.current=d;if(null!==Y)throw Error(y(261));U=null;W=0;return V}function ak(){for(;null!==Y;)bk(Y)}function Rj(){for(;null!==Y&&!Qf();)bk(Y)}function bk(a){var b=ck(a.alternate,a,qj);a.memoizedProps=a.pendingProps;null===b?Zj(a):Y=b;pj.current=null}\nfunction Zj(a){var b=a;do{var c=b.alternate;a=b.return;if(0===(b.flags&2048)){c=Gi(c,b,qj);if(null!==c){Y=c;return}c=b;if(24!==c.tag&&23!==c.tag||null===c.memoizedState||0!==(qj&1073741824)||0===(c.mode&4)){for(var d=0,e=c.child;null!==e;)d|=e.lanes|e.childLanes,e=e.sibling;c.childLanes=d}null!==a&&0===(a.flags&2048)&&(null===a.firstEffect&&(a.firstEffect=b.firstEffect),null!==b.lastEffect&&(null!==a.lastEffect&&(a.lastEffect.nextEffect=b.firstEffect),a.lastEffect=b.lastEffect),1g&&(h=g,g=J,J=h),h=Le(t,J),f=Le(t,g),h&&f&&(1!==v.rangeCount||v.anchorNode!==h.node||v.anchorOffset!==h.offset||v.focusNode!==f.node||v.focusOffset!==f.offset)&&(q=q.createRange(),q.setStart(h.node,h.offset),v.removeAllRanges(),J>g?(v.addRange(q),v.extend(f.node,f.offset)):(q.setEnd(f.node,f.offset),v.addRange(q))))));q=[];for(v=t;v=v.parentNode;)1===v.nodeType&&q.push({element:v,left:v.scrollLeft,top:v.scrollTop});\"function\"===typeof t.focus&&t.focus();for(t=\n0;tO()-jj?Qj(a,0):uj|=c);Mj(a,b)}function lj(a,b){var c=a.stateNode;null!==c&&c.delete(b);b=0;0===b&&(b=a.mode,0===(b&2)?b=1:0===(b&4)?b=99===eg()?1:2:(0===Gj&&(Gj=tj),b=Yc(62914560&~Gj),0===b&&(b=4194304)));c=Hg();a=Kj(a,b);null!==a&&($c(a,b,c),Mj(a,c))}var ck;\nck=function(a,b,c){var d=b.lanes;if(null!==a)if(a.memoizedProps!==b.pendingProps||N.current)ug=!0;else if(0!==(c&d))ug=0!==(a.flags&16384)?!0:!1;else{ug=!1;switch(b.tag){case 3:ri(b);sh();break;case 5:gh(b);break;case 1:Ff(b.type)&&Jf(b);break;case 4:eh(b,b.stateNode.containerInfo);break;case 10:d=b.memoizedProps.value;var e=b.type._context;I(mg,e._currentValue);e._currentValue=d;break;case 13:if(null!==b.memoizedState){if(0!==(c&b.child.childLanes))return ti(a,b,c);I(P,P.current&1);b=hi(a,b,c);return null!==\nb?b.sibling:null}I(P,P.current&1);break;case 19:d=0!==(c&b.childLanes);if(0!==(a.flags&64)){if(d)return Ai(a,b,c);b.flags|=64}e=b.memoizedState;null!==e&&(e.rendering=null,e.tail=null,e.lastEffect=null);I(P,P.current);if(d)break;else return null;case 23:case 24:return b.lanes=0,mi(a,b,c)}return hi(a,b,c)}else ug=!1;b.lanes=0;switch(b.tag){case 2:d=b.type;null!==a&&(a.alternate=null,b.alternate=null,b.flags|=2);a=b.pendingProps;e=Ef(b,M.current);tg(b,c);e=Ch(null,b,d,a,e,c);b.flags|=1;if(\"object\"===\ntypeof e&&null!==e&&\"function\"===typeof e.render&&void 0===e.$$typeof){b.tag=1;b.memoizedState=null;b.updateQueue=null;if(Ff(d)){var f=!0;Jf(b)}else f=!1;b.memoizedState=null!==e.state&&void 0!==e.state?e.state:null;xg(b);var g=d.getDerivedStateFromProps;\"function\"===typeof g&&Gg(b,d,g,a);e.updater=Kg;b.stateNode=e;e._reactInternals=b;Og(b,d,a,c);b=qi(null,b,d,!0,f,c)}else b.tag=0,fi(null,b,e,c),b=b.child;return b;case 16:e=b.elementType;a:{null!==a&&(a.alternate=null,b.alternate=null,b.flags|=2);\na=b.pendingProps;f=e._init;e=f(e._payload);b.type=e;f=b.tag=hk(e);a=lg(e,a);switch(f){case 0:b=li(null,b,e,a,c);break a;case 1:b=pi(null,b,e,a,c);break a;case 11:b=gi(null,b,e,a,c);break a;case 14:b=ii(null,b,e,lg(e.type,a),d,c);break a}throw Error(y(306,e,\"\"));}return b;case 0:return d=b.type,e=b.pendingProps,e=b.elementType===d?e:lg(d,e),li(a,b,d,e,c);case 1:return d=b.type,e=b.pendingProps,e=b.elementType===d?e:lg(d,e),pi(a,b,d,e,c);case 3:ri(b);d=b.updateQueue;if(null===a||null===d)throw Error(y(282));\nd=b.pendingProps;e=b.memoizedState;e=null!==e?e.element:null;yg(a,b);Cg(b,d,null,c);d=b.memoizedState.element;if(d===e)sh(),b=hi(a,b,c);else{e=b.stateNode;if(f=e.hydrate)kh=rf(b.stateNode.containerInfo.firstChild),jh=b,f=lh=!0;if(f){a=e.mutableSourceEagerHydrationData;if(null!=a)for(e=0;e [\"/\", \"test\", \"\\d+\", undefined, \"?\", undefined]\n // \"/route(\\\\d+)\" => [undefined, undefined, undefined, \"\\d+\", undefined, undefined]\n // \"/*\" => [\"/\", undefined, undefined, undefined, undefined, \"*\"]\n '([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))([+*?])?|(\\\\*))'\n].join('|'), 'g')\n\n/**\n * Parse a string for the raw tokens.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!Array}\n */\nfunction parse (str, options) {\n var tokens = []\n var key = 0\n var index = 0\n var path = ''\n var defaultDelimiter = options && options.delimiter || '/'\n var res\n\n while ((res = PATH_REGEXP.exec(str)) != null) {\n var m = res[0]\n var escaped = res[1]\n var offset = res.index\n path += str.slice(index, offset)\n index = offset + m.length\n\n // Ignore already escaped sequences.\n if (escaped) {\n path += escaped[1]\n continue\n }\n\n var next = str[index]\n var prefix = res[2]\n var name = res[3]\n var capture = res[4]\n var group = res[5]\n var modifier = res[6]\n var asterisk = res[7]\n\n // Push the current path onto the tokens.\n if (path) {\n tokens.push(path)\n path = ''\n }\n\n var partial = prefix != null && next != null && next !== prefix\n var repeat = modifier === '+' || modifier === '*'\n var optional = modifier === '?' || modifier === '*'\n var delimiter = res[2] || defaultDelimiter\n var pattern = capture || group\n\n tokens.push({\n name: name || key++,\n prefix: prefix || '',\n delimiter: delimiter,\n optional: optional,\n repeat: repeat,\n partial: partial,\n asterisk: !!asterisk,\n pattern: pattern ? escapeGroup(pattern) : (asterisk ? '.*' : '[^' + escapeString(delimiter) + ']+?')\n })\n }\n\n // Match any characters still remaining.\n if (index < str.length) {\n path += str.substr(index)\n }\n\n // If the path exists, push it onto the end.\n if (path) {\n tokens.push(path)\n }\n\n return tokens\n}\n\n/**\n * Compile a string to a template function for the path.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!function(Object=, Object=)}\n */\nfunction compile (str, options) {\n return tokensToFunction(parse(str, options), options)\n}\n\n/**\n * Prettier encoding of URI path segments.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeURIComponentPretty (str) {\n return encodeURI(str).replace(/[\\/?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Encode the asterisk parameter. Similar to `pretty`, but allows slashes.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeAsterisk (str) {\n return encodeURI(str).replace(/[?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Expose a method for transforming tokens into the path function.\n */\nfunction tokensToFunction (tokens, options) {\n // Compile all the tokens into regexps.\n var matches = new Array(tokens.length)\n\n // Compile all the patterns before compilation.\n for (var i = 0; i < tokens.length; i++) {\n if (typeof tokens[i] === 'object') {\n matches[i] = new RegExp('^(?:' + tokens[i].pattern + ')$', flags(options))\n }\n }\n\n return function (obj, opts) {\n var path = ''\n var data = obj || {}\n var options = opts || {}\n var encode = options.pretty ? encodeURIComponentPretty : encodeURIComponent\n\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i]\n\n if (typeof token === 'string') {\n path += token\n\n continue\n }\n\n var value = data[token.name]\n var segment\n\n if (value == null) {\n if (token.optional) {\n // Prepend partial segment prefixes.\n if (token.partial) {\n path += token.prefix\n }\n\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to be defined')\n }\n }\n\n if (isarray(value)) {\n if (!token.repeat) {\n throw new TypeError('Expected \"' + token.name + '\" to not repeat, but received `' + JSON.stringify(value) + '`')\n }\n\n if (value.length === 0) {\n if (token.optional) {\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to not be empty')\n }\n }\n\n for (var j = 0; j < value.length; j++) {\n segment = encode(value[j])\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected all \"' + token.name + '\" to match \"' + token.pattern + '\", but received `' + JSON.stringify(segment) + '`')\n }\n\n path += (j === 0 ? token.prefix : token.delimiter) + segment\n }\n\n continue\n }\n\n segment = token.asterisk ? encodeAsterisk(value) : encode(value)\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected \"' + token.name + '\" to match \"' + token.pattern + '\", but received \"' + segment + '\"')\n }\n\n path += token.prefix + segment\n }\n\n return path\n }\n}\n\n/**\n * Escape a regular expression string.\n *\n * @param {string} str\n * @return {string}\n */\nfunction escapeString (str) {\n return str.replace(/([.+*?=^!:${}()[\\]|\\/\\\\])/g, '\\\\$1')\n}\n\n/**\n * Escape the capturing group by escaping special characters and meaning.\n *\n * @param {string} group\n * @return {string}\n */\nfunction escapeGroup (group) {\n return group.replace(/([=!:$\\/()])/g, '\\\\$1')\n}\n\n/**\n * Attach the keys as a property of the regexp.\n *\n * @param {!RegExp} re\n * @param {Array} keys\n * @return {!RegExp}\n */\nfunction attachKeys (re, keys) {\n re.keys = keys\n return re\n}\n\n/**\n * Get the flags for a regexp from the options.\n *\n * @param {Object} options\n * @return {string}\n */\nfunction flags (options) {\n return options && options.sensitive ? '' : 'i'\n}\n\n/**\n * Pull out keys from a regexp.\n *\n * @param {!RegExp} path\n * @param {!Array} keys\n * @return {!RegExp}\n */\nfunction regexpToRegexp (path, keys) {\n // Use a negative lookahead to match only capturing groups.\n var groups = path.source.match(/\\((?!\\?)/g)\n\n if (groups) {\n for (var i = 0; i < groups.length; i++) {\n keys.push({\n name: i,\n prefix: null,\n delimiter: null,\n optional: false,\n repeat: false,\n partial: false,\n asterisk: false,\n pattern: null\n })\n }\n }\n\n return attachKeys(path, keys)\n}\n\n/**\n * Transform an array into a regexp.\n *\n * @param {!Array} path\n * @param {Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction arrayToRegexp (path, keys, options) {\n var parts = []\n\n for (var i = 0; i < path.length; i++) {\n parts.push(pathToRegexp(path[i], keys, options).source)\n }\n\n var regexp = new RegExp('(?:' + parts.join('|') + ')', flags(options))\n\n return attachKeys(regexp, keys)\n}\n\n/**\n * Create a path regexp from string input.\n *\n * @param {string} path\n * @param {!Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction stringToRegexp (path, keys, options) {\n return tokensToRegExp(parse(path, options), keys, options)\n}\n\n/**\n * Expose a function for taking tokens and returning a RegExp.\n *\n * @param {!Array} tokens\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction tokensToRegExp (tokens, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options)\n keys = []\n }\n\n options = options || {}\n\n var strict = options.strict\n var end = options.end !== false\n var route = ''\n\n // Iterate over the tokens and create our regexp string.\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i]\n\n if (typeof token === 'string') {\n route += escapeString(token)\n } else {\n var prefix = escapeString(token.prefix)\n var capture = '(?:' + token.pattern + ')'\n\n keys.push(token)\n\n if (token.repeat) {\n capture += '(?:' + prefix + capture + ')*'\n }\n\n if (token.optional) {\n if (!token.partial) {\n capture = '(?:' + prefix + '(' + capture + '))?'\n } else {\n capture = prefix + '(' + capture + ')?'\n }\n } else {\n capture = prefix + '(' + capture + ')'\n }\n\n route += capture\n }\n }\n\n var delimiter = escapeString(options.delimiter || '/')\n var endsWithDelimiter = route.slice(-delimiter.length) === delimiter\n\n // In non-strict mode we allow a slash at the end of match. If the path to\n // match already ends with a slash, we remove it for consistency. The slash\n // is valid at the end of a path match, not in the middle. This is important\n // in non-ending mode, where \"/test/\" shouldn't match \"/test//route\".\n if (!strict) {\n route = (endsWithDelimiter ? route.slice(0, -delimiter.length) : route) + '(?:' + delimiter + '(?=$))?'\n }\n\n if (end) {\n route += '$'\n } else {\n // In non-ending mode, we need the capturing groups to match as much as\n // possible by using a positive lookahead to the end or next path segment.\n route += strict && endsWithDelimiter ? '' : '(?=' + delimiter + '|$)'\n }\n\n return attachKeys(new RegExp('^' + route, flags(options)), keys)\n}\n\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n *\n * @param {(string|RegExp|Array)} path\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction pathToRegexp (path, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options)\n keys = []\n }\n\n options = options || {}\n\n if (path instanceof RegExp) {\n return regexpToRegexp(path, /** @type {!Array} */ (keys))\n }\n\n if (isarray(path)) {\n return arrayToRegexp(/** @type {!Array} */ (path), /** @type {!Array} */ (keys), options)\n }\n\n return stringToRegexp(/** @type {string} */ (path), /** @type {!Array} */ (keys), options)\n}\n","/** @license React v16.13.1\n * react-is.production.min.js\n *\n * Copyright (c) Meta Platforms and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';var b=\"function\"===typeof Symbol&&Symbol.for,c=b?Symbol.for(\"react.element\"):60103,d=b?Symbol.for(\"react.portal\"):60106,e=b?Symbol.for(\"react.fragment\"):60107,f=b?Symbol.for(\"react.strict_mode\"):60108,g=b?Symbol.for(\"react.profiler\"):60114,h=b?Symbol.for(\"react.provider\"):60109,k=b?Symbol.for(\"react.context\"):60110,l=b?Symbol.for(\"react.async_mode\"):60111,m=b?Symbol.for(\"react.concurrent_mode\"):60111,n=b?Symbol.for(\"react.forward_ref\"):60112,p=b?Symbol.for(\"react.suspense\"):60113,q=b?\nSymbol.for(\"react.suspense_list\"):60120,r=b?Symbol.for(\"react.memo\"):60115,t=b?Symbol.for(\"react.lazy\"):60116,v=b?Symbol.for(\"react.block\"):60121,w=b?Symbol.for(\"react.fundamental\"):60117,x=b?Symbol.for(\"react.responder\"):60118,y=b?Symbol.for(\"react.scope\"):60119;\nfunction z(a){if(\"object\"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c:switch(a=a.type,a){case l:case m:case e:case g:case f:case p:return a;default:switch(a=a&&a.$$typeof,a){case k:case n:case t:case r:case h:return a;default:return u}}case d:return u}}}function A(a){return z(a)===m}exports.AsyncMode=l;exports.ConcurrentMode=m;exports.ContextConsumer=k;exports.ContextProvider=h;exports.Element=c;exports.ForwardRef=n;exports.Fragment=e;exports.Lazy=t;exports.Memo=r;exports.Portal=d;\nexports.Profiler=g;exports.StrictMode=f;exports.Suspense=p;exports.isAsyncMode=function(a){return A(a)||z(a)===l};exports.isConcurrentMode=A;exports.isContextConsumer=function(a){return z(a)===k};exports.isContextProvider=function(a){return z(a)===h};exports.isElement=function(a){return\"object\"===typeof a&&null!==a&&a.$$typeof===c};exports.isForwardRef=function(a){return z(a)===n};exports.isFragment=function(a){return z(a)===e};exports.isLazy=function(a){return z(a)===t};\nexports.isMemo=function(a){return z(a)===r};exports.isPortal=function(a){return z(a)===d};exports.isProfiler=function(a){return z(a)===g};exports.isStrictMode=function(a){return z(a)===f};exports.isSuspense=function(a){return z(a)===p};\nexports.isValidElementType=function(a){return\"string\"===typeof a||\"function\"===typeof a||a===e||a===m||a===g||a===f||a===p||a===q||\"object\"===typeof a&&null!==a&&(a.$$typeof===t||a.$$typeof===r||a.$$typeof===h||a.$$typeof===k||a.$$typeof===n||a.$$typeof===w||a.$$typeof===x||a.$$typeof===y||a.$$typeof===v)};exports.typeOf=z;\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-is.production.min.js');\n} else {\n module.exports = require('./cjs/react-is.development.js');\n}\n","\"use strict\";\n\nexports.__esModule = true;\nexports.default = void 0;\n\nvar PropTypes = _interopRequireWildcard(require(\"prop-types\"));\n\nvar _addClass = _interopRequireDefault(require(\"dom-helpers/class/addClass\"));\n\nvar _removeClass = _interopRequireDefault(require(\"dom-helpers/class/removeClass\"));\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _Transition = _interopRequireDefault(require(\"./Transition\"));\n\nvar _PropTypes = require(\"./utils/PropTypes\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }\n\nvar addClass = function addClass(node, classes) {\n return node && classes && classes.split(' ').forEach(function (c) {\n return (0, _addClass.default)(node, c);\n });\n};\n\nvar removeClass = function removeClass(node, classes) {\n return node && classes && classes.split(' ').forEach(function (c) {\n return (0, _removeClass.default)(node, c);\n });\n};\n/**\n * A transition component inspired by the excellent\n * [ng-animate](http://www.nganimate.org/) library, you should use it if you're\n * using CSS transitions or animations. It's built upon the\n * [`Transition`](https://reactcommunity.org/react-transition-group/transition)\n * component, so it inherits all of its props.\n *\n * `CSSTransition` applies a pair of class names during the `appear`, `enter`,\n * and `exit` states of the transition. The first class is applied and then a\n * second `*-active` class in order to activate the CSSS transition. After the\n * transition, matching `*-done` class names are applied to persist the\n * transition state.\n *\n * ```jsx\n * function App() {\n * const [inProp, setInProp] = useState(false);\n * return (\n *
\n * \n *
\n * {\"I'll receive my-node-* classes\"}\n *
\n *
\n * \n *
\n * );\n * }\n * ```\n *\n * When the `in` prop is set to `true`, the child component will first receive\n * the class `example-enter`, then the `example-enter-active` will be added in\n * the next tick. `CSSTransition` [forces a\n * reflow](https://github.com/reactjs/react-transition-group/blob/5007303e729a74be66a21c3e2205e4916821524b/src/CSSTransition.js#L208-L215)\n * between before adding the `example-enter-active`. This is an important trick\n * because it allows us to transition between `example-enter` and\n * `example-enter-active` even though they were added immediately one after\n * another. Most notably, this is what makes it possible for us to animate\n * _appearance_.\n *\n * ```css\n * .my-node-enter {\n * opacity: 0;\n * }\n * .my-node-enter-active {\n * opacity: 1;\n * transition: opacity 200ms;\n * }\n * .my-node-exit {\n * opacity: 1;\n * }\n * .my-node-exit-active {\n * opacity: 0;\n * transition: opacity: 200ms;\n * }\n * ```\n *\n * `*-active` classes represent which styles you want to animate **to**.\n */\n\n\nvar CSSTransition =\n/*#__PURE__*/\nfunction (_React$Component) {\n _inheritsLoose(CSSTransition, _React$Component);\n\n function CSSTransition() {\n var _this;\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;\n\n _this.onEnter = function (node, appearing) {\n var _this$getClassNames = _this.getClassNames(appearing ? 'appear' : 'enter'),\n className = _this$getClassNames.className;\n\n _this.removeClasses(node, 'exit');\n\n addClass(node, className);\n\n if (_this.props.onEnter) {\n _this.props.onEnter(node, appearing);\n }\n };\n\n _this.onEntering = function (node, appearing) {\n var _this$getClassNames2 = _this.getClassNames(appearing ? 'appear' : 'enter'),\n activeClassName = _this$getClassNames2.activeClassName;\n\n _this.reflowAndAddClass(node, activeClassName);\n\n if (_this.props.onEntering) {\n _this.props.onEntering(node, appearing);\n }\n };\n\n _this.onEntered = function (node, appearing) {\n var appearClassName = _this.getClassNames('appear').doneClassName;\n\n var enterClassName = _this.getClassNames('enter').doneClassName;\n\n var doneClassName = appearing ? appearClassName + \" \" + enterClassName : enterClassName;\n\n _this.removeClasses(node, appearing ? 'appear' : 'enter');\n\n addClass(node, doneClassName);\n\n if (_this.props.onEntered) {\n _this.props.onEntered(node, appearing);\n }\n };\n\n _this.onExit = function (node) {\n var _this$getClassNames3 = _this.getClassNames('exit'),\n className = _this$getClassNames3.className;\n\n _this.removeClasses(node, 'appear');\n\n _this.removeClasses(node, 'enter');\n\n addClass(node, className);\n\n if (_this.props.onExit) {\n _this.props.onExit(node);\n }\n };\n\n _this.onExiting = function (node) {\n var _this$getClassNames4 = _this.getClassNames('exit'),\n activeClassName = _this$getClassNames4.activeClassName;\n\n _this.reflowAndAddClass(node, activeClassName);\n\n if (_this.props.onExiting) {\n _this.props.onExiting(node);\n }\n };\n\n _this.onExited = function (node) {\n var _this$getClassNames5 = _this.getClassNames('exit'),\n doneClassName = _this$getClassNames5.doneClassName;\n\n _this.removeClasses(node, 'exit');\n\n addClass(node, doneClassName);\n\n if (_this.props.onExited) {\n _this.props.onExited(node);\n }\n };\n\n _this.getClassNames = function (type) {\n var classNames = _this.props.classNames;\n var isStringClassNames = typeof classNames === 'string';\n var prefix = isStringClassNames && classNames ? classNames + '-' : '';\n var className = isStringClassNames ? prefix + type : classNames[type];\n var activeClassName = isStringClassNames ? className + '-active' : classNames[type + 'Active'];\n var doneClassName = isStringClassNames ? className + '-done' : classNames[type + 'Done'];\n return {\n className: className,\n activeClassName: activeClassName,\n doneClassName: doneClassName\n };\n };\n\n return _this;\n }\n\n var _proto = CSSTransition.prototype;\n\n _proto.removeClasses = function removeClasses(node, type) {\n var _this$getClassNames6 = this.getClassNames(type),\n className = _this$getClassNames6.className,\n activeClassName = _this$getClassNames6.activeClassName,\n doneClassName = _this$getClassNames6.doneClassName;\n\n className && removeClass(node, className);\n activeClassName && removeClass(node, activeClassName);\n doneClassName && removeClass(node, doneClassName);\n };\n\n _proto.reflowAndAddClass = function reflowAndAddClass(node, className) {\n // This is for to force a repaint,\n // which is necessary in order to transition styles when adding a class name.\n if (className) {\n /* eslint-disable no-unused-expressions */\n node && node.scrollTop;\n /* eslint-enable no-unused-expressions */\n\n addClass(node, className);\n }\n };\n\n _proto.render = function render() {\n var props = _extends({}, this.props);\n\n delete props.classNames;\n return _react.default.createElement(_Transition.default, _extends({}, props, {\n onEnter: this.onEnter,\n onEntered: this.onEntered,\n onEntering: this.onEntering,\n onExit: this.onExit,\n onExiting: this.onExiting,\n onExited: this.onExited\n }));\n };\n\n return CSSTransition;\n}(_react.default.Component);\n\nCSSTransition.defaultProps = {\n classNames: ''\n};\nCSSTransition.propTypes = process.env.NODE_ENV !== \"production\" ? _extends({}, _Transition.default.propTypes, {\n /**\n * The animation classNames applied to the component as it enters, exits or\n * has finished the transition. A single name can be provided and it will be\n * suffixed for each stage: e.g.\n *\n * `classNames=\"fade\"` applies `fade-enter`, `fade-enter-active`,\n * `fade-enter-done`, `fade-exit`, `fade-exit-active`, `fade-exit-done`,\n * `fade-appear`, `fade-appear-active`, and `fade-appear-done`.\n *\n * **Note**: `fade-appear-done` and `fade-enter-done` will _both_ be applied.\n * This allows you to define different behavior for when appearing is done and\n * when regular entering is done, using selectors like\n * `.fade-enter-done:not(.fade-appear-done)`. For example, you could apply an\n * epic entrance animation when element first appears in the DOM using\n * [Animate.css](https://daneden.github.io/animate.css/). Otherwise you can\n * simply use `fade-enter-done` for defining both cases.\n *\n * Each individual classNames can also be specified independently like:\n *\n * ```js\n * classNames={{\n * appear: 'my-appear',\n * appearActive: 'my-active-appear',\n * appearDone: 'my-done-appear',\n * enter: 'my-enter',\n * enterActive: 'my-active-enter',\n * enterDone: 'my-done-enter',\n * exit: 'my-exit',\n * exitActive: 'my-active-exit',\n * exitDone: 'my-done-exit',\n * }}\n * ```\n *\n * If you want to set these classes using CSS Modules:\n *\n * ```js\n * import styles from './styles.css';\n * ```\n *\n * you might want to use camelCase in your CSS file, that way could simply\n * spread them instead of listing them one by one:\n *\n * ```js\n * classNames={{ ...styles }}\n * ```\n *\n * @type {string | {\n * appear?: string,\n * appearActive?: string,\n * appearDone?: string,\n * enter?: string,\n * enterActive?: string,\n * enterDone?: string,\n * exit?: string,\n * exitActive?: string,\n * exitDone?: string,\n * }}\n */\n classNames: _PropTypes.classNamesShape,\n\n /**\n * A `` callback fired immediately after the 'enter' or 'appear' class is\n * applied.\n *\n * @type Function(node: HtmlElement, isAppearing: bool)\n */\n onEnter: PropTypes.func,\n\n /**\n * A `` callback fired immediately after the 'enter-active' or\n * 'appear-active' class is applied.\n *\n * @type Function(node: HtmlElement, isAppearing: bool)\n */\n onEntering: PropTypes.func,\n\n /**\n * A `` callback fired immediately after the 'enter' or\n * 'appear' classes are **removed** and the `done` class is added to the DOM node.\n *\n * @type Function(node: HtmlElement, isAppearing: bool)\n */\n onEntered: PropTypes.func,\n\n /**\n * A `` callback fired immediately after the 'exit' class is\n * applied.\n *\n * @type Function(node: HtmlElement)\n */\n onExit: PropTypes.func,\n\n /**\n * A `` callback fired immediately after the 'exit-active' is applied.\n *\n * @type Function(node: HtmlElement)\n */\n onExiting: PropTypes.func,\n\n /**\n * A `` callback fired immediately after the 'exit' classes\n * are **removed** and the `exit-done` class is added to the DOM node.\n *\n * @type Function(node: HtmlElement)\n */\n onExited: PropTypes.func\n}) : {};\nvar _default = CSSTransition;\nexports.default = _default;\nmodule.exports = exports[\"default\"];","\"use strict\";\n\nexports.__esModule = true;\nexports.default = void 0;\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _reactDom = require(\"react-dom\");\n\nvar _TransitionGroup = _interopRequireDefault(require(\"./TransitionGroup\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }\n\n/**\n * The `` component is a specialized `Transition` component\n * that animates between two children.\n *\n * ```jsx\n * \n *
I appear first
\n *
I replace the above
\n *
\n * ```\n */\nvar ReplaceTransition =\n/*#__PURE__*/\nfunction (_React$Component) {\n _inheritsLoose(ReplaceTransition, _React$Component);\n\n function ReplaceTransition() {\n var _this;\n\n for (var _len = arguments.length, _args = new Array(_len), _key = 0; _key < _len; _key++) {\n _args[_key] = arguments[_key];\n }\n\n _this = _React$Component.call.apply(_React$Component, [this].concat(_args)) || this;\n\n _this.handleEnter = function () {\n for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n args[_key2] = arguments[_key2];\n }\n\n return _this.handleLifecycle('onEnter', 0, args);\n };\n\n _this.handleEntering = function () {\n for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {\n args[_key3] = arguments[_key3];\n }\n\n return _this.handleLifecycle('onEntering', 0, args);\n };\n\n _this.handleEntered = function () {\n for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {\n args[_key4] = arguments[_key4];\n }\n\n return _this.handleLifecycle('onEntered', 0, args);\n };\n\n _this.handleExit = function () {\n for (var _len5 = arguments.length, args = new Array(_len5), _key5 = 0; _key5 < _len5; _key5++) {\n args[_key5] = arguments[_key5];\n }\n\n return _this.handleLifecycle('onExit', 1, args);\n };\n\n _this.handleExiting = function () {\n for (var _len6 = arguments.length, args = new Array(_len6), _key6 = 0; _key6 < _len6; _key6++) {\n args[_key6] = arguments[_key6];\n }\n\n return _this.handleLifecycle('onExiting', 1, args);\n };\n\n _this.handleExited = function () {\n for (var _len7 = arguments.length, args = new Array(_len7), _key7 = 0; _key7 < _len7; _key7++) {\n args[_key7] = arguments[_key7];\n }\n\n return _this.handleLifecycle('onExited', 1, args);\n };\n\n return _this;\n }\n\n var _proto = ReplaceTransition.prototype;\n\n _proto.handleLifecycle = function handleLifecycle(handler, idx, originalArgs) {\n var _child$props;\n\n var children = this.props.children;\n\n var child = _react.default.Children.toArray(children)[idx];\n\n if (child.props[handler]) (_child$props = child.props)[handler].apply(_child$props, originalArgs);\n if (this.props[handler]) this.props[handler]((0, _reactDom.findDOMNode)(this));\n };\n\n _proto.render = function render() {\n var _this$props = this.props,\n children = _this$props.children,\n inProp = _this$props.in,\n props = _objectWithoutPropertiesLoose(_this$props, [\"children\", \"in\"]);\n\n var _React$Children$toArr = _react.default.Children.toArray(children),\n first = _React$Children$toArr[0],\n second = _React$Children$toArr[1];\n\n delete props.onEnter;\n delete props.onEntering;\n delete props.onEntered;\n delete props.onExit;\n delete props.onExiting;\n delete props.onExited;\n return _react.default.createElement(_TransitionGroup.default, props, inProp ? _react.default.cloneElement(first, {\n key: 'first',\n onEnter: this.handleEnter,\n onEntering: this.handleEntering,\n onEntered: this.handleEntered\n }) : _react.default.cloneElement(second, {\n key: 'second',\n onEnter: this.handleExit,\n onEntering: this.handleExiting,\n onEntered: this.handleExited\n }));\n };\n\n return ReplaceTransition;\n}(_react.default.Component);\n\nReplaceTransition.propTypes = process.env.NODE_ENV !== \"production\" ? {\n in: _propTypes.default.bool.isRequired,\n children: function children(props, propName) {\n if (_react.default.Children.count(props[propName]) !== 2) return new Error(\"\\\"\" + propName + \"\\\" must be exactly two transition components.\");\n return null;\n }\n} : {};\nvar _default = ReplaceTransition;\nexports.default = _default;\nmodule.exports = exports[\"default\"];","\"use strict\";\n\nexports.__esModule = true;\nexports.default = exports.EXITING = exports.ENTERED = exports.ENTERING = exports.EXITED = exports.UNMOUNTED = void 0;\n\nvar PropTypes = _interopRequireWildcard(require(\"prop-types\"));\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _reactDom = _interopRequireDefault(require(\"react-dom\"));\n\nvar _reactLifecyclesCompat = require(\"react-lifecycles-compat\");\n\nvar _PropTypes = require(\"./utils/PropTypes\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }\n\nvar UNMOUNTED = 'unmounted';\nexports.UNMOUNTED = UNMOUNTED;\nvar EXITED = 'exited';\nexports.EXITED = EXITED;\nvar ENTERING = 'entering';\nexports.ENTERING = ENTERING;\nvar ENTERED = 'entered';\nexports.ENTERED = ENTERED;\nvar EXITING = 'exiting';\n/**\n * The Transition component lets you describe a transition from one component\n * state to another _over time_ with a simple declarative API. Most commonly\n * it's used to animate the mounting and unmounting of a component, but can also\n * be used to describe in-place transition states as well.\n *\n * ---\n *\n * **Note**: `Transition` is a platform-agnostic base component. If you're using\n * transitions in CSS, you'll probably want to use\n * [`CSSTransition`](https://reactcommunity.org/react-transition-group/css-transition)\n * instead. It inherits all the features of `Transition`, but contains\n * additional features necessary to play nice with CSS transitions (hence the\n * name of the component).\n *\n * ---\n *\n * By default the `Transition` component does not alter the behavior of the\n * component it renders, it only tracks \"enter\" and \"exit\" states for the\n * components. It's up to you to give meaning and effect to those states. For\n * example we can add styles to a component when it enters or exits:\n *\n * ```jsx\n * import { Transition } from 'react-transition-group';\n *\n * const duration = 300;\n *\n * const defaultStyle = {\n * transition: `opacity ${duration}ms ease-in-out`,\n * opacity: 0,\n * }\n *\n * const transitionStyles = {\n * entering: { opacity: 0 },\n * entered: { opacity: 1 },\n * };\n *\n * const Fade = ({ in: inProp }) => (\n * \n * {state => (\n *
\n * I'm a fade Transition!\n *
\n * )}\n *
\n * );\n * ```\n *\n * There are 4 main states a Transition can be in:\n * - `'entering'`\n * - `'entered'`\n * - `'exiting'`\n * - `'exited'`\n *\n * Transition state is toggled via the `in` prop. When `true` the component\n * begins the \"Enter\" stage. During this stage, the component will shift from\n * its current transition state, to `'entering'` for the duration of the\n * transition and then to the `'entered'` stage once it's complete. Let's take\n * the following example (we'll use the\n * [useState](https://reactjs.org/docs/hooks-reference.html#usestate) hook):\n *\n * ```jsx\n * function App() {\n * const [inProp, setInProp] = useState(false);\n * return (\n *
\n * \n * {state => (\n * // ...\n * )}\n * \n * \n *
\n * );\n * }\n * ```\n *\n * When the button is clicked the component will shift to the `'entering'` state\n * and stay there for 500ms (the value of `timeout`) before it finally switches\n * to `'entered'`.\n *\n * When `in` is `false` the same thing happens except the state moves from\n * `'exiting'` to `'exited'`.\n */\n\nexports.EXITING = EXITING;\n\nvar Transition =\n/*#__PURE__*/\nfunction (_React$Component) {\n _inheritsLoose(Transition, _React$Component);\n\n function Transition(props, context) {\n var _this;\n\n _this = _React$Component.call(this, props, context) || this;\n var parentGroup = context.transitionGroup; // In the context of a TransitionGroup all enters are really appears\n\n var appear = parentGroup && !parentGroup.isMounting ? props.enter : props.appear;\n var initialStatus;\n _this.appearStatus = null;\n\n if (props.in) {\n if (appear) {\n initialStatus = EXITED;\n _this.appearStatus = ENTERING;\n } else {\n initialStatus = ENTERED;\n }\n } else {\n if (props.unmountOnExit || props.mountOnEnter) {\n initialStatus = UNMOUNTED;\n } else {\n initialStatus = EXITED;\n }\n }\n\n _this.state = {\n status: initialStatus\n };\n _this.nextCallback = null;\n return _this;\n }\n\n var _proto = Transition.prototype;\n\n _proto.getChildContext = function getChildContext() {\n return {\n transitionGroup: null // allows for nested Transitions\n\n };\n };\n\n Transition.getDerivedStateFromProps = function getDerivedStateFromProps(_ref, prevState) {\n var nextIn = _ref.in;\n\n if (nextIn && prevState.status === UNMOUNTED) {\n return {\n status: EXITED\n };\n }\n\n return null;\n }; // getSnapshotBeforeUpdate(prevProps) {\n // let nextStatus = null\n // if (prevProps !== this.props) {\n // const { status } = this.state\n // if (this.props.in) {\n // if (status !== ENTERING && status !== ENTERED) {\n // nextStatus = ENTERING\n // }\n // } else {\n // if (status === ENTERING || status === ENTERED) {\n // nextStatus = EXITING\n // }\n // }\n // }\n // return { nextStatus }\n // }\n\n\n _proto.componentDidMount = function componentDidMount() {\n this.updateStatus(true, this.appearStatus);\n };\n\n _proto.componentDidUpdate = function componentDidUpdate(prevProps) {\n var nextStatus = null;\n\n if (prevProps !== this.props) {\n var status = this.state.status;\n\n if (this.props.in) {\n if (status !== ENTERING && status !== ENTERED) {\n nextStatus = ENTERING;\n }\n } else {\n if (status === ENTERING || status === ENTERED) {\n nextStatus = EXITING;\n }\n }\n }\n\n this.updateStatus(false, nextStatus);\n };\n\n _proto.componentWillUnmount = function componentWillUnmount() {\n this.cancelNextCallback();\n };\n\n _proto.getTimeouts = function getTimeouts() {\n var timeout = this.props.timeout;\n var exit, enter, appear;\n exit = enter = appear = timeout;\n\n if (timeout != null && typeof timeout !== 'number') {\n exit = timeout.exit;\n enter = timeout.enter; // TODO: remove fallback for next major\n\n appear = timeout.appear !== undefined ? timeout.appear : enter;\n }\n\n return {\n exit: exit,\n enter: enter,\n appear: appear\n };\n };\n\n _proto.updateStatus = function updateStatus(mounting, nextStatus) {\n if (mounting === void 0) {\n mounting = false;\n }\n\n if (nextStatus !== null) {\n // nextStatus will always be ENTERING or EXITING.\n this.cancelNextCallback();\n\n var node = _reactDom.default.findDOMNode(this);\n\n if (nextStatus === ENTERING) {\n this.performEnter(node, mounting);\n } else {\n this.performExit(node);\n }\n } else if (this.props.unmountOnExit && this.state.status === EXITED) {\n this.setState({\n status: UNMOUNTED\n });\n }\n };\n\n _proto.performEnter = function performEnter(node, mounting) {\n var _this2 = this;\n\n var enter = this.props.enter;\n var appearing = this.context.transitionGroup ? this.context.transitionGroup.isMounting : mounting;\n var timeouts = this.getTimeouts();\n var enterTimeout = appearing ? timeouts.appear : timeouts.enter; // no enter animation skip right to ENTERED\n // if we are mounting and running this it means appear _must_ be set\n\n if (!mounting && !enter) {\n this.safeSetState({\n status: ENTERED\n }, function () {\n _this2.props.onEntered(node);\n });\n return;\n }\n\n this.props.onEnter(node, appearing);\n this.safeSetState({\n status: ENTERING\n }, function () {\n _this2.props.onEntering(node, appearing);\n\n _this2.onTransitionEnd(node, enterTimeout, function () {\n _this2.safeSetState({\n status: ENTERED\n }, function () {\n _this2.props.onEntered(node, appearing);\n });\n });\n });\n };\n\n _proto.performExit = function performExit(node) {\n var _this3 = this;\n\n var exit = this.props.exit;\n var timeouts = this.getTimeouts(); // no exit animation skip right to EXITED\n\n if (!exit) {\n this.safeSetState({\n status: EXITED\n }, function () {\n _this3.props.onExited(node);\n });\n return;\n }\n\n this.props.onExit(node);\n this.safeSetState({\n status: EXITING\n }, function () {\n _this3.props.onExiting(node);\n\n _this3.onTransitionEnd(node, timeouts.exit, function () {\n _this3.safeSetState({\n status: EXITED\n }, function () {\n _this3.props.onExited(node);\n });\n });\n });\n };\n\n _proto.cancelNextCallback = function cancelNextCallback() {\n if (this.nextCallback !== null) {\n this.nextCallback.cancel();\n this.nextCallback = null;\n }\n };\n\n _proto.safeSetState = function safeSetState(nextState, callback) {\n // This shouldn't be necessary, but there are weird race conditions with\n // setState callbacks and unmounting in testing, so always make sure that\n // we can cancel any pending setState callbacks after we unmount.\n callback = this.setNextCallback(callback);\n this.setState(nextState, callback);\n };\n\n _proto.setNextCallback = function setNextCallback(callback) {\n var _this4 = this;\n\n var active = true;\n\n this.nextCallback = function (event) {\n if (active) {\n active = false;\n _this4.nextCallback = null;\n callback(event);\n }\n };\n\n this.nextCallback.cancel = function () {\n active = false;\n };\n\n return this.nextCallback;\n };\n\n _proto.onTransitionEnd = function onTransitionEnd(node, timeout, handler) {\n this.setNextCallback(handler);\n var doesNotHaveTimeoutOrListener = timeout == null && !this.props.addEndListener;\n\n if (!node || doesNotHaveTimeoutOrListener) {\n setTimeout(this.nextCallback, 0);\n return;\n }\n\n if (this.props.addEndListener) {\n this.props.addEndListener(node, this.nextCallback);\n }\n\n if (timeout != null) {\n setTimeout(this.nextCallback, timeout);\n }\n };\n\n _proto.render = function render() {\n var status = this.state.status;\n\n if (status === UNMOUNTED) {\n return null;\n }\n\n var _this$props = this.props,\n children = _this$props.children,\n childProps = _objectWithoutPropertiesLoose(_this$props, [\"children\"]); // filter props for Transtition\n\n\n delete childProps.in;\n delete childProps.mountOnEnter;\n delete childProps.unmountOnExit;\n delete childProps.appear;\n delete childProps.enter;\n delete childProps.exit;\n delete childProps.timeout;\n delete childProps.addEndListener;\n delete childProps.onEnter;\n delete childProps.onEntering;\n delete childProps.onEntered;\n delete childProps.onExit;\n delete childProps.onExiting;\n delete childProps.onExited;\n\n if (typeof children === 'function') {\n return children(status, childProps);\n }\n\n var child = _react.default.Children.only(children);\n\n return _react.default.cloneElement(child, childProps);\n };\n\n return Transition;\n}(_react.default.Component);\n\nTransition.contextTypes = {\n transitionGroup: PropTypes.object\n};\nTransition.childContextTypes = {\n transitionGroup: function transitionGroup() {}\n};\nTransition.propTypes = process.env.NODE_ENV !== \"production\" ? {\n /**\n * A `function` child can be used instead of a React element. This function is\n * called with the current transition status (`'entering'`, `'entered'`,\n * `'exiting'`, `'exited'`, `'unmounted'`), which can be used to apply context\n * specific props to a component.\n *\n * ```jsx\n * \n * {state => (\n * \n * )}\n * \n * ```\n */\n children: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]).isRequired,\n\n /**\n * Show the component; triggers the enter or exit states\n */\n in: PropTypes.bool,\n\n /**\n * By default the child component is mounted immediately along with\n * the parent `Transition` component. If you want to \"lazy mount\" the component on the\n * first `in={true}` you can set `mountOnEnter`. After the first enter transition the component will stay\n * mounted, even on \"exited\", unless you also specify `unmountOnExit`.\n */\n mountOnEnter: PropTypes.bool,\n\n /**\n * By default the child component stays mounted after it reaches the `'exited'` state.\n * Set `unmountOnExit` if you'd prefer to unmount the component after it finishes exiting.\n */\n unmountOnExit: PropTypes.bool,\n\n /**\n * Normally a component is not transitioned if it is shown when the `` component mounts.\n * If you want to transition on the first mount set `appear` to `true`, and the\n * component will transition in as soon as the `` mounts.\n *\n * > Note: there are no specific \"appear\" states. `appear` only adds an additional `enter` transition.\n */\n appear: PropTypes.bool,\n\n /**\n * Enable or disable enter transitions.\n */\n enter: PropTypes.bool,\n\n /**\n * Enable or disable exit transitions.\n */\n exit: PropTypes.bool,\n\n /**\n * The duration of the transition, in milliseconds.\n * Required unless `addEndListener` is provided.\n *\n * You may specify a single timeout for all transitions:\n *\n * ```jsx\n * timeout={500}\n * ```\n *\n * or individually:\n *\n * ```jsx\n * timeout={{\n * appear: 500,\n * enter: 300,\n * exit: 500,\n * }}\n * ```\n *\n * - `appear` defaults to the value of `enter`\n * - `enter` defaults to `0`\n * - `exit` defaults to `0`\n *\n * @type {number | { enter?: number, exit?: number, appear?: number }}\n */\n timeout: function timeout(props) {\n var pt = _PropTypes.timeoutsShape;\n if (!props.addEndListener) pt = pt.isRequired;\n\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n return pt.apply(void 0, [props].concat(args));\n },\n\n /**\n * Add a custom transition end trigger. Called with the transitioning\n * DOM node and a `done` callback. Allows for more fine grained transition end\n * logic. **Note:** Timeouts are still used as a fallback if provided.\n *\n * ```jsx\n * addEndListener={(node, done) => {\n * // use the css transitionend event to mark the finish of a transition\n * node.addEventListener('transitionend', done, false);\n * }}\n * ```\n */\n addEndListener: PropTypes.func,\n\n /**\n * Callback fired before the \"entering\" status is applied. An extra parameter\n * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount\n *\n * @type Function(node: HtmlElement, isAppearing: bool) -> void\n */\n onEnter: PropTypes.func,\n\n /**\n * Callback fired after the \"entering\" status is applied. An extra parameter\n * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount\n *\n * @type Function(node: HtmlElement, isAppearing: bool)\n */\n onEntering: PropTypes.func,\n\n /**\n * Callback fired after the \"entered\" status is applied. An extra parameter\n * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount\n *\n * @type Function(node: HtmlElement, isAppearing: bool) -> void\n */\n onEntered: PropTypes.func,\n\n /**\n * Callback fired before the \"exiting\" status is applied.\n *\n * @type Function(node: HtmlElement) -> void\n */\n onExit: PropTypes.func,\n\n /**\n * Callback fired after the \"exiting\" status is applied.\n *\n * @type Function(node: HtmlElement) -> void\n */\n onExiting: PropTypes.func,\n\n /**\n * Callback fired after the \"exited\" status is applied.\n *\n * @type Function(node: HtmlElement) -> void\n */\n onExited: PropTypes.func // Name the function so it is clearer in the documentation\n\n} : {};\n\nfunction noop() {}\n\nTransition.defaultProps = {\n in: false,\n mountOnEnter: false,\n unmountOnExit: false,\n appear: false,\n enter: true,\n exit: true,\n onEnter: noop,\n onEntering: noop,\n onEntered: noop,\n onExit: noop,\n onExiting: noop,\n onExited: noop\n};\nTransition.UNMOUNTED = 0;\nTransition.EXITED = 1;\nTransition.ENTERING = 2;\nTransition.ENTERED = 3;\nTransition.EXITING = 4;\n\nvar _default = (0, _reactLifecyclesCompat.polyfill)(Transition);\n\nexports.default = _default;","\"use strict\";\n\nexports.__esModule = true;\nexports.default = void 0;\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _reactLifecyclesCompat = require(\"react-lifecycles-compat\");\n\nvar _ChildMapping = require(\"./utils/ChildMapping\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nvar values = Object.values || function (obj) {\n return Object.keys(obj).map(function (k) {\n return obj[k];\n });\n};\n\nvar defaultProps = {\n component: 'div',\n childFactory: function childFactory(child) {\n return child;\n }\n /**\n * The `` component manages a set of transition components\n * (`` and ``) in a list. Like with the transition\n * components, `` is a state machine for managing the mounting\n * and unmounting of components over time.\n *\n * Consider the example below. As items are removed or added to the TodoList the\n * `in` prop is toggled automatically by the ``.\n *\n * Note that `` does not define any animation behavior!\n * Exactly _how_ a list item animates is up to the individual transition\n * component. This means you can mix and match animations across different list\n * items.\n */\n\n};\n\nvar TransitionGroup =\n/*#__PURE__*/\nfunction (_React$Component) {\n _inheritsLoose(TransitionGroup, _React$Component);\n\n function TransitionGroup(props, context) {\n var _this;\n\n _this = _React$Component.call(this, props, context) || this;\n\n var handleExited = _this.handleExited.bind(_assertThisInitialized(_assertThisInitialized(_this))); // Initial children should all be entering, dependent on appear\n\n\n _this.state = {\n handleExited: handleExited,\n firstRender: true\n };\n return _this;\n }\n\n var _proto = TransitionGroup.prototype;\n\n _proto.getChildContext = function getChildContext() {\n return {\n transitionGroup: {\n isMounting: !this.appeared\n }\n };\n };\n\n _proto.componentDidMount = function componentDidMount() {\n this.appeared = true;\n this.mounted = true;\n };\n\n _proto.componentWillUnmount = function componentWillUnmount() {\n this.mounted = false;\n };\n\n TransitionGroup.getDerivedStateFromProps = function getDerivedStateFromProps(nextProps, _ref) {\n var prevChildMapping = _ref.children,\n handleExited = _ref.handleExited,\n firstRender = _ref.firstRender;\n return {\n children: firstRender ? (0, _ChildMapping.getInitialChildMapping)(nextProps, handleExited) : (0, _ChildMapping.getNextChildMapping)(nextProps, prevChildMapping, handleExited),\n firstRender: false\n };\n };\n\n _proto.handleExited = function handleExited(child, node) {\n var currentChildMapping = (0, _ChildMapping.getChildMapping)(this.props.children);\n if (child.key in currentChildMapping) return;\n\n if (child.props.onExited) {\n child.props.onExited(node);\n }\n\n if (this.mounted) {\n this.setState(function (state) {\n var children = _extends({}, state.children);\n\n delete children[child.key];\n return {\n children: children\n };\n });\n }\n };\n\n _proto.render = function render() {\n var _this$props = this.props,\n Component = _this$props.component,\n childFactory = _this$props.childFactory,\n props = _objectWithoutPropertiesLoose(_this$props, [\"component\", \"childFactory\"]);\n\n var children = values(this.state.children).map(childFactory);\n delete props.appear;\n delete props.enter;\n delete props.exit;\n\n if (Component === null) {\n return children;\n }\n\n return _react.default.createElement(Component, props, children);\n };\n\n return TransitionGroup;\n}(_react.default.Component);\n\nTransitionGroup.childContextTypes = {\n transitionGroup: _propTypes.default.object.isRequired\n};\nTransitionGroup.propTypes = process.env.NODE_ENV !== \"production\" ? {\n /**\n * `` renders a `
` by default. You can change this\n * behavior by providing a `component` prop.\n * If you use React v16+ and would like to avoid a wrapping `
` element\n * you can pass in `component={null}`. This is useful if the wrapping div\n * borks your css styles.\n */\n component: _propTypes.default.any,\n\n /**\n * A set of `` components, that are toggled `in` and out as they\n * leave. the `` will inject specific transition props, so\n * remember to spread them through if you are wrapping the `` as\n * with our `` example.\n *\n * While this component is meant for multiple `Transition` or `CSSTransition`\n * children, sometimes you may want to have a single transition child with\n * content that you want to be transitioned out and in when you change it\n * (e.g. routes, images etc.) In that case you can change the `key` prop of\n * the transition child as you change its content, this will cause\n * `TransitionGroup` to transition the child out and back in.\n */\n children: _propTypes.default.node,\n\n /**\n * A convenience prop that enables or disables appear animations\n * for all children. Note that specifying this will override any defaults set\n * on individual children Transitions.\n */\n appear: _propTypes.default.bool,\n\n /**\n * A convenience prop that enables or disables enter animations\n * for all children. Note that specifying this will override any defaults set\n * on individual children Transitions.\n */\n enter: _propTypes.default.bool,\n\n /**\n * A convenience prop that enables or disables exit animations\n * for all children. Note that specifying this will override any defaults set\n * on individual children Transitions.\n */\n exit: _propTypes.default.bool,\n\n /**\n * You may need to apply reactive updates to a child as it is exiting.\n * This is generally done by using `cloneElement` however in the case of an exiting\n * child the element has already been removed and not accessible to the consumer.\n *\n * If you do need to update a child as it leaves you can provide a `childFactory`\n * to wrap every child, even the ones that are leaving.\n *\n * @type Function(child: ReactElement) -> ReactElement\n */\n childFactory: _propTypes.default.func\n} : {};\nTransitionGroup.defaultProps = defaultProps;\n\nvar _default = (0, _reactLifecyclesCompat.polyfill)(TransitionGroup);\n\nexports.default = _default;\nmodule.exports = exports[\"default\"];","\"use strict\";\n\nvar _CSSTransition = _interopRequireDefault(require(\"./CSSTransition\"));\n\nvar _ReplaceTransition = _interopRequireDefault(require(\"./ReplaceTransition\"));\n\nvar _TransitionGroup = _interopRequireDefault(require(\"./TransitionGroup\"));\n\nvar _Transition = _interopRequireDefault(require(\"./Transition\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nmodule.exports = {\n Transition: _Transition.default,\n TransitionGroup: _TransitionGroup.default,\n ReplaceTransition: _ReplaceTransition.default,\n CSSTransition: _CSSTransition.default\n};","\"use strict\";\n\nexports.__esModule = true;\nexports.getChildMapping = getChildMapping;\nexports.mergeChildMappings = mergeChildMappings;\nexports.getInitialChildMapping = getInitialChildMapping;\nexports.getNextChildMapping = getNextChildMapping;\n\nvar _react = require(\"react\");\n\n/**\n * Given `this.props.children`, return an object mapping key to child.\n *\n * @param {*} children `this.props.children`\n * @return {object} Mapping of key to child\n */\nfunction getChildMapping(children, mapFn) {\n var mapper = function mapper(child) {\n return mapFn && (0, _react.isValidElement)(child) ? mapFn(child) : child;\n };\n\n var result = Object.create(null);\n if (children) _react.Children.map(children, function (c) {\n return c;\n }).forEach(function (child) {\n // run the map function here instead so that the key is the computed one\n result[child.key] = mapper(child);\n });\n return result;\n}\n/**\n * When you're adding or removing children some may be added or removed in the\n * same render pass. We want to show *both* since we want to simultaneously\n * animate elements in and out. This function takes a previous set of keys\n * and a new set of keys and merges them with its best guess of the correct\n * ordering. In the future we may expose some of the utilities in\n * ReactMultiChild to make this easy, but for now React itself does not\n * directly have this concept of the union of prevChildren and nextChildren\n * so we implement it here.\n *\n * @param {object} prev prev children as returned from\n * `ReactTransitionChildMapping.getChildMapping()`.\n * @param {object} next next children as returned from\n * `ReactTransitionChildMapping.getChildMapping()`.\n * @return {object} a key set that contains all keys in `prev` and all keys\n * in `next` in a reasonable order.\n */\n\n\nfunction mergeChildMappings(prev, next) {\n prev = prev || {};\n next = next || {};\n\n function getValueForKey(key) {\n return key in next ? next[key] : prev[key];\n } // For each key of `next`, the list of keys to insert before that key in\n // the combined list\n\n\n var nextKeysPending = Object.create(null);\n var pendingKeys = [];\n\n for (var prevKey in prev) {\n if (prevKey in next) {\n if (pendingKeys.length) {\n nextKeysPending[prevKey] = pendingKeys;\n pendingKeys = [];\n }\n } else {\n pendingKeys.push(prevKey);\n }\n }\n\n var i;\n var childMapping = {};\n\n for (var nextKey in next) {\n if (nextKeysPending[nextKey]) {\n for (i = 0; i < nextKeysPending[nextKey].length; i++) {\n var pendingNextKey = nextKeysPending[nextKey][i];\n childMapping[nextKeysPending[nextKey][i]] = getValueForKey(pendingNextKey);\n }\n }\n\n childMapping[nextKey] = getValueForKey(nextKey);\n } // Finally, add the keys which didn't appear before any key in `next`\n\n\n for (i = 0; i < pendingKeys.length; i++) {\n childMapping[pendingKeys[i]] = getValueForKey(pendingKeys[i]);\n }\n\n return childMapping;\n}\n\nfunction getProp(child, prop, props) {\n return props[prop] != null ? props[prop] : child.props[prop];\n}\n\nfunction getInitialChildMapping(props, onExited) {\n return getChildMapping(props.children, function (child) {\n return (0, _react.cloneElement)(child, {\n onExited: onExited.bind(null, child),\n in: true,\n appear: getProp(child, 'appear', props),\n enter: getProp(child, 'enter', props),\n exit: getProp(child, 'exit', props)\n });\n });\n}\n\nfunction getNextChildMapping(nextProps, prevChildMapping, onExited) {\n var nextChildMapping = getChildMapping(nextProps.children);\n var children = mergeChildMappings(prevChildMapping, nextChildMapping);\n Object.keys(children).forEach(function (key) {\n var child = children[key];\n if (!(0, _react.isValidElement)(child)) return;\n var hasPrev = key in prevChildMapping;\n var hasNext = key in nextChildMapping;\n var prevChild = prevChildMapping[key];\n var isLeaving = (0, _react.isValidElement)(prevChild) && !prevChild.props.in; // item is new (entering)\n\n if (hasNext && (!hasPrev || isLeaving)) {\n // console.log('entering', key)\n children[key] = (0, _react.cloneElement)(child, {\n onExited: onExited.bind(null, child),\n in: true,\n exit: getProp(child, 'exit', nextProps),\n enter: getProp(child, 'enter', nextProps)\n });\n } else if (!hasNext && hasPrev && !isLeaving) {\n // item is old (exiting)\n // console.log('leaving', key)\n children[key] = (0, _react.cloneElement)(child, {\n in: false\n });\n } else if (hasNext && hasPrev && (0, _react.isValidElement)(prevChild)) {\n // item hasn't changed transition states\n // copy over the last transition props;\n // console.log('unchanged', key)\n children[key] = (0, _react.cloneElement)(child, {\n onExited: onExited.bind(null, child),\n in: prevChild.props.in,\n exit: getProp(child, 'exit', nextProps),\n enter: getProp(child, 'enter', nextProps)\n });\n }\n });\n return children;\n}","\"use strict\";\n\nexports.__esModule = true;\nexports.classNamesShape = exports.timeoutsShape = void 0;\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar timeoutsShape = process.env.NODE_ENV !== 'production' ? _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.shape({\n enter: _propTypes.default.number,\n exit: _propTypes.default.number,\n appear: _propTypes.default.number\n}).isRequired]) : null;\nexports.timeoutsShape = timeoutsShape;\nvar classNamesShape = process.env.NODE_ENV !== 'production' ? _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.shape({\n enter: _propTypes.default.string,\n exit: _propTypes.default.string,\n active: _propTypes.default.string\n}), _propTypes.default.shape({\n enter: _propTypes.default.string,\n enterDone: _propTypes.default.string,\n enterActive: _propTypes.default.string,\n exit: _propTypes.default.string,\n exitDone: _propTypes.default.string,\n exitActive: _propTypes.default.string\n})]) : null;\nexports.classNamesShape = classNamesShape;","/** @license React v17.0.2\n * react-jsx-runtime.production.min.js\n *\n * Copyright (c) Meta Platforms and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';require(\"object-assign\");var f=require(\"react\"),g=60103;exports.Fragment=60107;if(\"function\"===typeof Symbol&&Symbol.for){var h=Symbol.for;g=h(\"react.element\");exports.Fragment=h(\"react.fragment\")}var m=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,n=Object.prototype.hasOwnProperty,p={key:!0,ref:!0,__self:!0,__source:!0};\nfunction q(c,a,k){var b,d={},e=null,l=null;void 0!==k&&(e=\"\"+k);void 0!==a.key&&(e=\"\"+a.key);void 0!==a.ref&&(l=a.ref);for(b in a)n.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:g,type:c,key:e,ref:l,props:d,_owner:m.current}}exports.jsx=q;exports.jsxs=q;\n","/** @license React v17.0.2\n * react.production.min.js\n *\n * Copyright (c) Meta Platforms and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';var l=require(\"object-assign\"),n=60103,p=60106;exports.Fragment=60107;exports.StrictMode=60108;exports.Profiler=60114;var q=60109,r=60110,t=60112;exports.Suspense=60113;var u=60115,v=60116;\nif(\"function\"===typeof Symbol&&Symbol.for){var w=Symbol.for;n=w(\"react.element\");p=w(\"react.portal\");exports.Fragment=w(\"react.fragment\");exports.StrictMode=w(\"react.strict_mode\");exports.Profiler=w(\"react.profiler\");q=w(\"react.provider\");r=w(\"react.context\");t=w(\"react.forward_ref\");exports.Suspense=w(\"react.suspense\");u=w(\"react.memo\");v=w(\"react.lazy\")}var x=\"function\"===typeof Symbol&&Symbol.iterator;\nfunction y(a){if(null===a||\"object\"!==typeof a)return null;a=x&&a[x]||a[\"@@iterator\"];return\"function\"===typeof a?a:null}function z(a){for(var b=\"https://reactjs.org/docs/error-decoder.html?invariant=\"+a,c=1;c result for the\n // current iteration.\n result.value = unwrapped;\n resolve(result);\n }, function(error) {\n // If a rejected Promise was yielded, throw the rejection back\n // into the async generator function so it can be handled there.\n return invoke(\"throw\", error, resolve, reject);\n });\n }\n }\n\n var previousPromise;\n\n function enqueue(method, arg) {\n function callInvokeWithMethodAndArg() {\n return new PromiseImpl(function(resolve, reject) {\n invoke(method, arg, resolve, reject);\n });\n }\n\n return previousPromise =\n // If enqueue has been called before, then we want to wait until\n // all previous Promises have been resolved before calling invoke,\n // so that results are always delivered in the correct order. If\n // enqueue has not been called before, then it is important to\n // call invoke immediately, without waiting on a callback to fire,\n // so that the async generator function has the opportunity to do\n // any necessary setup in a predictable way. This predictability\n // is why the Promise constructor synchronously invokes its\n // executor callback, and why async functions synchronously\n // execute code before the first await. Since we implement simple\n // async functions in terms of async generators, it is especially\n // important to get this right, even though it requires care.\n previousPromise ? previousPromise.then(\n callInvokeWithMethodAndArg,\n // Avoid propagating failures to Promises returned by later\n // invocations of the iterator.\n callInvokeWithMethodAndArg\n ) : callInvokeWithMethodAndArg();\n }\n\n // Define the unified helper method that is used to implement .next,\n // .throw, and .return (see defineIteratorMethods).\n this._invoke = enqueue;\n }\n\n defineIteratorMethods(AsyncIterator.prototype);\n define(AsyncIterator.prototype, asyncIteratorSymbol, function () {\n return this;\n });\n exports.AsyncIterator = AsyncIterator;\n\n // Note that simple async functions are implemented on top of\n // AsyncIterator objects; they just return a Promise for the value of\n // the final result produced by the iterator.\n exports.async = function(innerFn, outerFn, self, tryLocsList, PromiseImpl) {\n if (PromiseImpl === void 0) PromiseImpl = Promise;\n\n var iter = new AsyncIterator(\n wrap(innerFn, outerFn, self, tryLocsList),\n PromiseImpl\n );\n\n return exports.isGeneratorFunction(outerFn)\n ? iter // If outerFn is a generator, return the full iterator.\n : iter.next().then(function(result) {\n return result.done ? result.value : iter.next();\n });\n };\n\n function makeInvokeMethod(innerFn, self, context) {\n var state = GenStateSuspendedStart;\n\n return function invoke(method, arg) {\n if (state === GenStateExecuting) {\n throw new Error(\"Generator is already running\");\n }\n\n if (state === GenStateCompleted) {\n if (method === \"throw\") {\n throw arg;\n }\n\n // Be forgiving, per 25.3.3.3.3 of the spec:\n // https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume\n return doneResult();\n }\n\n context.method = method;\n context.arg = arg;\n\n while (true) {\n var delegate = context.delegate;\n if (delegate) {\n var delegateResult = maybeInvokeDelegate(delegate, context);\n if (delegateResult) {\n if (delegateResult === ContinueSentinel) continue;\n return delegateResult;\n }\n }\n\n if (context.method === \"next\") {\n // Setting context._sent for legacy support of Babel's\n // function.sent implementation.\n context.sent = context._sent = context.arg;\n\n } else if (context.method === \"throw\") {\n if (state === GenStateSuspendedStart) {\n state = GenStateCompleted;\n throw context.arg;\n }\n\n context.dispatchException(context.arg);\n\n } else if (context.method === \"return\") {\n context.abrupt(\"return\", context.arg);\n }\n\n state = GenStateExecuting;\n\n var record = tryCatch(innerFn, self, context);\n if (record.type === \"normal\") {\n // If an exception is thrown from innerFn, we leave state ===\n // GenStateExecuting and loop back for another invocation.\n state = context.done\n ? GenStateCompleted\n : GenStateSuspendedYield;\n\n if (record.arg === ContinueSentinel) {\n continue;\n }\n\n return {\n value: record.arg,\n done: context.done\n };\n\n } else if (record.type === \"throw\") {\n state = GenStateCompleted;\n // Dispatch the exception by looping back around to the\n // context.dispatchException(context.arg) call above.\n context.method = \"throw\";\n context.arg = record.arg;\n }\n }\n };\n }\n\n // Call delegate.iterator[context.method](context.arg) and handle the\n // result, either by returning a { value, done } result from the\n // delegate iterator, or by modifying context.method and context.arg,\n // setting context.delegate to null, and returning the ContinueSentinel.\n function maybeInvokeDelegate(delegate, context) {\n var method = delegate.iterator[context.method];\n if (method === undefined) {\n // A .throw or .return when the delegate iterator has no .throw\n // method always terminates the yield* loop.\n context.delegate = null;\n\n if (context.method === \"throw\") {\n // Note: [\"return\"] must be used for ES3 parsing compatibility.\n if (delegate.iterator[\"return\"]) {\n // If the delegate iterator has a return method, give it a\n // chance to clean up.\n context.method = \"return\";\n context.arg = undefined;\n maybeInvokeDelegate(delegate, context);\n\n if (context.method === \"throw\") {\n // If maybeInvokeDelegate(context) changed context.method from\n // \"return\" to \"throw\", let that override the TypeError below.\n return ContinueSentinel;\n }\n }\n\n context.method = \"throw\";\n context.arg = new TypeError(\n \"The iterator does not provide a 'throw' method\");\n }\n\n return ContinueSentinel;\n }\n\n var record = tryCatch(method, delegate.iterator, context.arg);\n\n if (record.type === \"throw\") {\n context.method = \"throw\";\n context.arg = record.arg;\n context.delegate = null;\n return ContinueSentinel;\n }\n\n var info = record.arg;\n\n if (! info) {\n context.method = \"throw\";\n context.arg = new TypeError(\"iterator result is not an object\");\n context.delegate = null;\n return ContinueSentinel;\n }\n\n if (info.done) {\n // Assign the result of the finished delegate to the temporary\n // variable specified by delegate.resultName (see delegateYield).\n context[delegate.resultName] = info.value;\n\n // Resume execution at the desired location (see delegateYield).\n context.next = delegate.nextLoc;\n\n // If context.method was \"throw\" but the delegate handled the\n // exception, let the outer generator proceed normally. If\n // context.method was \"next\", forget context.arg since it has been\n // \"consumed\" by the delegate iterator. If context.method was\n // \"return\", allow the original .return call to continue in the\n // outer generator.\n if (context.method !== \"return\") {\n context.method = \"next\";\n context.arg = undefined;\n }\n\n } else {\n // Re-yield the result returned by the delegate method.\n return info;\n }\n\n // The delegate iterator is finished, so forget it and continue with\n // the outer generator.\n context.delegate = null;\n return ContinueSentinel;\n }\n\n // Define Generator.prototype.{next,throw,return} in terms of the\n // unified ._invoke helper method.\n defineIteratorMethods(Gp);\n\n define(Gp, toStringTagSymbol, \"Generator\");\n\n // A Generator should always return itself as the iterator object when the\n // @@iterator function is called on it. Some browsers' implementations of the\n // iterator prototype chain incorrectly implement this, causing the Generator\n // object to not be returned from this call. This ensures that doesn't happen.\n // See https://github.com/facebook/regenerator/issues/274 for more details.\n define(Gp, iteratorSymbol, function() {\n return this;\n });\n\n define(Gp, \"toString\", function() {\n return \"[object Generator]\";\n });\n\n function pushTryEntry(locs) {\n var entry = { tryLoc: locs[0] };\n\n if (1 in locs) {\n entry.catchLoc = locs[1];\n }\n\n if (2 in locs) {\n entry.finallyLoc = locs[2];\n entry.afterLoc = locs[3];\n }\n\n this.tryEntries.push(entry);\n }\n\n function resetTryEntry(entry) {\n var record = entry.completion || {};\n record.type = \"normal\";\n delete record.arg;\n entry.completion = record;\n }\n\n function Context(tryLocsList) {\n // The root entry object (effectively a try statement without a catch\n // or a finally block) gives us a place to store values thrown from\n // locations where there is no enclosing try statement.\n this.tryEntries = [{ tryLoc: \"root\" }];\n tryLocsList.forEach(pushTryEntry, this);\n this.reset(true);\n }\n\n exports.keys = function(object) {\n var keys = [];\n for (var key in object) {\n keys.push(key);\n }\n keys.reverse();\n\n // Rather than returning an object with a next method, we keep\n // things simple and return the next function itself.\n return function next() {\n while (keys.length) {\n var key = keys.pop();\n if (key in object) {\n next.value = key;\n next.done = false;\n return next;\n }\n }\n\n // To avoid creating an additional object, we just hang the .value\n // and .done properties off the next function object itself. This\n // also ensures that the minifier will not anonymize the function.\n next.done = true;\n return next;\n };\n };\n\n function values(iterable) {\n if (iterable) {\n var iteratorMethod = iterable[iteratorSymbol];\n if (iteratorMethod) {\n return iteratorMethod.call(iterable);\n }\n\n if (typeof iterable.next === \"function\") {\n return iterable;\n }\n\n if (!isNaN(iterable.length)) {\n var i = -1, next = function next() {\n while (++i < iterable.length) {\n if (hasOwn.call(iterable, i)) {\n next.value = iterable[i];\n next.done = false;\n return next;\n }\n }\n\n next.value = undefined;\n next.done = true;\n\n return next;\n };\n\n return next.next = next;\n }\n }\n\n // Return an iterator with no values.\n return { next: doneResult };\n }\n exports.values = values;\n\n function doneResult() {\n return { value: undefined, done: true };\n }\n\n Context.prototype = {\n constructor: Context,\n\n reset: function(skipTempReset) {\n this.prev = 0;\n this.next = 0;\n // Resetting context._sent for legacy support of Babel's\n // function.sent implementation.\n this.sent = this._sent = undefined;\n this.done = false;\n this.delegate = null;\n\n this.method = \"next\";\n this.arg = undefined;\n\n this.tryEntries.forEach(resetTryEntry);\n\n if (!skipTempReset) {\n for (var name in this) {\n // Not sure about the optimal order of these conditions:\n if (name.charAt(0) === \"t\" &&\n hasOwn.call(this, name) &&\n !isNaN(+name.slice(1))) {\n this[name] = undefined;\n }\n }\n }\n },\n\n stop: function() {\n this.done = true;\n\n var rootEntry = this.tryEntries[0];\n var rootRecord = rootEntry.completion;\n if (rootRecord.type === \"throw\") {\n throw rootRecord.arg;\n }\n\n return this.rval;\n },\n\n dispatchException: function(exception) {\n if (this.done) {\n throw exception;\n }\n\n var context = this;\n function handle(loc, caught) {\n record.type = \"throw\";\n record.arg = exception;\n context.next = loc;\n\n if (caught) {\n // If the dispatched exception was caught by a catch block,\n // then let that catch block handle the exception normally.\n context.method = \"next\";\n context.arg = undefined;\n }\n\n return !! caught;\n }\n\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n var record = entry.completion;\n\n if (entry.tryLoc === \"root\") {\n // Exception thrown outside of any try block that could handle\n // it, so set the completion value of the entire function to\n // throw the exception.\n return handle(\"end\");\n }\n\n if (entry.tryLoc <= this.prev) {\n var hasCatch = hasOwn.call(entry, \"catchLoc\");\n var hasFinally = hasOwn.call(entry, \"finallyLoc\");\n\n if (hasCatch && hasFinally) {\n if (this.prev < entry.catchLoc) {\n return handle(entry.catchLoc, true);\n } else if (this.prev < entry.finallyLoc) {\n return handle(entry.finallyLoc);\n }\n\n } else if (hasCatch) {\n if (this.prev < entry.catchLoc) {\n return handle(entry.catchLoc, true);\n }\n\n } else if (hasFinally) {\n if (this.prev < entry.finallyLoc) {\n return handle(entry.finallyLoc);\n }\n\n } else {\n throw new Error(\"try statement without catch or finally\");\n }\n }\n }\n },\n\n abrupt: function(type, arg) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.tryLoc <= this.prev &&\n hasOwn.call(entry, \"finallyLoc\") &&\n this.prev < entry.finallyLoc) {\n var finallyEntry = entry;\n break;\n }\n }\n\n if (finallyEntry &&\n (type === \"break\" ||\n type === \"continue\") &&\n finallyEntry.tryLoc <= arg &&\n arg <= finallyEntry.finallyLoc) {\n // Ignore the finally entry if control is not jumping to a\n // location outside the try/catch block.\n finallyEntry = null;\n }\n\n var record = finallyEntry ? finallyEntry.completion : {};\n record.type = type;\n record.arg = arg;\n\n if (finallyEntry) {\n this.method = \"next\";\n this.next = finallyEntry.finallyLoc;\n return ContinueSentinel;\n }\n\n return this.complete(record);\n },\n\n complete: function(record, afterLoc) {\n if (record.type === \"throw\") {\n throw record.arg;\n }\n\n if (record.type === \"break\" ||\n record.type === \"continue\") {\n this.next = record.arg;\n } else if (record.type === \"return\") {\n this.rval = this.arg = record.arg;\n this.method = \"return\";\n this.next = \"end\";\n } else if (record.type === \"normal\" && afterLoc) {\n this.next = afterLoc;\n }\n\n return ContinueSentinel;\n },\n\n finish: function(finallyLoc) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.finallyLoc === finallyLoc) {\n this.complete(entry.completion, entry.afterLoc);\n resetTryEntry(entry);\n return ContinueSentinel;\n }\n }\n },\n\n \"catch\": function(tryLoc) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.tryLoc === tryLoc) {\n var record = entry.completion;\n if (record.type === \"throw\") {\n var thrown = record.arg;\n resetTryEntry(entry);\n }\n return thrown;\n }\n }\n\n // The context.catch method must only be called with a location\n // argument that corresponds to a known catch block.\n throw new Error(\"illegal catch attempt\");\n },\n\n delegateYield: function(iterable, resultName, nextLoc) {\n this.delegate = {\n iterator: values(iterable),\n resultName: resultName,\n nextLoc: nextLoc\n };\n\n if (this.method === \"next\") {\n // Deliberately forget the last sent value so that we don't\n // accidentally pass it on to the delegate.\n this.arg = undefined;\n }\n\n return ContinueSentinel;\n }\n };\n\n // Regardless of whether this script is executing as a CommonJS module\n // or not, return the runtime object so that we can declare the variable\n // regeneratorRuntime in the outer scope, which allows this module to be\n // injected easily by `bin/regenerator --include-runtime script.js`.\n return exports;\n\n}(\n // If this script is executing as a CommonJS module, use module.exports\n // as the regeneratorRuntime namespace. Otherwise create a new empty\n // object. Either way, the resulting object will be used to initialize\n // the regeneratorRuntime variable at the top of this file.\n typeof module === \"object\" ? module.exports : {}\n));\n\ntry {\n regeneratorRuntime = runtime;\n} catch (accidentalStrictMode) {\n // This module should not be running in strict mode, so the above\n // assignment should always work unless something is misconfigured. Just\n // in case runtime.js accidentally runs in strict mode, in modern engines\n // we can explicitly access globalThis. In older engines we can escape\n // strict mode using a global Function call. This could conceivably fail\n // if a Content Security Policy forbids using Function, but in that case\n // the proper solution is to fix the accidental strict mode problem. If\n // you've misconfigured your bundler to force strict mode and applied a\n // CSP to forbid Function, and you're not willing to fix either of those\n // problems, please detail your unique predicament in a GitHub issue.\n if (typeof globalThis === \"object\") {\n globalThis.regeneratorRuntime = runtime;\n } else {\n Function(\"r\", \"regeneratorRuntime = r\")(runtime);\n }\n}\n","'use strict';\n\nvar $Object = Object;\nvar $TypeError = TypeError;\n\nmodule.exports = function flags() {\n\tif (this != null && this !== $Object(this)) {\n\t\tthrow new $TypeError('RegExp.prototype.flags getter called on non-object');\n\t}\n\tvar result = '';\n\tif (this.hasIndices) {\n\t\tresult += 'd';\n\t}\n\tif (this.global) {\n\t\tresult += 'g';\n\t}\n\tif (this.ignoreCase) {\n\t\tresult += 'i';\n\t}\n\tif (this.multiline) {\n\t\tresult += 'm';\n\t}\n\tif (this.dotAll) {\n\t\tresult += 's';\n\t}\n\tif (this.unicode) {\n\t\tresult += 'u';\n\t}\n\tif (this.sticky) {\n\t\tresult += 'y';\n\t}\n\treturn result;\n};\n","'use strict';\n\nvar define = require('define-properties');\nvar callBind = require('call-bind');\n\nvar implementation = require('./implementation');\nvar getPolyfill = require('./polyfill');\nvar shim = require('./shim');\n\nvar flagsBound = callBind(getPolyfill());\n\ndefine(flagsBound, {\n\tgetPolyfill: getPolyfill,\n\timplementation: implementation,\n\tshim: shim\n});\n\nmodule.exports = flagsBound;\n","'use strict';\n\nvar implementation = require('./implementation');\n\nvar supportsDescriptors = require('define-properties').supportsDescriptors;\nvar $gOPD = Object.getOwnPropertyDescriptor;\n\nmodule.exports = function getPolyfill() {\n\tif (supportsDescriptors && (/a/mig).flags === 'gim') {\n\t\tvar descriptor = $gOPD(RegExp.prototype, 'flags');\n\t\tif (descriptor && typeof descriptor.get === 'function' && typeof (/a/).dotAll === 'boolean') {\n\t\t\treturn descriptor.get;\n\t\t}\n\t}\n\treturn implementation;\n};\n","'use strict';\n\nvar supportsDescriptors = require('define-properties').supportsDescriptors;\nvar getPolyfill = require('./polyfill');\nvar gOPD = Object.getOwnPropertyDescriptor;\nvar defineProperty = Object.defineProperty;\nvar TypeErr = TypeError;\nvar getProto = Object.getPrototypeOf;\nvar regex = /a/;\n\nmodule.exports = function shimFlags() {\n\tif (!supportsDescriptors || !getProto) {\n\t\tthrow new TypeErr('RegExp.prototype.flags requires a true ES5 environment that supports property descriptors');\n\t}\n\tvar polyfill = getPolyfill();\n\tvar proto = getProto(regex);\n\tvar descriptor = gOPD(proto, 'flags');\n\tif (!descriptor || descriptor.get !== polyfill) {\n\t\tdefineProperty(proto, 'flags', {\n\t\t\tconfigurable: true,\n\t\t\tenumerable: false,\n\t\t\tget: polyfill\n\t\t});\n\t}\n\treturn polyfill;\n};\n","/** @license React v0.20.2\n * scheduler.production.min.js\n *\n * Copyright (c) Meta Platforms and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';var f,g,h,k;if(\"object\"===typeof performance&&\"function\"===typeof performance.now){var l=performance;exports.unstable_now=function(){return l.now()}}else{var p=Date,q=p.now();exports.unstable_now=function(){return p.now()-q}}\nif(\"undefined\"===typeof window||\"function\"!==typeof MessageChannel){var t=null,u=null,w=function(){if(null!==t)try{var a=exports.unstable_now();t(!0,a);t=null}catch(b){throw setTimeout(w,0),b;}};f=function(a){null!==t?setTimeout(f,0,a):(t=a,setTimeout(w,0))};g=function(a,b){u=setTimeout(a,b)};h=function(){clearTimeout(u)};exports.unstable_shouldYield=function(){return!1};k=exports.unstable_forceFrameRate=function(){}}else{var x=window.setTimeout,y=window.clearTimeout;if(\"undefined\"!==typeof console){var z=\nwindow.cancelAnimationFrame;\"function\"!==typeof window.requestAnimationFrame&&console.error(\"This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills\");\"function\"!==typeof z&&console.error(\"This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills\")}var A=!1,B=null,C=-1,D=5,E=0;exports.unstable_shouldYield=function(){return exports.unstable_now()>=\nE};k=function(){};exports.unstable_forceFrameRate=function(a){0>a||125>>1,e=a[d];if(void 0!==e&&0I(n,c))void 0!==r&&0>I(r,n)?(a[d]=r,a[v]=c,d=v):(a[d]=n,a[m]=c,d=m);else if(void 0!==r&&0>I(r,c))a[d]=r,a[v]=c,d=v;else break a}}return b}return null}function I(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}var L=[],M=[],N=1,O=null,P=3,Q=!1,R=!1,S=!1;\nfunction T(a){for(var b=J(M);null!==b;){if(null===b.callback)K(M);else if(b.startTime<=a)K(M),b.sortIndex=b.expirationTime,H(L,b);else break;b=J(M)}}function U(a){S=!1;T(a);if(!R)if(null!==J(L))R=!0,f(V);else{var b=J(M);null!==b&&g(U,b.startTime-a)}}\nfunction V(a,b){R=!1;S&&(S=!1,h());Q=!0;var c=P;try{T(b);for(O=J(L);null!==O&&(!(O.expirationTime>b)||a&&!exports.unstable_shouldYield());){var d=O.callback;if(\"function\"===typeof d){O.callback=null;P=O.priorityLevel;var e=d(O.expirationTime<=b);b=exports.unstable_now();\"function\"===typeof e?O.callback=e:O===J(L)&&K(L);T(b)}else K(L);O=J(L)}if(null!==O)var m=!0;else{var n=J(M);null!==n&&g(U,n.startTime-b);m=!1}return m}finally{O=null,P=c,Q=!1}}var W=k;exports.unstable_IdlePriority=5;\nexports.unstable_ImmediatePriority=1;exports.unstable_LowPriority=4;exports.unstable_NormalPriority=3;exports.unstable_Profiling=null;exports.unstable_UserBlockingPriority=2;exports.unstable_cancelCallback=function(a){a.callback=null};exports.unstable_continueExecution=function(){R||Q||(R=!0,f(V))};exports.unstable_getCurrentPriorityLevel=function(){return P};exports.unstable_getFirstCallbackNode=function(){return J(L)};\nexports.unstable_next=function(a){switch(P){case 1:case 2:case 3:var b=3;break;default:b=P}var c=P;P=b;try{return a()}finally{P=c}};exports.unstable_pauseExecution=function(){};exports.unstable_requestPaint=W;exports.unstable_runWithPriority=function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=P;P=a;try{return b()}finally{P=c}};\nexports.unstable_scheduleCallback=function(a,b,c){var d=exports.unstable_now();\"object\"===typeof c&&null!==c?(c=c.delay,c=\"number\"===typeof c&&0d?(a.sortIndex=c,H(M,a),null===J(L)&&a===J(M)&&(S?h():S=!0,g(U,c-d))):(a.sortIndex=e,H(L,a),R||Q||(R=!0,f(V)));return a};\nexports.unstable_wrapCallback=function(a){var b=P;return function(){var c=P;P=b;try{return a.apply(this,arguments)}finally{P=c}}};\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/scheduler.production.min.js');\n} else {\n module.exports = require('./cjs/scheduler.development.js');\n}\n","/**\n * Copyright (c) 2014-present, Meta Platforms\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\n/**\n * Similar to invariant but only logs a warning if the condition is not met.\n * This can be used to log issues in development environments in critical\n * paths. Removing the logging code for production environments will keep the\n * same logic and follow the same code paths.\n */\n\nvar __DEV__ = process.env.NODE_ENV !== 'production';\n\nvar warning = function() {};\n\nif (__DEV__) {\n var printWarning = function printWarning(format, args) {\n var len = arguments.length;\n args = new Array(len > 1 ? len - 1 : 0);\n for (var key = 1; key < len; key++) {\n args[key - 1] = arguments[key];\n }\n var argIndex = 0;\n var message = 'Warning: ' +\n format.replace(/%s/g, function() {\n return args[argIndex++];\n });\n if (typeof console !== 'undefined') {\n console.error(message);\n }\n try {\n // --- Welcome to debugging React ---\n // This error was thrown as a convenience so that you can use this stack\n // to find the callsite that caused this warning to fire.\n throw new Error(message);\n } catch (x) {}\n }\n\n warning = function(condition, format, args) {\n var len = arguments.length;\n args = new Array(len > 2 ? len - 2 : 0);\n for (var key = 2; key < len; key++) {\n args[key - 2] = arguments[key];\n }\n if (format === undefined) {\n throw new Error(\n '`warning(condition, format, ...args)` requires a warning ' +\n 'message argument'\n );\n }\n if (!condition) {\n printWarning.apply(null, [format].concat(args));\n }\n };\n}\n\nmodule.exports = warning;\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = function(module) {\n\tvar getter = module && module.__esModule ?\n\t\tfunction() { return module['default']; } :\n\t\tfunction() { return module; };\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(exports) {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","export default function _setPrototypeOf(o, p) {\n _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {\n o.__proto__ = p;\n return o;\n };\n\n return _setPrototypeOf(o, p);\n}","import setPrototypeOf from \"./setPrototypeOf.js\";\nexport default function _inheritsLoose(subClass, superClass) {\n subClass.prototype = Object.create(superClass.prototype);\n subClass.prototype.constructor = subClass;\n setPrototypeOf(subClass, superClass);\n}","export default function _extends() {\n _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n };\n\n return _extends.apply(this, arguments);\n}","function isAbsolute(pathname) {\n return pathname.charAt(0) === '/';\n}\n\n// About 1.5x faster than the two-arg version of Array#splice()\nfunction spliceOne(list, index) {\n for (var i = index, k = i + 1, n = list.length; k < n; i += 1, k += 1) {\n list[i] = list[k];\n }\n\n list.pop();\n}\n\n// This implementation is based heavily on node's url.parse\nfunction resolvePathname(to, from) {\n if (from === undefined) from = '';\n\n var toParts = (to && to.split('/')) || [];\n var fromParts = (from && from.split('/')) || [];\n\n var isToAbs = to && isAbsolute(to);\n var isFromAbs = from && isAbsolute(from);\n var mustEndAbs = isToAbs || isFromAbs;\n\n if (to && isAbsolute(to)) {\n // to is absolute\n fromParts = toParts;\n } else if (toParts.length) {\n // to is relative, drop the filename\n fromParts.pop();\n fromParts = fromParts.concat(toParts);\n }\n\n if (!fromParts.length) return '/';\n\n var hasTrailingSlash;\n if (fromParts.length) {\n var last = fromParts[fromParts.length - 1];\n hasTrailingSlash = last === '.' || last === '..' || last === '';\n } else {\n hasTrailingSlash = false;\n }\n\n var up = 0;\n for (var i = fromParts.length; i >= 0; i--) {\n var part = fromParts[i];\n\n if (part === '.') {\n spliceOne(fromParts, i);\n } else if (part === '..') {\n spliceOne(fromParts, i);\n up++;\n } else if (up) {\n spliceOne(fromParts, i);\n up--;\n }\n }\n\n if (!mustEndAbs) for (; up--; up) fromParts.unshift('..');\n\n if (\n mustEndAbs &&\n fromParts[0] !== '' &&\n (!fromParts[0] || !isAbsolute(fromParts[0]))\n )\n fromParts.unshift('');\n\n var result = fromParts.join('/');\n\n if (hasTrailingSlash && result.substr(-1) !== '/') result += '/';\n\n return result;\n}\n\nexport default resolvePathname;\n","function valueOf(obj) {\n return obj.valueOf ? obj.valueOf() : Object.prototype.valueOf.call(obj);\n}\n\nfunction valueEqual(a, b) {\n // Test for strict equality first.\n if (a === b) return true;\n\n // Otherwise, if either of them == null they are not equal.\n if (a == null || b == null) return false;\n\n if (Array.isArray(a)) {\n return (\n Array.isArray(b) &&\n a.length === b.length &&\n a.every(function(item, index) {\n return valueEqual(item, b[index]);\n })\n );\n }\n\n if (typeof a === 'object' || typeof b === 'object') {\n var aValue = valueOf(a);\n var bValue = valueOf(b);\n\n if (aValue !== a || bValue !== b) return valueEqual(aValue, bValue);\n\n return Object.keys(Object.assign({}, a, b)).every(function(key) {\n return valueEqual(a[key], b[key]);\n });\n }\n\n return false;\n}\n\nexport default valueEqual;\n","var isProduction = process.env.NODE_ENV === 'production';\nvar prefix = 'Invariant failed';\nfunction invariant(condition, message) {\n if (condition) {\n return;\n }\n if (isProduction) {\n throw new Error(prefix);\n }\n var provided = typeof message === 'function' ? message() : message;\n var value = provided ? prefix + \": \" + provided : prefix;\n throw new Error(value);\n}\n\nexport { invariant as default };\n","import _extends from '@babel/runtime/helpers/esm/extends';\nimport resolvePathname from 'resolve-pathname';\nimport valueEqual from 'value-equal';\nimport warning from 'tiny-warning';\nimport invariant from 'tiny-invariant';\n\nfunction addLeadingSlash(path) {\n return path.charAt(0) === '/' ? path : '/' + path;\n}\nfunction stripLeadingSlash(path) {\n return path.charAt(0) === '/' ? path.substr(1) : path;\n}\nfunction hasBasename(path, prefix) {\n return path.toLowerCase().indexOf(prefix.toLowerCase()) === 0 && '/?#'.indexOf(path.charAt(prefix.length)) !== -1;\n}\nfunction stripBasename(path, prefix) {\n return hasBasename(path, prefix) ? path.substr(prefix.length) : path;\n}\nfunction stripTrailingSlash(path) {\n return path.charAt(path.length - 1) === '/' ? path.slice(0, -1) : path;\n}\nfunction parsePath(path) {\n var pathname = path || '/';\n var search = '';\n var hash = '';\n var hashIndex = pathname.indexOf('#');\n\n if (hashIndex !== -1) {\n hash = pathname.substr(hashIndex);\n pathname = pathname.substr(0, hashIndex);\n }\n\n var searchIndex = pathname.indexOf('?');\n\n if (searchIndex !== -1) {\n search = pathname.substr(searchIndex);\n pathname = pathname.substr(0, searchIndex);\n }\n\n return {\n pathname: pathname,\n search: search === '?' ? '' : search,\n hash: hash === '#' ? '' : hash\n };\n}\nfunction createPath(location) {\n var pathname = location.pathname,\n search = location.search,\n hash = location.hash;\n var path = pathname || '/';\n if (search && search !== '?') path += search.charAt(0) === '?' ? search : \"?\" + search;\n if (hash && hash !== '#') path += hash.charAt(0) === '#' ? hash : \"#\" + hash;\n return path;\n}\n\nfunction createLocation(path, state, key, currentLocation) {\n var location;\n\n if (typeof path === 'string') {\n // Two-arg form: push(path, state)\n location = parsePath(path);\n location.state = state;\n } else {\n // One-arg form: push(location)\n location = _extends({}, path);\n if (location.pathname === undefined) location.pathname = '';\n\n if (location.search) {\n if (location.search.charAt(0) !== '?') location.search = '?' + location.search;\n } else {\n location.search = '';\n }\n\n if (location.hash) {\n if (location.hash.charAt(0) !== '#') location.hash = '#' + location.hash;\n } else {\n location.hash = '';\n }\n\n if (state !== undefined && location.state === undefined) location.state = state;\n }\n\n try {\n location.pathname = decodeURI(location.pathname);\n } catch (e) {\n if (e instanceof URIError) {\n throw new URIError('Pathname \"' + location.pathname + '\" could not be decoded. ' + 'This is likely caused by an invalid percent-encoding.');\n } else {\n throw e;\n }\n }\n\n if (key) location.key = key;\n\n if (currentLocation) {\n // Resolve incomplete/relative pathname relative to current location.\n if (!location.pathname) {\n location.pathname = currentLocation.pathname;\n } else if (location.pathname.charAt(0) !== '/') {\n location.pathname = resolvePathname(location.pathname, currentLocation.pathname);\n }\n } else {\n // When there is no prior location and pathname is empty, set it to /\n if (!location.pathname) {\n location.pathname = '/';\n }\n }\n\n return location;\n}\nfunction locationsAreEqual(a, b) {\n return a.pathname === b.pathname && a.search === b.search && a.hash === b.hash && a.key === b.key && valueEqual(a.state, b.state);\n}\n\nfunction createTransitionManager() {\n var prompt = null;\n\n function setPrompt(nextPrompt) {\n process.env.NODE_ENV !== \"production\" ? warning(prompt == null, 'A history supports only one prompt at a time') : void 0;\n prompt = nextPrompt;\n return function () {\n if (prompt === nextPrompt) prompt = null;\n };\n }\n\n function confirmTransitionTo(location, action, getUserConfirmation, callback) {\n // TODO: If another transition starts while we're still confirming\n // the previous one, we may end up in a weird state. Figure out the\n // best way to handle this.\n if (prompt != null) {\n var result = typeof prompt === 'function' ? prompt(location, action) : prompt;\n\n if (typeof result === 'string') {\n if (typeof getUserConfirmation === 'function') {\n getUserConfirmation(result, callback);\n } else {\n process.env.NODE_ENV !== \"production\" ? warning(false, 'A history needs a getUserConfirmation function in order to use a prompt message') : void 0;\n callback(true);\n }\n } else {\n // Return false from a transition hook to cancel the transition.\n callback(result !== false);\n }\n } else {\n callback(true);\n }\n }\n\n var listeners = [];\n\n function appendListener(fn) {\n var isActive = true;\n\n function listener() {\n if (isActive) fn.apply(void 0, arguments);\n }\n\n listeners.push(listener);\n return function () {\n isActive = false;\n listeners = listeners.filter(function (item) {\n return item !== listener;\n });\n };\n }\n\n function notifyListeners() {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n listeners.forEach(function (listener) {\n return listener.apply(void 0, args);\n });\n }\n\n return {\n setPrompt: setPrompt,\n confirmTransitionTo: confirmTransitionTo,\n appendListener: appendListener,\n notifyListeners: notifyListeners\n };\n}\n\nvar canUseDOM = !!(typeof window !== 'undefined' && window.document && window.document.createElement);\nfunction getConfirmation(message, callback) {\n callback(window.confirm(message)); // eslint-disable-line no-alert\n}\n/**\n * Returns true if the HTML5 history API is supported. Taken from Modernizr.\n *\n * https://github.com/Modernizr/Modernizr/blob/master/LICENSE\n * https://github.com/Modernizr/Modernizr/blob/master/feature-detects/history.js\n * changed to avoid false negatives for Windows Phones: https://github.com/reactjs/react-router/issues/586\n */\n\nfunction supportsHistory() {\n var ua = window.navigator.userAgent;\n if ((ua.indexOf('Android 2.') !== -1 || ua.indexOf('Android 4.0') !== -1) && ua.indexOf('Mobile Safari') !== -1 && ua.indexOf('Chrome') === -1 && ua.indexOf('Windows Phone') === -1) return false;\n return window.history && 'pushState' in window.history;\n}\n/**\n * Returns true if browser fires popstate on hash change.\n * IE10 and IE11 do not.\n */\n\nfunction supportsPopStateOnHashChange() {\n return window.navigator.userAgent.indexOf('Trident') === -1;\n}\n/**\n * Returns false if using go(n) with hash history causes a full page reload.\n */\n\nfunction supportsGoWithoutReloadUsingHash() {\n return window.navigator.userAgent.indexOf('Firefox') === -1;\n}\n/**\n * Returns true if a given popstate event is an extraneous WebKit event.\n * Accounts for the fact that Chrome on iOS fires real popstate events\n * containing undefined state when pressing the back button.\n */\n\nfunction isExtraneousPopstateEvent(event) {\n return event.state === undefined && navigator.userAgent.indexOf('CriOS') === -1;\n}\n\nvar PopStateEvent = 'popstate';\nvar HashChangeEvent = 'hashchange';\n\nfunction getHistoryState() {\n try {\n return window.history.state || {};\n } catch (e) {\n // IE 11 sometimes throws when accessing window.history.state\n // See https://github.com/ReactTraining/history/pull/289\n return {};\n }\n}\n/**\n * Creates a history object that uses the HTML5 history API including\n * pushState, replaceState, and the popstate event.\n */\n\n\nfunction createBrowserHistory(props) {\n if (props === void 0) {\n props = {};\n }\n\n !canUseDOM ? process.env.NODE_ENV !== \"production\" ? invariant(false, 'Browser history needs a DOM') : invariant(false) : void 0;\n var globalHistory = window.history;\n var canUseHistory = supportsHistory();\n var needsHashChangeListener = !supportsPopStateOnHashChange();\n var _props = props,\n _props$forceRefresh = _props.forceRefresh,\n forceRefresh = _props$forceRefresh === void 0 ? false : _props$forceRefresh,\n _props$getUserConfirm = _props.getUserConfirmation,\n getUserConfirmation = _props$getUserConfirm === void 0 ? getConfirmation : _props$getUserConfirm,\n _props$keyLength = _props.keyLength,\n keyLength = _props$keyLength === void 0 ? 6 : _props$keyLength;\n var basename = props.basename ? stripTrailingSlash(addLeadingSlash(props.basename)) : '';\n\n function getDOMLocation(historyState) {\n var _ref = historyState || {},\n key = _ref.key,\n state = _ref.state;\n\n var _window$location = window.location,\n pathname = _window$location.pathname,\n search = _window$location.search,\n hash = _window$location.hash;\n var path = pathname + search + hash;\n process.env.NODE_ENV !== \"production\" ? warning(!basename || hasBasename(path, basename), 'You are attempting to use a basename on a page whose URL path does not begin ' + 'with the basename. Expected path \"' + path + '\" to begin with \"' + basename + '\".') : void 0;\n if (basename) path = stripBasename(path, basename);\n return createLocation(path, state, key);\n }\n\n function createKey() {\n return Math.random().toString(36).substr(2, keyLength);\n }\n\n var transitionManager = createTransitionManager();\n\n function setState(nextState) {\n _extends(history, nextState);\n\n history.length = globalHistory.length;\n transitionManager.notifyListeners(history.location, history.action);\n }\n\n function handlePopState(event) {\n // Ignore extraneous popstate events in WebKit.\n if (isExtraneousPopstateEvent(event)) return;\n handlePop(getDOMLocation(event.state));\n }\n\n function handleHashChange() {\n handlePop(getDOMLocation(getHistoryState()));\n }\n\n var forceNextPop = false;\n\n function handlePop(location) {\n if (forceNextPop) {\n forceNextPop = false;\n setState();\n } else {\n var action = 'POP';\n transitionManager.confirmTransitionTo(location, action, getUserConfirmation, function (ok) {\n if (ok) {\n setState({\n action: action,\n location: location\n });\n } else {\n revertPop(location);\n }\n });\n }\n }\n\n function revertPop(fromLocation) {\n var toLocation = history.location; // TODO: We could probably make this more reliable by\n // keeping a list of keys we've seen in sessionStorage.\n // Instead, we just default to 0 for keys we don't know.\n\n var toIndex = allKeys.indexOf(toLocation.key);\n if (toIndex === -1) toIndex = 0;\n var fromIndex = allKeys.indexOf(fromLocation.key);\n if (fromIndex === -1) fromIndex = 0;\n var delta = toIndex - fromIndex;\n\n if (delta) {\n forceNextPop = true;\n go(delta);\n }\n }\n\n var initialLocation = getDOMLocation(getHistoryState());\n var allKeys = [initialLocation.key]; // Public interface\n\n function createHref(location) {\n return basename + createPath(location);\n }\n\n function push(path, state) {\n process.env.NODE_ENV !== \"production\" ? warning(!(typeof path === 'object' && path.state !== undefined && state !== undefined), 'You should avoid providing a 2nd state argument to push when the 1st ' + 'argument is a location-like object that already has state; it is ignored') : void 0;\n var action = 'PUSH';\n var location = createLocation(path, state, createKey(), history.location);\n transitionManager.confirmTransitionTo(location, action, getUserConfirmation, function (ok) {\n if (!ok) return;\n var href = createHref(location);\n var key = location.key,\n state = location.state;\n\n if (canUseHistory) {\n globalHistory.pushState({\n key: key,\n state: state\n }, null, href);\n\n if (forceRefresh) {\n window.location.href = href;\n } else {\n var prevIndex = allKeys.indexOf(history.location.key);\n var nextKeys = allKeys.slice(0, prevIndex + 1);\n nextKeys.push(location.key);\n allKeys = nextKeys;\n setState({\n action: action,\n location: location\n });\n }\n } else {\n process.env.NODE_ENV !== \"production\" ? warning(state === undefined, 'Browser history cannot push state in browsers that do not support HTML5 history') : void 0;\n window.location.href = href;\n }\n });\n }\n\n function replace(path, state) {\n process.env.NODE_ENV !== \"production\" ? warning(!(typeof path === 'object' && path.state !== undefined && state !== undefined), 'You should avoid providing a 2nd state argument to replace when the 1st ' + 'argument is a location-like object that already has state; it is ignored') : void 0;\n var action = 'REPLACE';\n var location = createLocation(path, state, createKey(), history.location);\n transitionManager.confirmTransitionTo(location, action, getUserConfirmation, function (ok) {\n if (!ok) return;\n var href = createHref(location);\n var key = location.key,\n state = location.state;\n\n if (canUseHistory) {\n globalHistory.replaceState({\n key: key,\n state: state\n }, null, href);\n\n if (forceRefresh) {\n window.location.replace(href);\n } else {\n var prevIndex = allKeys.indexOf(history.location.key);\n if (prevIndex !== -1) allKeys[prevIndex] = location.key;\n setState({\n action: action,\n location: location\n });\n }\n } else {\n process.env.NODE_ENV !== \"production\" ? warning(state === undefined, 'Browser history cannot replace state in browsers that do not support HTML5 history') : void 0;\n window.location.replace(href);\n }\n });\n }\n\n function go(n) {\n globalHistory.go(n);\n }\n\n function goBack() {\n go(-1);\n }\n\n function goForward() {\n go(1);\n }\n\n var listenerCount = 0;\n\n function checkDOMListeners(delta) {\n listenerCount += delta;\n\n if (listenerCount === 1 && delta === 1) {\n window.addEventListener(PopStateEvent, handlePopState);\n if (needsHashChangeListener) window.addEventListener(HashChangeEvent, handleHashChange);\n } else if (listenerCount === 0) {\n window.removeEventListener(PopStateEvent, handlePopState);\n if (needsHashChangeListener) window.removeEventListener(HashChangeEvent, handleHashChange);\n }\n }\n\n var isBlocked = false;\n\n function block(prompt) {\n if (prompt === void 0) {\n prompt = false;\n }\n\n var unblock = transitionManager.setPrompt(prompt);\n\n if (!isBlocked) {\n checkDOMListeners(1);\n isBlocked = true;\n }\n\n return function () {\n if (isBlocked) {\n isBlocked = false;\n checkDOMListeners(-1);\n }\n\n return unblock();\n };\n }\n\n function listen(listener) {\n var unlisten = transitionManager.appendListener(listener);\n checkDOMListeners(1);\n return function () {\n checkDOMListeners(-1);\n unlisten();\n };\n }\n\n var history = {\n length: globalHistory.length,\n action: 'POP',\n location: initialLocation,\n createHref: createHref,\n push: push,\n replace: replace,\n go: go,\n goBack: goBack,\n goForward: goForward,\n block: block,\n listen: listen\n };\n return history;\n}\n\nvar HashChangeEvent$1 = 'hashchange';\nvar HashPathCoders = {\n hashbang: {\n encodePath: function encodePath(path) {\n return path.charAt(0) === '!' ? path : '!/' + stripLeadingSlash(path);\n },\n decodePath: function decodePath(path) {\n return path.charAt(0) === '!' ? path.substr(1) : path;\n }\n },\n noslash: {\n encodePath: stripLeadingSlash,\n decodePath: addLeadingSlash\n },\n slash: {\n encodePath: addLeadingSlash,\n decodePath: addLeadingSlash\n }\n};\n\nfunction stripHash(url) {\n var hashIndex = url.indexOf('#');\n return hashIndex === -1 ? url : url.slice(0, hashIndex);\n}\n\nfunction getHashPath() {\n // We can't use window.location.hash here because it's not\n // consistent across browsers - Firefox will pre-decode it!\n var href = window.location.href;\n var hashIndex = href.indexOf('#');\n return hashIndex === -1 ? '' : href.substring(hashIndex + 1);\n}\n\nfunction pushHashPath(path) {\n window.location.hash = path;\n}\n\nfunction replaceHashPath(path) {\n window.location.replace(stripHash(window.location.href) + '#' + path);\n}\n\nfunction createHashHistory(props) {\n if (props === void 0) {\n props = {};\n }\n\n !canUseDOM ? process.env.NODE_ENV !== \"production\" ? invariant(false, 'Hash history needs a DOM') : invariant(false) : void 0;\n var globalHistory = window.history;\n var canGoWithoutReload = supportsGoWithoutReloadUsingHash();\n var _props = props,\n _props$getUserConfirm = _props.getUserConfirmation,\n getUserConfirmation = _props$getUserConfirm === void 0 ? getConfirmation : _props$getUserConfirm,\n _props$hashType = _props.hashType,\n hashType = _props$hashType === void 0 ? 'slash' : _props$hashType;\n var basename = props.basename ? stripTrailingSlash(addLeadingSlash(props.basename)) : '';\n var _HashPathCoders$hashT = HashPathCoders[hashType],\n encodePath = _HashPathCoders$hashT.encodePath,\n decodePath = _HashPathCoders$hashT.decodePath;\n\n function getDOMLocation() {\n var path = decodePath(getHashPath());\n process.env.NODE_ENV !== \"production\" ? warning(!basename || hasBasename(path, basename), 'You are attempting to use a basename on a page whose URL path does not begin ' + 'with the basename. Expected path \"' + path + '\" to begin with \"' + basename + '\".') : void 0;\n if (basename) path = stripBasename(path, basename);\n return createLocation(path);\n }\n\n var transitionManager = createTransitionManager();\n\n function setState(nextState) {\n _extends(history, nextState);\n\n history.length = globalHistory.length;\n transitionManager.notifyListeners(history.location, history.action);\n }\n\n var forceNextPop = false;\n var ignorePath = null;\n\n function locationsAreEqual$$1(a, b) {\n return a.pathname === b.pathname && a.search === b.search && a.hash === b.hash;\n }\n\n function handleHashChange() {\n var path = getHashPath();\n var encodedPath = encodePath(path);\n\n if (path !== encodedPath) {\n // Ensure we always have a properly-encoded hash.\n replaceHashPath(encodedPath);\n } else {\n var location = getDOMLocation();\n var prevLocation = history.location;\n if (!forceNextPop && locationsAreEqual$$1(prevLocation, location)) return; // A hashchange doesn't always == location change.\n\n if (ignorePath === createPath(location)) return; // Ignore this change; we already setState in push/replace.\n\n ignorePath = null;\n handlePop(location);\n }\n }\n\n function handlePop(location) {\n if (forceNextPop) {\n forceNextPop = false;\n setState();\n } else {\n var action = 'POP';\n transitionManager.confirmTransitionTo(location, action, getUserConfirmation, function (ok) {\n if (ok) {\n setState({\n action: action,\n location: location\n });\n } else {\n revertPop(location);\n }\n });\n }\n }\n\n function revertPop(fromLocation) {\n var toLocation = history.location; // TODO: We could probably make this more reliable by\n // keeping a list of paths we've seen in sessionStorage.\n // Instead, we just default to 0 for paths we don't know.\n\n var toIndex = allPaths.lastIndexOf(createPath(toLocation));\n if (toIndex === -1) toIndex = 0;\n var fromIndex = allPaths.lastIndexOf(createPath(fromLocation));\n if (fromIndex === -1) fromIndex = 0;\n var delta = toIndex - fromIndex;\n\n if (delta) {\n forceNextPop = true;\n go(delta);\n }\n } // Ensure the hash is encoded properly before doing anything else.\n\n\n var path = getHashPath();\n var encodedPath = encodePath(path);\n if (path !== encodedPath) replaceHashPath(encodedPath);\n var initialLocation = getDOMLocation();\n var allPaths = [createPath(initialLocation)]; // Public interface\n\n function createHref(location) {\n var baseTag = document.querySelector('base');\n var href = '';\n\n if (baseTag && baseTag.getAttribute('href')) {\n href = stripHash(window.location.href);\n }\n\n return href + '#' + encodePath(basename + createPath(location));\n }\n\n function push(path, state) {\n process.env.NODE_ENV !== \"production\" ? warning(state === undefined, 'Hash history cannot push state; it is ignored') : void 0;\n var action = 'PUSH';\n var location = createLocation(path, undefined, undefined, history.location);\n transitionManager.confirmTransitionTo(location, action, getUserConfirmation, function (ok) {\n if (!ok) return;\n var path = createPath(location);\n var encodedPath = encodePath(basename + path);\n var hashChanged = getHashPath() !== encodedPath;\n\n if (hashChanged) {\n // We cannot tell if a hashchange was caused by a PUSH, so we'd\n // rather setState here and ignore the hashchange. The caveat here\n // is that other hash histories in the page will consider it a POP.\n ignorePath = path;\n pushHashPath(encodedPath);\n var prevIndex = allPaths.lastIndexOf(createPath(history.location));\n var nextPaths = allPaths.slice(0, prevIndex + 1);\n nextPaths.push(path);\n allPaths = nextPaths;\n setState({\n action: action,\n location: location\n });\n } else {\n process.env.NODE_ENV !== \"production\" ? warning(false, 'Hash history cannot PUSH the same path; a new entry will not be added to the history stack') : void 0;\n setState();\n }\n });\n }\n\n function replace(path, state) {\n process.env.NODE_ENV !== \"production\" ? warning(state === undefined, 'Hash history cannot replace state; it is ignored') : void 0;\n var action = 'REPLACE';\n var location = createLocation(path, undefined, undefined, history.location);\n transitionManager.confirmTransitionTo(location, action, getUserConfirmation, function (ok) {\n if (!ok) return;\n var path = createPath(location);\n var encodedPath = encodePath(basename + path);\n var hashChanged = getHashPath() !== encodedPath;\n\n if (hashChanged) {\n // We cannot tell if a hashchange was caused by a REPLACE, so we'd\n // rather setState here and ignore the hashchange. The caveat here\n // is that other hash histories in the page will consider it a POP.\n ignorePath = path;\n replaceHashPath(encodedPath);\n }\n\n var prevIndex = allPaths.indexOf(createPath(history.location));\n if (prevIndex !== -1) allPaths[prevIndex] = path;\n setState({\n action: action,\n location: location\n });\n });\n }\n\n function go(n) {\n process.env.NODE_ENV !== \"production\" ? warning(canGoWithoutReload, 'Hash history go(n) causes a full page reload in this browser') : void 0;\n globalHistory.go(n);\n }\n\n function goBack() {\n go(-1);\n }\n\n function goForward() {\n go(1);\n }\n\n var listenerCount = 0;\n\n function checkDOMListeners(delta) {\n listenerCount += delta;\n\n if (listenerCount === 1 && delta === 1) {\n window.addEventListener(HashChangeEvent$1, handleHashChange);\n } else if (listenerCount === 0) {\n window.removeEventListener(HashChangeEvent$1, handleHashChange);\n }\n }\n\n var isBlocked = false;\n\n function block(prompt) {\n if (prompt === void 0) {\n prompt = false;\n }\n\n var unblock = transitionManager.setPrompt(prompt);\n\n if (!isBlocked) {\n checkDOMListeners(1);\n isBlocked = true;\n }\n\n return function () {\n if (isBlocked) {\n isBlocked = false;\n checkDOMListeners(-1);\n }\n\n return unblock();\n };\n }\n\n function listen(listener) {\n var unlisten = transitionManager.appendListener(listener);\n checkDOMListeners(1);\n return function () {\n checkDOMListeners(-1);\n unlisten();\n };\n }\n\n var history = {\n length: globalHistory.length,\n action: 'POP',\n location: initialLocation,\n createHref: createHref,\n push: push,\n replace: replace,\n go: go,\n goBack: goBack,\n goForward: goForward,\n block: block,\n listen: listen\n };\n return history;\n}\n\nfunction clamp(n, lowerBound, upperBound) {\n return Math.min(Math.max(n, lowerBound), upperBound);\n}\n/**\n * Creates a history object that stores locations in memory.\n */\n\n\nfunction createMemoryHistory(props) {\n if (props === void 0) {\n props = {};\n }\n\n var _props = props,\n getUserConfirmation = _props.getUserConfirmation,\n _props$initialEntries = _props.initialEntries,\n initialEntries = _props$initialEntries === void 0 ? ['/'] : _props$initialEntries,\n _props$initialIndex = _props.initialIndex,\n initialIndex = _props$initialIndex === void 0 ? 0 : _props$initialIndex,\n _props$keyLength = _props.keyLength,\n keyLength = _props$keyLength === void 0 ? 6 : _props$keyLength;\n var transitionManager = createTransitionManager();\n\n function setState(nextState) {\n _extends(history, nextState);\n\n history.length = history.entries.length;\n transitionManager.notifyListeners(history.location, history.action);\n }\n\n function createKey() {\n return Math.random().toString(36).substr(2, keyLength);\n }\n\n var index = clamp(initialIndex, 0, initialEntries.length - 1);\n var entries = initialEntries.map(function (entry) {\n return typeof entry === 'string' ? createLocation(entry, undefined, createKey()) : createLocation(entry, undefined, entry.key || createKey());\n }); // Public interface\n\n var createHref = createPath;\n\n function push(path, state) {\n process.env.NODE_ENV !== \"production\" ? warning(!(typeof path === 'object' && path.state !== undefined && state !== undefined), 'You should avoid providing a 2nd state argument to push when the 1st ' + 'argument is a location-like object that already has state; it is ignored') : void 0;\n var action = 'PUSH';\n var location = createLocation(path, state, createKey(), history.location);\n transitionManager.confirmTransitionTo(location, action, getUserConfirmation, function (ok) {\n if (!ok) return;\n var prevIndex = history.index;\n var nextIndex = prevIndex + 1;\n var nextEntries = history.entries.slice(0);\n\n if (nextEntries.length > nextIndex) {\n nextEntries.splice(nextIndex, nextEntries.length - nextIndex, location);\n } else {\n nextEntries.push(location);\n }\n\n setState({\n action: action,\n location: location,\n index: nextIndex,\n entries: nextEntries\n });\n });\n }\n\n function replace(path, state) {\n process.env.NODE_ENV !== \"production\" ? warning(!(typeof path === 'object' && path.state !== undefined && state !== undefined), 'You should avoid providing a 2nd state argument to replace when the 1st ' + 'argument is a location-like object that already has state; it is ignored') : void 0;\n var action = 'REPLACE';\n var location = createLocation(path, state, createKey(), history.location);\n transitionManager.confirmTransitionTo(location, action, getUserConfirmation, function (ok) {\n if (!ok) return;\n history.entries[history.index] = location;\n setState({\n action: action,\n location: location\n });\n });\n }\n\n function go(n) {\n var nextIndex = clamp(history.index + n, 0, history.entries.length - 1);\n var action = 'POP';\n var location = history.entries[nextIndex];\n transitionManager.confirmTransitionTo(location, action, getUserConfirmation, function (ok) {\n if (ok) {\n setState({\n action: action,\n location: location,\n index: nextIndex\n });\n } else {\n // Mimic the behavior of DOM histories by\n // causing a render after a cancelled POP.\n setState();\n }\n });\n }\n\n function goBack() {\n go(-1);\n }\n\n function goForward() {\n go(1);\n }\n\n function canGo(n) {\n var nextIndex = history.index + n;\n return nextIndex >= 0 && nextIndex < history.entries.length;\n }\n\n function block(prompt) {\n if (prompt === void 0) {\n prompt = false;\n }\n\n return transitionManager.setPrompt(prompt);\n }\n\n function listen(listener) {\n return transitionManager.appendListener(listener);\n }\n\n var history = {\n length: entries.length,\n action: 'POP',\n location: entries[index],\n index: index,\n entries: entries,\n createHref: createHref,\n push: push,\n replace: replace,\n go: go,\n goBack: goBack,\n goForward: goForward,\n canGo: canGo,\n block: block,\n listen: listen\n };\n return history;\n}\n\nexport { createBrowserHistory, createHashHistory, createMemoryHistory, createLocation, locationsAreEqual, parsePath, createPath };\n","import React, { Component } from 'react';\nimport _inheritsLoose from '@babel/runtime/helpers/esm/inheritsLoose';\nimport PropTypes from 'prop-types';\nimport warning from 'tiny-warning';\n\nvar MAX_SIGNED_31_BIT_INT = 1073741823;\nvar commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : {};\n\nfunction getUniqueId() {\n var key = '__global_unique_id__';\n return commonjsGlobal[key] = (commonjsGlobal[key] || 0) + 1;\n}\n\nfunction objectIs(x, y) {\n if (x === y) {\n return x !== 0 || 1 / x === 1 / y;\n } else {\n return x !== x && y !== y;\n }\n}\n\nfunction createEventEmitter(value) {\n var handlers = [];\n return {\n on: function on(handler) {\n handlers.push(handler);\n },\n off: function off(handler) {\n handlers = handlers.filter(function (h) {\n return h !== handler;\n });\n },\n get: function get() {\n return value;\n },\n set: function set(newValue, changedBits) {\n value = newValue;\n handlers.forEach(function (handler) {\n return handler(value, changedBits);\n });\n }\n };\n}\n\nfunction onlyChild(children) {\n return Array.isArray(children) ? children[0] : children;\n}\n\nfunction createReactContext(defaultValue, calculateChangedBits) {\n var _Provider$childContex, _Consumer$contextType;\n\n var contextProp = '__create-react-context-' + getUniqueId() + '__';\n\n var Provider = /*#__PURE__*/function (_Component) {\n _inheritsLoose(Provider, _Component);\n\n function Provider() {\n var _this;\n\n _this = _Component.apply(this, arguments) || this;\n _this.emitter = createEventEmitter(_this.props.value);\n return _this;\n }\n\n var _proto = Provider.prototype;\n\n _proto.getChildContext = function getChildContext() {\n var _ref;\n\n return _ref = {}, _ref[contextProp] = this.emitter, _ref;\n };\n\n _proto.componentWillReceiveProps = function componentWillReceiveProps(nextProps) {\n if (this.props.value !== nextProps.value) {\n var oldValue = this.props.value;\n var newValue = nextProps.value;\n var changedBits;\n\n if (objectIs(oldValue, newValue)) {\n changedBits = 0;\n } else {\n changedBits = typeof calculateChangedBits === 'function' ? calculateChangedBits(oldValue, newValue) : MAX_SIGNED_31_BIT_INT;\n\n if (process.env.NODE_ENV !== 'production') {\n warning((changedBits & MAX_SIGNED_31_BIT_INT) === changedBits, 'calculateChangedBits: Expected the return value to be a ' + '31-bit integer. Instead received: ' + changedBits);\n }\n\n changedBits |= 0;\n\n if (changedBits !== 0) {\n this.emitter.set(nextProps.value, changedBits);\n }\n }\n }\n };\n\n _proto.render = function render() {\n return this.props.children;\n };\n\n return Provider;\n }(Component);\n\n Provider.childContextTypes = (_Provider$childContex = {}, _Provider$childContex[contextProp] = PropTypes.object.isRequired, _Provider$childContex);\n\n var Consumer = /*#__PURE__*/function (_Component2) {\n _inheritsLoose(Consumer, _Component2);\n\n function Consumer() {\n var _this2;\n\n _this2 = _Component2.apply(this, arguments) || this;\n _this2.state = {\n value: _this2.getValue()\n };\n\n _this2.onUpdate = function (newValue, changedBits) {\n var observedBits = _this2.observedBits | 0;\n\n if ((observedBits & changedBits) !== 0) {\n _this2.setState({\n value: _this2.getValue()\n });\n }\n };\n\n return _this2;\n }\n\n var _proto2 = Consumer.prototype;\n\n _proto2.componentWillReceiveProps = function componentWillReceiveProps(nextProps) {\n var observedBits = nextProps.observedBits;\n this.observedBits = observedBits === undefined || observedBits === null ? MAX_SIGNED_31_BIT_INT : observedBits;\n };\n\n _proto2.componentDidMount = function componentDidMount() {\n if (this.context[contextProp]) {\n this.context[contextProp].on(this.onUpdate);\n }\n\n var observedBits = this.props.observedBits;\n this.observedBits = observedBits === undefined || observedBits === null ? MAX_SIGNED_31_BIT_INT : observedBits;\n };\n\n _proto2.componentWillUnmount = function componentWillUnmount() {\n if (this.context[contextProp]) {\n this.context[contextProp].off(this.onUpdate);\n }\n };\n\n _proto2.getValue = function getValue() {\n if (this.context[contextProp]) {\n return this.context[contextProp].get();\n } else {\n return defaultValue;\n }\n };\n\n _proto2.render = function render() {\n return onlyChild(this.props.children)(this.state.value);\n };\n\n return Consumer;\n }(Component);\n\n Consumer.contextTypes = (_Consumer$contextType = {}, _Consumer$contextType[contextProp] = PropTypes.object, _Consumer$contextType);\n return {\n Provider: Provider,\n Consumer: Consumer\n };\n}\n\nvar index = React.createContext || createReactContext;\n\nexport default index;\n","export default function _objectWithoutPropertiesLoose(source, excluded) {\n if (source == null) return {};\n var target = {};\n var sourceKeys = Object.keys(source);\n var key, i;\n\n for (i = 0; i < sourceKeys.length; i++) {\n key = sourceKeys[i];\n if (excluded.indexOf(key) >= 0) continue;\n target[key] = source[key];\n }\n\n return target;\n}","// TODO: Replace with React.createContext once we can assume React 16+\nimport createContext from \"mini-create-react-context\";\n\nconst createNamedContext = name => {\n const context = createContext();\n context.displayName = name;\n\n return context;\n};\n\nexport default createNamedContext;\n","import createNamedContext from \"./createNameContext\";\n\nconst historyContext = /*#__PURE__*/ createNamedContext(\"Router-History\");\nexport default historyContext;\n","import createNamedContext from \"./createNameContext\";\n\nconst context = /*#__PURE__*/ createNamedContext(\"Router\");\nexport default context;\n","import React from \"react\";\nimport PropTypes from \"prop-types\";\nimport warning from \"tiny-warning\";\n\nimport HistoryContext from \"./HistoryContext.js\";\nimport RouterContext from \"./RouterContext.js\";\n\n/**\n * The public API for putting history on context.\n */\nclass Router extends React.Component {\n static computeRootMatch(pathname) {\n return { path: \"/\", url: \"/\", params: {}, isExact: pathname === \"/\" };\n }\n\n constructor(props) {\n super(props);\n\n this.state = {\n location: props.history.location\n };\n\n // This is a bit of a hack. We have to start listening for location\n // changes here in the constructor in case there are any s\n // on the initial render. If there are, they will replace/push when\n // they mount and since cDM fires in children before parents, we may\n // get a new location before the is mounted.\n this._isMounted = false;\n this._pendingLocation = null;\n\n if (!props.staticContext) {\n this.unlisten = props.history.listen(location => {\n if (this._isMounted) {\n this.setState({ location });\n } else {\n this._pendingLocation = location;\n }\n });\n }\n }\n\n componentDidMount() {\n this._isMounted = true;\n\n if (this._pendingLocation) {\n this.setState({ location: this._pendingLocation });\n }\n }\n\n componentWillUnmount() {\n if (this.unlisten) {\n this.unlisten();\n this._isMounted = false;\n this._pendingLocation = null;\n }\n }\n\n render() {\n return (\n \n \n \n );\n }\n}\n\nif (__DEV__) {\n Router.propTypes = {\n children: PropTypes.node,\n history: PropTypes.object.isRequired,\n staticContext: PropTypes.object\n };\n\n Router.prototype.componentDidUpdate = function(prevProps) {\n warning(\n prevProps.history === this.props.history,\n \"You cannot change \"\n );\n };\n}\n\nexport default Router;\n","import React from \"react\";\nimport PropTypes from \"prop-types\";\nimport { createMemoryHistory as createHistory } from \"history\";\nimport warning from \"tiny-warning\";\n\nimport Router from \"./Router.js\";\n\n/**\n * The public API for a that stores location in memory.\n */\nclass MemoryRouter extends React.Component {\n history = createHistory(this.props);\n\n render() {\n return ;\n }\n}\n\nif (__DEV__) {\n MemoryRouter.propTypes = {\n initialEntries: PropTypes.array,\n initialIndex: PropTypes.number,\n getUserConfirmation: PropTypes.func,\n keyLength: PropTypes.number,\n children: PropTypes.node\n };\n\n MemoryRouter.prototype.componentDidMount = function() {\n warning(\n !this.props.history,\n \" ignores the history prop. To use a custom history, \" +\n \"use `import { Router }` instead of `import { MemoryRouter as Router }`.\"\n );\n };\n}\n\nexport default MemoryRouter;\n","import React from \"react\";\n\nclass Lifecycle extends React.Component {\n componentDidMount() {\n if (this.props.onMount) this.props.onMount.call(this, this);\n }\n\n componentDidUpdate(prevProps) {\n if (this.props.onUpdate) this.props.onUpdate.call(this, this, prevProps);\n }\n\n componentWillUnmount() {\n if (this.props.onUnmount) this.props.onUnmount.call(this, this);\n }\n\n render() {\n return null;\n }\n}\n\nexport default Lifecycle;\n","import pathToRegexp from \"path-to-regexp\";\n\nconst cache = {};\nconst cacheLimit = 10000;\nlet cacheCount = 0;\n\nfunction compilePath(path) {\n if (cache[path]) return cache[path];\n\n const generator = pathToRegexp.compile(path);\n\n if (cacheCount < cacheLimit) {\n cache[path] = generator;\n cacheCount++;\n }\n\n return generator;\n}\n\n/**\n * Public API for generating a URL pathname from a path and parameters.\n */\nfunction generatePath(path = \"/\", params = {}) {\n return path === \"/\" ? path : compilePath(path)(params, { pretty: true });\n}\n\nexport default generatePath;\n","import React from \"react\";\nimport PropTypes from \"prop-types\";\nimport { createLocation, locationsAreEqual } from \"history\";\nimport invariant from \"tiny-invariant\";\n\nimport Lifecycle from \"./Lifecycle.js\";\nimport RouterContext from \"./RouterContext.js\";\nimport generatePath from \"./generatePath.js\";\n\n/**\n * The public API for navigating programmatically with a component.\n */\nfunction Redirect({ computedMatch, to, push = false }) {\n return (\n \n {context => {\n invariant(context, \"You should not use outside a \");\n\n const { history, staticContext } = context;\n\n const method = push ? history.push : history.replace;\n const location = createLocation(\n computedMatch\n ? typeof to === \"string\"\n ? generatePath(to, computedMatch.params)\n : {\n ...to,\n pathname: generatePath(to.pathname, computedMatch.params)\n }\n : to\n );\n\n // When rendering in a static context,\n // set the new location immediately.\n if (staticContext) {\n method(location);\n return null;\n }\n\n return (\n {\n method(location);\n }}\n onUpdate={(self, prevProps) => {\n const prevLocation = createLocation(prevProps.to);\n if (\n !locationsAreEqual(prevLocation, {\n ...location,\n key: prevLocation.key\n })\n ) {\n method(location);\n }\n }}\n to={to}\n />\n );\n }}\n \n );\n}\n\nif (__DEV__) {\n Redirect.propTypes = {\n push: PropTypes.bool,\n from: PropTypes.string,\n to: PropTypes.oneOfType([PropTypes.string, PropTypes.object]).isRequired\n };\n}\n\nexport default Redirect;\n","import pathToRegexp from \"path-to-regexp\";\n\nconst cache = {};\nconst cacheLimit = 10000;\nlet cacheCount = 0;\n\nfunction compilePath(path, options) {\n const cacheKey = `${options.end}${options.strict}${options.sensitive}`;\n const pathCache = cache[cacheKey] || (cache[cacheKey] = {});\n\n if (pathCache[path]) return pathCache[path];\n\n const keys = [];\n const regexp = pathToRegexp(path, keys, options);\n const result = { regexp, keys };\n\n if (cacheCount < cacheLimit) {\n pathCache[path] = result;\n cacheCount++;\n }\n\n return result;\n}\n\n/**\n * Public API for matching a URL pathname to a path.\n */\nfunction matchPath(pathname, options = {}) {\n if (typeof options === \"string\" || Array.isArray(options)) {\n options = { path: options };\n }\n\n const { path, exact = false, strict = false, sensitive = false } = options;\n\n const paths = [].concat(path);\n\n return paths.reduce((matched, path) => {\n if (!path && path !== \"\") return null;\n if (matched) return matched;\n\n const { regexp, keys } = compilePath(path, {\n end: exact,\n strict,\n sensitive\n });\n const match = regexp.exec(pathname);\n\n if (!match) return null;\n\n const [url, ...values] = match;\n const isExact = pathname === url;\n\n if (exact && !isExact) return null;\n\n return {\n path, // the path used to match\n url: path === \"/\" && url === \"\" ? \"/\" : url, // the matched portion of the URL\n isExact, // whether or not we matched exactly\n params: keys.reduce((memo, key, index) => {\n memo[key.name] = values[index];\n return memo;\n }, {})\n };\n }, null);\n}\n\nexport default matchPath;\n","import React from \"react\";\nimport { isValidElementType } from \"react-is\";\nimport PropTypes from \"prop-types\";\nimport invariant from \"tiny-invariant\";\nimport warning from \"tiny-warning\";\n\nimport RouterContext from \"./RouterContext.js\";\nimport matchPath from \"./matchPath.js\";\n\nfunction isEmptyChildren(children) {\n return React.Children.count(children) === 0;\n}\n\nfunction evalChildrenDev(children, props, path) {\n const value = children(props);\n\n warning(\n value !== undefined,\n \"You returned `undefined` from the `children` function of \" +\n `, but you ` +\n \"should have returned a React element or `null`\"\n );\n\n return value || null;\n}\n\n/**\n * The public API for matching a single path and rendering.\n */\nclass Route extends React.Component {\n render() {\n return (\n \n {context => {\n invariant(context, \"You should not use outside a \");\n\n const location = this.props.location || context.location;\n const match = this.props.computedMatch\n ? this.props.computedMatch // already computed the match for us\n : this.props.path\n ? matchPath(location.pathname, this.props)\n : context.match;\n\n const props = { ...context, location, match };\n\n let { children, component, render } = this.props;\n\n // Preact uses an empty array as children by\n // default, so use null if that's the case.\n if (Array.isArray(children) && isEmptyChildren(children)) {\n children = null;\n }\n\n return (\n \n {props.match\n ? children\n ? typeof children === \"function\"\n ? __DEV__\n ? evalChildrenDev(children, props, this.props.path)\n : children(props)\n : children\n : component\n ? React.createElement(component, props)\n : render\n ? render(props)\n : null\n : typeof children === \"function\"\n ? __DEV__\n ? evalChildrenDev(children, props, this.props.path)\n : children(props)\n : null}\n \n );\n }}\n \n );\n }\n}\n\nif (__DEV__) {\n Route.propTypes = {\n children: PropTypes.oneOfType([PropTypes.func, PropTypes.node]),\n component: (props, propName) => {\n if (props[propName] && !isValidElementType(props[propName])) {\n return new Error(\n `Invalid prop 'component' supplied to 'Route': the prop is not a valid React component`\n );\n }\n },\n exact: PropTypes.bool,\n location: PropTypes.object,\n path: PropTypes.oneOfType([\n PropTypes.string,\n PropTypes.arrayOf(PropTypes.string)\n ]),\n render: PropTypes.func,\n sensitive: PropTypes.bool,\n strict: PropTypes.bool\n };\n\n Route.prototype.componentDidMount = function() {\n warning(\n !(\n this.props.children &&\n !isEmptyChildren(this.props.children) &&\n this.props.component\n ),\n \"You should not use and in the same route; will be ignored\"\n );\n\n warning(\n !(\n this.props.children &&\n !isEmptyChildren(this.props.children) &&\n this.props.render\n ),\n \"You should not use and in the same route; will be ignored\"\n );\n\n warning(\n !(this.props.component && this.props.render),\n \"You should not use and in the same route; will be ignored\"\n );\n };\n\n Route.prototype.componentDidUpdate = function(prevProps) {\n warning(\n !(this.props.location && !prevProps.location),\n ' elements should not change from uncontrolled to controlled (or vice versa). You initially used no \"location\" prop and then provided one on a subsequent render.'\n );\n\n warning(\n !(!this.props.location && prevProps.location),\n ' elements should not change from controlled to uncontrolled (or vice versa). You provided a \"location\" prop initially but omitted it on a subsequent render.'\n );\n };\n}\n\nexport default Route;\n","import React from \"react\";\nimport PropTypes from \"prop-types\";\nimport { createLocation, createPath } from \"history\";\nimport invariant from \"tiny-invariant\";\nimport warning from \"tiny-warning\";\n\nimport Router from \"./Router.js\";\n\nfunction addLeadingSlash(path) {\n return path.charAt(0) === \"/\" ? path : \"/\" + path;\n}\n\nfunction addBasename(basename, location) {\n if (!basename) return location;\n\n return {\n ...location,\n pathname: addLeadingSlash(basename) + location.pathname\n };\n}\n\nfunction stripBasename(basename, location) {\n if (!basename) return location;\n\n const base = addLeadingSlash(basename);\n\n if (location.pathname.indexOf(base) !== 0) return location;\n\n return {\n ...location,\n pathname: location.pathname.substr(base.length)\n };\n}\n\nfunction createURL(location) {\n return typeof location === \"string\" ? location : createPath(location);\n}\n\nfunction staticHandler(methodName) {\n return () => {\n invariant(false, \"You cannot %s with \", methodName);\n };\n}\n\nfunction noop() {}\n\n/**\n * The public top-level API for a \"static\" , so-called because it\n * can't actually change the current location. Instead, it just records\n * location changes in a context object. Useful mainly in testing and\n * server-rendering scenarios.\n */\nclass StaticRouter extends React.Component {\n navigateTo(location, action) {\n const { basename = \"\", context = {} } = this.props;\n context.action = action;\n context.location = addBasename(basename, createLocation(location));\n context.url = createURL(context.location);\n }\n\n handlePush = location => this.navigateTo(location, \"PUSH\");\n handleReplace = location => this.navigateTo(location, \"REPLACE\");\n handleListen = () => noop;\n handleBlock = () => noop;\n\n render() {\n const { basename = \"\", context = {}, location = \"/\", ...rest } = this.props;\n\n const history = {\n createHref: path => addLeadingSlash(basename + createURL(path)),\n action: \"POP\",\n location: stripBasename(basename, createLocation(location)),\n push: this.handlePush,\n replace: this.handleReplace,\n go: staticHandler(\"go\"),\n goBack: staticHandler(\"goBack\"),\n goForward: staticHandler(\"goForward\"),\n listen: this.handleListen,\n block: this.handleBlock\n };\n\n return ;\n }\n}\n\nif (__DEV__) {\n StaticRouter.propTypes = {\n basename: PropTypes.string,\n context: PropTypes.object,\n location: PropTypes.oneOfType([PropTypes.string, PropTypes.object])\n };\n\n StaticRouter.prototype.componentDidMount = function() {\n warning(\n !this.props.history,\n \" ignores the history prop. To use a custom history, \" +\n \"use `import { Router }` instead of `import { StaticRouter as Router }`.\"\n );\n };\n}\n\nexport default StaticRouter;\n","import React from \"react\";\nimport PropTypes from \"prop-types\";\nimport invariant from \"tiny-invariant\";\nimport warning from \"tiny-warning\";\n\nimport RouterContext from \"./RouterContext.js\";\nimport matchPath from \"./matchPath.js\";\n\n/**\n * The public API for rendering the first that matches.\n */\nclass Switch extends React.Component {\n render() {\n return (\n \n {context => {\n invariant(context, \"You should not use outside a \");\n\n const location = this.props.location || context.location;\n\n let element, match;\n\n // We use React.Children.forEach instead of React.Children.toArray().find()\n // here because toArray adds keys to all child elements and we do not want\n // to trigger an unmount/remount for two s that render the same\n // component at different URLs.\n React.Children.forEach(this.props.children, child => {\n if (match == null && React.isValidElement(child)) {\n element = child;\n\n const path = child.props.path || child.props.from;\n\n match = path\n ? matchPath(location.pathname, { ...child.props, path })\n : context.match;\n }\n });\n\n return match\n ? React.cloneElement(element, { location, computedMatch: match })\n : null;\n }}\n \n );\n }\n}\n\nif (__DEV__) {\n Switch.propTypes = {\n children: PropTypes.node,\n location: PropTypes.object\n };\n\n Switch.prototype.componentDidUpdate = function(prevProps) {\n warning(\n !(this.props.location && !prevProps.location),\n ' elements should not change from uncontrolled to controlled (or vice versa). You initially used no \"location\" prop and then provided one on a subsequent render.'\n );\n\n warning(\n !(!this.props.location && prevProps.location),\n ' elements should not change from controlled to uncontrolled (or vice versa). You provided a \"location\" prop initially but omitted it on a subsequent render.'\n );\n };\n}\n\nexport default Switch;\n","import React from \"react\";\nimport invariant from \"tiny-invariant\";\n\nimport RouterContext from \"./RouterContext.js\";\nimport HistoryContext from \"./HistoryContext.js\";\nimport matchPath from \"./matchPath.js\";\n\nconst useContext = React.useContext;\n\nexport function useHistory() {\n if (__DEV__) {\n invariant(\n typeof useContext === \"function\",\n \"You must use React >= 16.8 in order to use useHistory()\"\n );\n }\n\n return useContext(HistoryContext);\n}\n\nexport function useLocation() {\n if (__DEV__) {\n invariant(\n typeof useContext === \"function\",\n \"You must use React >= 16.8 in order to use useLocation()\"\n );\n }\n\n return useContext(RouterContext).location;\n}\n\nexport function useParams() {\n if (__DEV__) {\n invariant(\n typeof useContext === \"function\",\n \"You must use React >= 16.8 in order to use useParams()\"\n );\n }\n\n const match = useContext(RouterContext).match;\n return match ? match.params : {};\n}\n\nexport function useRouteMatch(path) {\n if (__DEV__) {\n invariant(\n typeof useContext === \"function\",\n \"You must use React >= 16.8 in order to use useRouteMatch()\"\n );\n }\n\n const location = useLocation();\n const match = useContext(RouterContext).match;\n return path ? matchPath(location.pathname, path) : match;\n}\n","import React from \"react\";\nimport { Router } from \"react-router\";\nimport { createBrowserHistory as createHistory } from \"history\";\nimport PropTypes from \"prop-types\";\nimport warning from \"tiny-warning\";\n\n/**\n * The public API for a that uses HTML5 history.\n */\nclass BrowserRouter extends React.Component {\n history = createHistory(this.props);\n\n render() {\n return ;\n }\n}\n\nif (__DEV__) {\n BrowserRouter.propTypes = {\n basename: PropTypes.string,\n children: PropTypes.node,\n forceRefresh: PropTypes.bool,\n getUserConfirmation: PropTypes.func,\n keyLength: PropTypes.number\n };\n\n BrowserRouter.prototype.componentDidMount = function() {\n warning(\n !this.props.history,\n \" ignores the history prop. To use a custom history, \" +\n \"use `import { Router }` instead of `import { BrowserRouter as Router }`.\"\n );\n };\n}\n\nexport default BrowserRouter;\n","import React from \"react\";\nimport { Router } from \"react-router\";\nimport { createHashHistory as createHistory } from \"history\";\nimport PropTypes from \"prop-types\";\nimport warning from \"tiny-warning\";\n\n/**\n * The public API for a that uses window.location.hash.\n */\nclass HashRouter extends React.Component {\n history = createHistory(this.props);\n\n render() {\n return ;\n }\n}\n\nif (__DEV__) {\n HashRouter.propTypes = {\n basename: PropTypes.string,\n children: PropTypes.node,\n getUserConfirmation: PropTypes.func,\n hashType: PropTypes.oneOf([\"hashbang\", \"noslash\", \"slash\"])\n };\n\n HashRouter.prototype.componentDidMount = function() {\n warning(\n !this.props.history,\n \" ignores the history prop. To use a custom history, \" +\n \"use `import { Router }` instead of `import { HashRouter as Router }`.\"\n );\n };\n}\n\nexport default HashRouter;\n","import { createLocation } from \"history\";\n\nexport const resolveToLocation = (to, currentLocation) =>\n typeof to === \"function\" ? to(currentLocation) : to;\n\nexport const normalizeToLocation = (to, currentLocation) => {\n return typeof to === \"string\"\n ? createLocation(to, null, null, currentLocation)\n : to;\n};\n","import React from \"react\";\nimport { __RouterContext as RouterContext } from \"react-router\";\nimport { createPath } from 'history';\nimport PropTypes from \"prop-types\";\nimport invariant from \"tiny-invariant\";\nimport {\n resolveToLocation,\n normalizeToLocation\n} from \"./utils/locationUtils.js\";\n\n// React 15 compat\nconst forwardRefShim = C => C;\nlet { forwardRef } = React;\nif (typeof forwardRef === \"undefined\") {\n forwardRef = forwardRefShim;\n}\n\nfunction isModifiedEvent(event) {\n return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);\n}\n\nconst LinkAnchor = forwardRef(\n (\n {\n innerRef, // TODO: deprecate\n navigate,\n onClick,\n ...rest\n },\n forwardedRef\n ) => {\n const { target } = rest;\n\n let props = {\n ...rest,\n onClick: event => {\n try {\n if (onClick) onClick(event);\n } catch (ex) {\n event.preventDefault();\n throw ex;\n }\n\n if (\n !event.defaultPrevented && // onClick prevented default\n event.button === 0 && // ignore everything but left clicks\n (!target || target === \"_self\") && // let browser handle \"target=_blank\" etc.\n !isModifiedEvent(event) // ignore clicks with modifier keys\n ) {\n event.preventDefault();\n navigate();\n }\n }\n };\n\n // React 15 compat\n if (forwardRefShim !== forwardRef) {\n props.ref = forwardedRef || innerRef;\n } else {\n props.ref = innerRef;\n }\n\n /* eslint-disable-next-line jsx-a11y/anchor-has-content */\n return ;\n }\n);\n\nif (__DEV__) {\n LinkAnchor.displayName = \"LinkAnchor\";\n}\n\n/**\n * The public API for rendering a history-aware .\n */\nconst Link = forwardRef(\n (\n {\n component = LinkAnchor,\n replace,\n to,\n innerRef, // TODO: deprecate\n ...rest\n },\n forwardedRef\n ) => {\n return (\n \n {context => {\n invariant(context, \"You should not use outside a \");\n\n const { history } = context;\n\n const location = normalizeToLocation(\n resolveToLocation(to, context.location),\n context.location\n );\n\n const href = location ? history.createHref(location) : \"\";\n const props = {\n ...rest,\n href,\n navigate() {\n const location = resolveToLocation(to, context.location);\n const isDuplicateNavigation = createPath(context.location) === createPath(normalizeToLocation(location));\n const method = (replace || isDuplicateNavigation) ? history.replace : history.push;\n\n method(location);\n }\n };\n\n // React 15 compat\n if (forwardRefShim !== forwardRef) {\n props.ref = forwardedRef || innerRef;\n } else {\n props.innerRef = innerRef;\n }\n\n return React.createElement(component, props);\n }}\n \n );\n }\n);\n\nif (__DEV__) {\n const toType = PropTypes.oneOfType([\n PropTypes.string,\n PropTypes.object,\n PropTypes.func\n ]);\n const refType = PropTypes.oneOfType([\n PropTypes.string,\n PropTypes.func,\n PropTypes.shape({ current: PropTypes.any })\n ]);\n\n Link.displayName = \"Link\";\n\n Link.propTypes = {\n innerRef: refType,\n onClick: PropTypes.func,\n replace: PropTypes.bool,\n target: PropTypes.string,\n to: toType.isRequired\n };\n}\n\nexport default Link;\n","import React from \"react\";\nimport { __RouterContext as RouterContext, matchPath } from \"react-router\";\nimport PropTypes from \"prop-types\";\nimport invariant from \"tiny-invariant\";\nimport Link from \"./Link.js\";\nimport {\n resolveToLocation,\n normalizeToLocation\n} from \"./utils/locationUtils.js\";\n\n// React 15 compat\nconst forwardRefShim = C => C;\nlet { forwardRef } = React;\nif (typeof forwardRef === \"undefined\") {\n forwardRef = forwardRefShim;\n}\n\nfunction joinClassnames(...classnames) {\n return classnames.filter(i => i).join(\" \");\n}\n\n/**\n * A wrapper that knows if it's \"active\" or not.\n */\nconst NavLink = forwardRef(\n (\n {\n \"aria-current\": ariaCurrent = \"page\",\n activeClassName = \"active\", // TODO: deprecate\n activeStyle, // TODO: deprecate\n className: classNameProp,\n exact,\n isActive: isActiveProp,\n location: locationProp,\n sensitive,\n strict,\n style: styleProp,\n to,\n innerRef, // TODO: deprecate\n ...rest\n },\n forwardedRef\n ) => {\n return (\n \n {context => {\n invariant(context, \"You should not use outside a \");\n\n const currentLocation = locationProp || context.location;\n const toLocation = normalizeToLocation(\n resolveToLocation(to, currentLocation),\n currentLocation\n );\n const { pathname: path } = toLocation;\n // Regex taken from: https://github.com/pillarjs/path-to-regexp/blob/master/index.js#L202\n const escapedPath =\n path && path.replace(/([.+*?=^!:${}()[\\]|/\\\\])/g, \"\\\\$1\");\n\n const match = escapedPath\n ? matchPath(currentLocation.pathname, {\n path: escapedPath,\n exact,\n sensitive,\n strict\n })\n : null;\n const isActive = !!(isActiveProp\n ? isActiveProp(match, currentLocation)\n : match);\n\n let className =\n typeof classNameProp === \"function\"\n ? classNameProp(isActive)\n : classNameProp;\n\n let style =\n typeof styleProp === \"function\" ? styleProp(isActive) : styleProp;\n\n if (isActive) {\n className = joinClassnames(className, activeClassName);\n style = { ...style, ...activeStyle };\n }\n\n const props = {\n \"aria-current\": (isActive && ariaCurrent) || null,\n className,\n style,\n to: toLocation,\n ...rest\n };\n\n // React 15 compat\n if (forwardRefShim !== forwardRef) {\n props.ref = forwardedRef || innerRef;\n } else {\n props.innerRef = innerRef;\n }\n\n return ;\n }}\n \n );\n }\n);\n\nif (__DEV__) {\n NavLink.displayName = \"NavLink\";\n\n const ariaCurrentType = PropTypes.oneOf([\n \"page\",\n \"step\",\n \"location\",\n \"date\",\n \"time\",\n \"true\",\n \"false\"\n ]);\n\n NavLink.propTypes = {\n ...Link.propTypes,\n \"aria-current\": ariaCurrentType,\n activeClassName: PropTypes.string,\n activeStyle: PropTypes.object,\n className: PropTypes.oneOfType([PropTypes.string, PropTypes.func]),\n exact: PropTypes.bool,\n isActive: PropTypes.func,\n location: PropTypes.object,\n sensitive: PropTypes.bool,\n strict: PropTypes.bool,\n style: PropTypes.oneOfType([PropTypes.object, PropTypes.func])\n };\n}\n\nexport default NavLink;\n","export default function _arrayLikeToArray(arr, len) {\n if (len == null || len > arr.length) len = arr.length;\n\n for (var i = 0, arr2 = new Array(len); i < len; i++) {\n arr2[i] = arr[i];\n }\n\n return arr2;\n}","import arrayWithHoles from \"./arrayWithHoles.js\";\nimport iterableToArrayLimit from \"./iterableToArrayLimit.js\";\nimport unsupportedIterableToArray from \"./unsupportedIterableToArray.js\";\nimport nonIterableRest from \"./nonIterableRest.js\";\nexport default function _slicedToArray(arr, i) {\n return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest();\n}","export default function _arrayWithHoles(arr) {\n if (Array.isArray(arr)) return arr;\n}","export default function _iterableToArrayLimit(arr, i) {\n var _i = arr == null ? null : typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"];\n\n if (_i == null) return;\n var _arr = [];\n var _n = true;\n var _d = false;\n\n var _s, _e;\n\n try {\n for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {\n _arr.push(_s.value);\n\n if (i && _arr.length === i) break;\n }\n } catch (err) {\n _d = true;\n _e = err;\n } finally {\n try {\n if (!_n && _i[\"return\"] != null) _i[\"return\"]();\n } finally {\n if (_d) throw _e;\n }\n }\n\n return _arr;\n}","import arrayLikeToArray from \"./arrayLikeToArray.js\";\nexport default function _unsupportedIterableToArray(o, minLen) {\n if (!o) return;\n if (typeof o === \"string\") return arrayLikeToArray(o, minLen);\n var n = Object.prototype.toString.call(o).slice(8, -1);\n if (n === \"Object\" && o.constructor) n = o.constructor.name;\n if (n === \"Map\" || n === \"Set\") return Array.from(o);\n if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return arrayLikeToArray(o, minLen);\n}","export default function _nonIterableRest() {\n throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}","/*\n * Copyright 2019 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nif (typeof require !== \"undefined\" && typeof window !== \"undefined\" && typeof document !== \"undefined\") {\n // we're in browser\n require(\"dom4\"); // only import actual dom4 if we're in the browser (not server-compatible)\n // we'll still need dom4 types for the TypeScript to compile, these are included in package.json\n}\n\nexport {};\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","/*\n * Copyright 2015 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport * as React from \"react\";\n\nimport { IconName } from \"@blueprintjs/icons\";\n\nimport { Intent } from \"./intent\";\nimport { IRef } from \"./refs\";\n\nexport const DISPLAYNAME_PREFIX = \"Blueprint3\";\n\n/**\n * Alias for all valid HTML props for `
` element.\n * Does not include React's `ref` or `key`.\n */\nexport type HTMLDivProps = React.HTMLAttributes;\n\n/**\n * Alias for all valid HTML props for `` element.\n * Does not include React's `ref` or `key`.\n */\nexport type HTMLInputProps = React.InputHTMLAttributes;\n\n/**\n * Alias for a `JSX.Element` or a value that renders nothing.\n *\n * In React, `boolean`, `null`, and `undefined` do not produce any output.\n */\nexport type MaybeElement = JSX.Element | false | null | undefined;\n\n/**\n * A shared base interface for all Blueprint component props.\n *\n * @deprecated use Props\n */\nexport interface IProps {\n /** A space-delimited list of class names to pass along to a child element. */\n className?: string;\n}\n// eslint-disable-next-line deprecation/deprecation\nexport type Props = IProps;\n\n/** @deprecated use IntentProps */\nexport interface IIntentProps {\n /** Visual intent color to apply to element. */\n intent?: Intent;\n}\n// eslint-disable-next-line deprecation/deprecation\nexport type IntentProps = IIntentProps;\n\n/**\n * Interface for a clickable action, such as a button or menu item.\n * These props can be spready directly to a `
\n );\n }\n\n public componentDidMount() {\n this.startTimeout();\n }\n\n public componentDidUpdate(prevProps: IToastProps) {\n if (prevProps.timeout !== this.props.timeout) {\n if (this.props.timeout! > 0) {\n this.startTimeout();\n } else {\n this.clearTimeouts();\n }\n }\n }\n\n public componentWillUnmount() {\n this.clearTimeouts();\n }\n\n private maybeRenderActionButton() {\n const { action } = this.props;\n if (action == null) {\n return undefined;\n } else {\n return ;\n }\n }\n\n private handleActionClick = (e: React.MouseEvent) => {\n this.props.action?.onClick?.(e);\n this.triggerDismiss(false);\n };\n\n private handleCloseClick = () => this.triggerDismiss(false);\n\n private triggerDismiss(didTimeoutExpire: boolean) {\n this.clearTimeouts();\n this.props.onDismiss?.(didTimeoutExpire);\n }\n\n private startTimeout = () => {\n this.clearTimeouts();\n if (this.props.timeout! > 0) {\n this.setTimeout(() => this.triggerDismiss(true), this.props.timeout);\n }\n };\n}\n","/*\n * Copyright 2016 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport classNames from \"classnames\";\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport { polyfill } from \"react-lifecycles-compat\";\n\nimport { AbstractPureComponent2, Classes, Position } from \"../../common\";\nimport { TOASTER_CREATE_NULL, TOASTER_MAX_TOASTS_INVALID, TOASTER_WARN_INLINE } from \"../../common/errors\";\nimport { ESCAPE } from \"../../common/keys\";\nimport { DISPLAYNAME_PREFIX, Props } from \"../../common/props\";\nimport { isNodeEnv } from \"../../common/utils\";\nimport { Overlay } from \"../overlay/overlay\";\nimport { IToastProps, Toast } from \"./toast\";\n\nexport type IToastOptions = IToastProps & { key: string };\nexport type ToasterPosition =\n | typeof Position.TOP\n | typeof Position.TOP_LEFT\n | typeof Position.TOP_RIGHT\n | typeof Position.BOTTOM\n | typeof Position.BOTTOM_LEFT\n | typeof Position.BOTTOM_RIGHT;\n\n/** Instance methods available on a `` component instance. */\nexport interface IToaster {\n /**\n * Shows a new toast to the user, or updates an existing toast corresponding to the provided key (optional).\n *\n * Returns the unique key of the toast.\n */\n show(props: IToastProps, key?: string): string;\n\n /** Dismiss the given toast instantly. */\n dismiss(key: string): void;\n\n /** Dismiss all toasts instantly. */\n clear(): void;\n\n /** Returns the props for all current toasts. */\n getToasts(): IToastOptions[];\n}\n\n/**\n * Props supported by the `` component.\n * These props can be passed as an argument to the static `Toaster.create(props?, container?)` method.\n */\nexport interface IToasterProps extends Props {\n /**\n * Whether a toast should acquire application focus when it first opens.\n * This is disabled by default so that toasts do not interrupt the user's flow.\n * Note that `enforceFocus` is always disabled for `Toaster`s.\n *\n * @default false\n */\n autoFocus?: boolean;\n\n /**\n * Whether pressing the `esc` key should clear all active toasts.\n *\n * @default true\n */\n canEscapeKeyClear?: boolean;\n\n /**\n * Whether the toaster should be rendered into a new element attached to `document.body`.\n * If `false`, then positioning will be relative to the parent element.\n *\n * This prop is ignored by `Toaster.create()` as that method always appends a new element\n * to the container.\n *\n * @default true\n */\n usePortal?: boolean;\n\n /**\n * Position of `Toaster` within its container.\n *\n * @default Position.TOP\n */\n position?: ToasterPosition;\n\n /**\n * The maximum number of active toasts that can be displayed at once.\n *\n * When the limit is about to be exceeded, the oldest active toast is removed.\n *\n * @default undefined\n */\n maxToasts?: number;\n}\n\nexport interface IToasterState {\n toasts: IToastOptions[];\n}\n\n@polyfill\nexport class Toaster extends AbstractPureComponent2 implements IToaster {\n public static displayName = `${DISPLAYNAME_PREFIX}.Toaster`;\n\n public static defaultProps: IToasterProps = {\n autoFocus: false,\n canEscapeKeyClear: true,\n position: Position.TOP,\n usePortal: true,\n };\n\n /**\n * Create a new `Toaster` instance that can be shared around your application.\n * The `Toaster` will be rendered into a new element appended to the given container.\n */\n public static create(props?: IToasterProps, container = document.body): IToaster {\n if (props != null && props.usePortal != null && !isNodeEnv(\"production\")) {\n console.warn(TOASTER_WARN_INLINE);\n }\n const containerElement = document.createElement(\"div\");\n container.appendChild(containerElement);\n const toaster = ReactDOM.render(\n ,\n containerElement,\n ) as Toaster;\n if (toaster == null) {\n throw new Error(TOASTER_CREATE_NULL);\n }\n return toaster;\n }\n\n public state: IToasterState = {\n toasts: [],\n };\n\n // auto-incrementing identifier for un-keyed toasts\n private toastId = 0;\n\n public show(props: IToastProps, key?: string) {\n if (this.props.maxToasts) {\n // check if active number of toasts are at the maxToasts limit\n this.dismissIfAtLimit();\n }\n const options = this.createToastOptions(props, key);\n if (key === undefined || this.isNewToastKey(key)) {\n this.setState(prevState => ({\n toasts: [options, ...prevState.toasts],\n }));\n } else {\n this.setState(prevState => ({\n toasts: prevState.toasts.map(t => (t.key === key ? options : t)),\n }));\n }\n return options.key;\n }\n\n public dismiss(key: string, timeoutExpired = false) {\n this.setState(({ toasts }) => ({\n toasts: toasts.filter(t => {\n const matchesKey = t.key === key;\n if (matchesKey) {\n t.onDismiss?.(timeoutExpired);\n }\n return !matchesKey;\n }),\n }));\n }\n\n public clear() {\n this.state.toasts.forEach(t => t.onDismiss?.(false));\n this.setState({ toasts: [] });\n }\n\n public getToasts() {\n return this.state.toasts;\n }\n\n public render() {\n const classes = classNames(Classes.TOAST_CONTAINER, this.getPositionClasses(), this.props.className);\n return (\n 0 || this.props.children != null}\n onClose={this.handleClose}\n shouldReturnFocusOnClose={false}\n // $pt-transition-duration * 3 + $pt-transition-duration / 2\n transitionDuration={350}\n transitionName={Classes.TOAST}\n usePortal={this.props.usePortal}\n >\n {this.state.toasts.map(this.renderToast, this)}\n {this.props.children}\n \n );\n }\n\n protected validateProps({ maxToasts }: IToasterProps) {\n // maximum number of toasts should not be a number less than 1\n if (maxToasts !== undefined && maxToasts < 1) {\n throw new Error(TOASTER_MAX_TOASTS_INVALID);\n }\n }\n\n private isNewToastKey(key: string) {\n return this.state.toasts.every(toast => toast.key !== key);\n }\n\n private dismissIfAtLimit() {\n if (this.state.toasts.length === this.props.maxToasts) {\n // dismiss the oldest toast to stay within the maxToasts limit\n this.dismiss(this.state.toasts[this.state.toasts.length - 1].key!);\n }\n }\n\n private renderToast = (toast: IToastOptions) => {\n return ;\n };\n\n private createToastOptions(props: IToastProps, key = `toast-${this.toastId++}`) {\n // clone the object before adding the key prop to avoid leaking the mutation\n return { ...props, key };\n }\n\n private getPositionClasses() {\n const positions = this.props.position!.split(\"-\");\n // NOTE that there is no -center class because that's the default style\n return [\n ...positions.map(p => `${Classes.TOAST_CONTAINER}-${p.toLowerCase()}`),\n `${Classes.TOAST_CONTAINER}-${this.props.usePortal ? \"in-portal\" : \"inline\"}`,\n ];\n }\n\n private getDismissHandler = (toast: IToastOptions) => (timeoutExpired: boolean) => {\n this.dismiss(toast.key, timeoutExpired);\n };\n\n private handleClose = (e: React.SyntheticEvent) => {\n // NOTE that `e` isn't always a KeyboardEvent but that's the only type we care about\n // HACKHACK: https://github.com/palantir/blueprint/issues/4165\n /* eslint-disable-next-line deprecation/deprecation */\n if ((e as React.KeyboardEvent).which === ESCAPE) {\n this.clear();\n }\n };\n}\n\nexport const OverlayToaster = Toaster;\nexport type OverlayToasterProps = IToasterProps;\n","export default function _assertThisInitialized(self) {\n if (self === void 0) {\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n }\n\n return self;\n}","export default function _defineProperty(obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}","import _inheritsLoose from \"@babel/runtime/helpers/inheritsLoose\";\nimport _assertThisInitialized from \"@babel/runtime/helpers/assertThisInitialized\";\nimport _defineProperty from \"@babel/runtime/helpers/defineProperty\";\nimport * as React from 'react';\nimport createContext from '@hypnosphi/create-react-context';\nexport var ManagerReferenceNodeContext = createContext();\nexport var ManagerReferenceNodeSetterContext = createContext();\n\nvar Manager =\n/*#__PURE__*/\nfunction (_React$Component) {\n _inheritsLoose(Manager, _React$Component);\n\n function Manager() {\n var _this;\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"referenceNode\", void 0);\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"setReferenceNode\", function (newReferenceNode) {\n if (newReferenceNode && _this.referenceNode !== newReferenceNode) {\n _this.referenceNode = newReferenceNode;\n\n _this.forceUpdate();\n }\n });\n\n return _this;\n }\n\n var _proto = Manager.prototype;\n\n _proto.componentWillUnmount = function componentWillUnmount() {\n this.referenceNode = null;\n };\n\n _proto.render = function render() {\n return React.createElement(ManagerReferenceNodeContext.Provider, {\n value: this.referenceNode\n }, React.createElement(ManagerReferenceNodeSetterContext.Provider, {\n value: this.setReferenceNode\n }, this.props.children));\n };\n\n return Manager;\n}(React.Component);\n\nexport { Manager as default };","/**\n * Takes an argument and if it's an array, returns the first item in the array,\n * otherwise returns the argument. Used for Preact compatibility.\n */\nexport var unwrapArray = function unwrapArray(arg) {\n return Array.isArray(arg) ? arg[0] : arg;\n};\n/**\n * Takes a maybe-undefined function and arbitrary args and invokes the function\n * only if it is defined.\n */\n\nexport var safeInvoke = function safeInvoke(fn) {\n if (typeof fn === \"function\") {\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n return fn.apply(void 0, args);\n }\n};\n/**\n * Does a shallow equality check of two objects by comparing the reference\n * equality of each value.\n */\n\nexport var shallowEqual = function shallowEqual(objA, objB) {\n var aKeys = Object.keys(objA);\n var bKeys = Object.keys(objB);\n\n if (bKeys.length !== aKeys.length) {\n return false;\n }\n\n for (var i = 0; i < bKeys.length; i++) {\n var key = aKeys[i];\n\n if (objA[key] !== objB[key]) {\n return false;\n }\n }\n\n return true;\n};\n/**\n * Sets a ref using either a ref callback or a ref object\n */\n\nexport var setRef = function setRef(ref, node) {\n // if its a function call it\n if (typeof ref === \"function\") {\n return safeInvoke(ref, node);\n } // otherwise we should treat it as a ref object\n else if (ref != null) {\n ref.current = node;\n }\n};","import _extends from \"@babel/runtime/helpers/extends\";\nimport _inheritsLoose from \"@babel/runtime/helpers/inheritsLoose\";\nimport _assertThisInitialized from \"@babel/runtime/helpers/assertThisInitialized\";\nimport _defineProperty from \"@babel/runtime/helpers/defineProperty\";\nimport * as React from 'react';\nimport warning from 'warning';\nimport { ManagerReferenceNodeSetterContext } from './Manager';\nimport { safeInvoke, unwrapArray, setRef } from './utils';\n\nvar InnerReference =\n/*#__PURE__*/\nfunction (_React$Component) {\n _inheritsLoose(InnerReference, _React$Component);\n\n function InnerReference() {\n var _this;\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"refHandler\", function (node) {\n setRef(_this.props.innerRef, node);\n safeInvoke(_this.props.setReferenceNode, node);\n });\n\n return _this;\n }\n\n var _proto = InnerReference.prototype;\n\n _proto.componentWillUnmount = function componentWillUnmount() {\n setRef(this.props.innerRef, null);\n };\n\n _proto.render = function render() {\n warning(Boolean(this.props.setReferenceNode), '`Reference` should not be used outside of a `Manager` component.');\n return unwrapArray(this.props.children)({\n ref: this.refHandler\n });\n };\n\n return InnerReference;\n}(React.Component);\n\nexport default function Reference(props) {\n return React.createElement(ManagerReferenceNodeSetterContext.Consumer, null, function (setReferenceNode) {\n return React.createElement(InnerReference, _extends({\n setReferenceNode: setReferenceNode\n }, props));\n });\n}","export default typeof window !== 'undefined' && typeof document !== 'undefined' && typeof navigator !== 'undefined';\n","import isBrowser from './isBrowser';\n\nconst timeoutDuration = (function(){\n const longerTimeoutBrowsers = ['Edge', 'Trident', 'Firefox'];\n for (let i = 0; i < longerTimeoutBrowsers.length; i += 1) {\n if (isBrowser && navigator.userAgent.indexOf(longerTimeoutBrowsers[i]) >= 0) {\n return 1;\n }\n }\n return 0;\n}());\n\nexport function microtaskDebounce(fn) {\n let called = false\n return () => {\n if (called) {\n return\n }\n called = true\n window.Promise.resolve().then(() => {\n called = false\n fn()\n })\n }\n}\n\nexport function taskDebounce(fn) {\n let scheduled = false;\n return () => {\n if (!scheduled) {\n scheduled = true;\n setTimeout(() => {\n scheduled = false;\n fn();\n }, timeoutDuration);\n }\n };\n}\n\nconst supportsMicroTasks = isBrowser && window.Promise\n\n\n/**\n* Create a debounced version of a method, that's asynchronously deferred\n* but called in the minimum time possible.\n*\n* @method\n* @memberof Popper.Utils\n* @argument {Function} fn\n* @returns {Function}\n*/\nexport default (supportsMicroTasks\n ? microtaskDebounce\n : taskDebounce);\n","/**\n * Check if the given variable is a function\n * @method\n * @memberof Popper.Utils\n * @argument {Any} functionToCheck - variable to check\n * @returns {Boolean} answer to: is a function?\n */\nexport default function isFunction(functionToCheck) {\n const getType = {};\n return (\n functionToCheck &&\n getType.toString.call(functionToCheck) === '[object Function]'\n );\n}\n","/**\n * Get CSS computed property of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Eement} element\n * @argument {String} property\n */\nexport default function getStyleComputedProperty(element, property) {\n if (element.nodeType !== 1) {\n return [];\n }\n // NOTE: 1 DOM access here\n const window = element.ownerDocument.defaultView;\n const css = window.getComputedStyle(element, null);\n return property ? css[property] : css;\n}\n","/**\n * Returns the parentNode or the host of the element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} parent\n */\nexport default function getParentNode(element) {\n if (element.nodeName === 'HTML') {\n return element;\n }\n return element.parentNode || element.host;\n}\n","import getStyleComputedProperty from './getStyleComputedProperty';\nimport getParentNode from './getParentNode';\n\n/**\n * Returns the scrolling parent of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} scroll parent\n */\nexport default function getScrollParent(element) {\n // Return body, `getScroll` will take care to get the correct `scrollTop` from it\n if (!element) {\n return document.body\n }\n\n switch (element.nodeName) {\n case 'HTML':\n case 'BODY':\n return element.ownerDocument.body\n case '#document':\n return element.body\n }\n\n // Firefox want us to check `-x` and `-y` variations as well\n const { overflow, overflowX, overflowY } = getStyleComputedProperty(element);\n if (/(auto|scroll|overlay)/.test(overflow + overflowY + overflowX)) {\n return element;\n }\n\n return getScrollParent(getParentNode(element));\n}\n","/**\n * Returns the reference node of the reference object, or the reference object itself.\n * @method\n * @memberof Popper.Utils\n * @param {Element|Object} reference - the reference element (the popper will be relative to this)\n * @returns {Element} parent\n */\nexport default function getReferenceNode(reference) {\n return reference && reference.referenceNode ? reference.referenceNode : reference;\n}\n","import isBrowser from './isBrowser';\n\nconst isIE11 = isBrowser && !!(window.MSInputMethodContext && document.documentMode);\nconst isIE10 = isBrowser && /MSIE 10/.test(navigator.userAgent);\n\n/**\n * Determines if the browser is Internet Explorer\n * @method\n * @memberof Popper.Utils\n * @param {Number} version to check\n * @returns {Boolean} isIE\n */\nexport default function isIE(version) {\n if (version === 11) {\n return isIE11;\n }\n if (version === 10) {\n return isIE10;\n }\n return isIE11 || isIE10;\n}\n","import getStyleComputedProperty from './getStyleComputedProperty';\nimport isIE from './isIE';\n/**\n * Returns the offset parent of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} offset parent\n */\nexport default function getOffsetParent(element) {\n if (!element) {\n return document.documentElement;\n }\n\n const noOffsetParent = isIE(10) ? document.body : null;\n\n // NOTE: 1 DOM access here\n let offsetParent = element.offsetParent || null;\n // Skip hidden elements which don't have an offsetParent\n while (offsetParent === noOffsetParent && element.nextElementSibling) {\n offsetParent = (element = element.nextElementSibling).offsetParent;\n }\n\n const nodeName = offsetParent && offsetParent.nodeName;\n\n if (!nodeName || nodeName === 'BODY' || nodeName === 'HTML') {\n return element ? element.ownerDocument.documentElement : document.documentElement;\n }\n\n // .offsetParent will return the closest TH, TD or TABLE in case\n // no offsetParent is present, I hate this job...\n if (\n ['TH', 'TD', 'TABLE'].indexOf(offsetParent.nodeName) !== -1 &&\n getStyleComputedProperty(offsetParent, 'position') === 'static'\n ) {\n return getOffsetParent(offsetParent);\n }\n\n return offsetParent;\n}\n","/**\n * Finds the root node (document, shadowDOM root) of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} node\n * @returns {Element} root node\n */\nexport default function getRoot(node) {\n if (node.parentNode !== null) {\n return getRoot(node.parentNode);\n }\n\n return node;\n}\n","import isOffsetContainer from './isOffsetContainer';\nimport getRoot from './getRoot';\nimport getOffsetParent from './getOffsetParent';\n\n/**\n * Finds the offset parent common to the two provided nodes\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element1\n * @argument {Element} element2\n * @returns {Element} common offset parent\n */\nexport default function findCommonOffsetParent(element1, element2) {\n // This check is needed to avoid errors in case one of the elements isn't defined for any reason\n if (!element1 || !element1.nodeType || !element2 || !element2.nodeType) {\n return document.documentElement;\n }\n\n // Here we make sure to give as \"start\" the element that comes first in the DOM\n const order =\n element1.compareDocumentPosition(element2) &\n Node.DOCUMENT_POSITION_FOLLOWING;\n const start = order ? element1 : element2;\n const end = order ? element2 : element1;\n\n // Get common ancestor container\n const range = document.createRange();\n range.setStart(start, 0);\n range.setEnd(end, 0);\n const { commonAncestorContainer } = range;\n\n // Both nodes are inside #document\n if (\n (element1 !== commonAncestorContainer &&\n element2 !== commonAncestorContainer) ||\n start.contains(end)\n ) {\n if (isOffsetContainer(commonAncestorContainer)) {\n return commonAncestorContainer;\n }\n\n return getOffsetParent(commonAncestorContainer);\n }\n\n // one of the nodes is inside shadowDOM, find which one\n const element1root = getRoot(element1);\n if (element1root.host) {\n return findCommonOffsetParent(element1root.host, element2);\n } else {\n return findCommonOffsetParent(element1, getRoot(element2).host);\n }\n}\n","import getOffsetParent from './getOffsetParent';\n\nexport default function isOffsetContainer(element) {\n const { nodeName } = element;\n if (nodeName === 'BODY') {\n return false;\n }\n return (\n nodeName === 'HTML' || getOffsetParent(element.firstElementChild) === element\n );\n}\n","/**\n * Gets the scroll value of the given element in the given side (top and left)\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @argument {String} side `top` or `left`\n * @returns {number} amount of scrolled pixels\n */\nexport default function getScroll(element, side = 'top') {\n const upperSide = side === 'top' ? 'scrollTop' : 'scrollLeft';\n const nodeName = element.nodeName;\n\n if (nodeName === 'BODY' || nodeName === 'HTML') {\n const html = element.ownerDocument.documentElement;\n const scrollingElement = element.ownerDocument.scrollingElement || html;\n return scrollingElement[upperSide];\n }\n\n return element[upperSide];\n}\n","import getScroll from './getScroll';\n\n/*\n * Sum or subtract the element scroll values (left and top) from a given rect object\n * @method\n * @memberof Popper.Utils\n * @param {Object} rect - Rect object you want to change\n * @param {HTMLElement} element - The element from the function reads the scroll values\n * @param {Boolean} subtract - set to true if you want to subtract the scroll values\n * @return {Object} rect - The modifier rect object\n */\nexport default function includeScroll(rect, element, subtract = false) {\n const scrollTop = getScroll(element, 'top');\n const scrollLeft = getScroll(element, 'left');\n const modifier = subtract ? -1 : 1;\n rect.top += scrollTop * modifier;\n rect.bottom += scrollTop * modifier;\n rect.left += scrollLeft * modifier;\n rect.right += scrollLeft * modifier;\n return rect;\n}\n","/*\n * Helper to detect borders of a given element\n * @method\n * @memberof Popper.Utils\n * @param {CSSStyleDeclaration} styles\n * Result of `getStyleComputedProperty` on the given element\n * @param {String} axis - `x` or `y`\n * @return {number} borders - The borders size of the given axis\n */\n\nexport default function getBordersSize(styles, axis) {\n const sideA = axis === 'x' ? 'Left' : 'Top';\n const sideB = sideA === 'Left' ? 'Right' : 'Bottom';\n\n return (\n parseFloat(styles[`border${sideA}Width`]) +\n parseFloat(styles[`border${sideB}Width`])\n );\n}\n","import isIE from './isIE';\n\nfunction getSize(axis, body, html, computedStyle) {\n return Math.max(\n body[`offset${axis}`],\n body[`scroll${axis}`],\n html[`client${axis}`],\n html[`offset${axis}`],\n html[`scroll${axis}`],\n isIE(10)\n ? (parseInt(html[`offset${axis}`]) + \n parseInt(computedStyle[`margin${axis === 'Height' ? 'Top' : 'Left'}`]) + \n parseInt(computedStyle[`margin${axis === 'Height' ? 'Bottom' : 'Right'}`]))\n : 0 \n );\n}\n\nexport default function getWindowSizes(document) {\n const body = document.body;\n const html = document.documentElement;\n const computedStyle = isIE(10) && getComputedStyle(html);\n\n return {\n height: getSize('Height', body, html, computedStyle),\n width: getSize('Width', body, html, computedStyle),\n };\n}\n","/**\n * Given element offsets, generate an output similar to getBoundingClientRect\n * @method\n * @memberof Popper.Utils\n * @argument {Object} offsets\n * @returns {Object} ClientRect like output\n */\nexport default function getClientRect(offsets) {\n return {\n ...offsets,\n right: offsets.left + offsets.width,\n bottom: offsets.top + offsets.height,\n };\n}\n","import getStyleComputedProperty from './getStyleComputedProperty';\nimport getBordersSize from './getBordersSize';\nimport getWindowSizes from './getWindowSizes';\nimport getScroll from './getScroll';\nimport getClientRect from './getClientRect';\nimport isIE from './isIE';\n\n/**\n * Get bounding client rect of given element\n * @method\n * @memberof Popper.Utils\n * @param {HTMLElement} element\n * @return {Object} client rect\n */\nexport default function getBoundingClientRect(element) {\n let rect = {};\n\n // IE10 10 FIX: Please, don't ask, the element isn't\n // considered in DOM in some circumstances...\n // This isn't reproducible in IE10 compatibility mode of IE11\n try {\n if (isIE(10)) {\n rect = element.getBoundingClientRect();\n const scrollTop = getScroll(element, 'top');\n const scrollLeft = getScroll(element, 'left');\n rect.top += scrollTop;\n rect.left += scrollLeft;\n rect.bottom += scrollTop;\n rect.right += scrollLeft;\n }\n else {\n rect = element.getBoundingClientRect();\n }\n }\n catch(e){}\n\n const result = {\n left: rect.left,\n top: rect.top,\n width: rect.right - rect.left,\n height: rect.bottom - rect.top,\n };\n\n // subtract scrollbar size from sizes\n const sizes = element.nodeName === 'HTML' ? getWindowSizes(element.ownerDocument) : {};\n const width =\n sizes.width || element.clientWidth || result.width;\n const height =\n sizes.height || element.clientHeight || result.height;\n\n let horizScrollbar = element.offsetWidth - width;\n let vertScrollbar = element.offsetHeight - height;\n\n // if an hypothetical scrollbar is detected, we must be sure it's not a `border`\n // we make this check conditional for performance reasons\n if (horizScrollbar || vertScrollbar) {\n const styles = getStyleComputedProperty(element);\n horizScrollbar -= getBordersSize(styles, 'x');\n vertScrollbar -= getBordersSize(styles, 'y');\n\n result.width -= horizScrollbar;\n result.height -= vertScrollbar;\n }\n\n return getClientRect(result);\n}\n","import getStyleComputedProperty from './getStyleComputedProperty';\nimport includeScroll from './includeScroll';\nimport getScrollParent from './getScrollParent';\nimport getBoundingClientRect from './getBoundingClientRect';\nimport runIsIE from './isIE';\nimport getClientRect from './getClientRect';\n\nexport default function getOffsetRectRelativeToArbitraryNode(children, parent, fixedPosition = false) {\n const isIE10 = runIsIE(10);\n const isHTML = parent.nodeName === 'HTML';\n const childrenRect = getBoundingClientRect(children);\n const parentRect = getBoundingClientRect(parent);\n const scrollParent = getScrollParent(children);\n\n const styles = getStyleComputedProperty(parent);\n const borderTopWidth = parseFloat(styles.borderTopWidth);\n const borderLeftWidth = parseFloat(styles.borderLeftWidth);\n\n // In cases where the parent is fixed, we must ignore negative scroll in offset calc\n if(fixedPosition && isHTML) {\n parentRect.top = Math.max(parentRect.top, 0);\n parentRect.left = Math.max(parentRect.left, 0);\n }\n let offsets = getClientRect({\n top: childrenRect.top - parentRect.top - borderTopWidth,\n left: childrenRect.left - parentRect.left - borderLeftWidth,\n width: childrenRect.width,\n height: childrenRect.height,\n });\n offsets.marginTop = 0;\n offsets.marginLeft = 0;\n\n // Subtract margins of documentElement in case it's being used as parent\n // we do this only on HTML because it's the only element that behaves\n // differently when margins are applied to it. The margins are included in\n // the box of the documentElement, in the other cases not.\n if (!isIE10 && isHTML) {\n const marginTop = parseFloat(styles.marginTop);\n const marginLeft = parseFloat(styles.marginLeft);\n\n offsets.top -= borderTopWidth - marginTop;\n offsets.bottom -= borderTopWidth - marginTop;\n offsets.left -= borderLeftWidth - marginLeft;\n offsets.right -= borderLeftWidth - marginLeft;\n\n // Attach marginTop and marginLeft because in some circumstances we may need them\n offsets.marginTop = marginTop;\n offsets.marginLeft = marginLeft;\n }\n\n if (\n isIE10 && !fixedPosition\n ? parent.contains(scrollParent)\n : parent === scrollParent && scrollParent.nodeName !== 'BODY'\n ) {\n offsets = includeScroll(offsets, parent);\n }\n\n return offsets;\n}\n","import getOffsetRectRelativeToArbitraryNode from './getOffsetRectRelativeToArbitraryNode';\nimport getScroll from './getScroll';\nimport getClientRect from './getClientRect';\n\nexport default function getViewportOffsetRectRelativeToArtbitraryNode(element, excludeScroll = false) {\n const html = element.ownerDocument.documentElement;\n const relativeOffset = getOffsetRectRelativeToArbitraryNode(element, html);\n const width = Math.max(html.clientWidth, window.innerWidth || 0);\n const height = Math.max(html.clientHeight, window.innerHeight || 0);\n\n const scrollTop = !excludeScroll ? getScroll(html) : 0;\n const scrollLeft = !excludeScroll ? getScroll(html, 'left') : 0;\n\n const offset = {\n top: scrollTop - relativeOffset.top + relativeOffset.marginTop,\n left: scrollLeft - relativeOffset.left + relativeOffset.marginLeft,\n width,\n height,\n };\n\n return getClientRect(offset);\n}\n","import getStyleComputedProperty from './getStyleComputedProperty';\nimport getParentNode from './getParentNode';\n\n/**\n * Check if the given element is fixed or is inside a fixed parent\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @argument {Element} customContainer\n * @returns {Boolean} answer to \"isFixed?\"\n */\nexport default function isFixed(element) {\n const nodeName = element.nodeName;\n if (nodeName === 'BODY' || nodeName === 'HTML') {\n return false;\n }\n if (getStyleComputedProperty(element, 'position') === 'fixed') {\n return true;\n }\n const parentNode = getParentNode(element);\n if (!parentNode) {\n return false;\n }\n return isFixed(parentNode);\n}\n","import getStyleComputedProperty from './getStyleComputedProperty';\nimport isIE from './isIE';\n/**\n * Finds the first parent of an element that has a transformed property defined\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} first transformed parent or documentElement\n */\n\nexport default function getFixedPositionOffsetParent(element) {\n // This check is needed to avoid errors in case one of the elements isn't defined for any reason\n if (!element || !element.parentElement || isIE()) {\n return document.documentElement;\n }\n let el = element.parentElement;\n while (el && getStyleComputedProperty(el, 'transform') === 'none') {\n el = el.parentElement;\n }\n return el || document.documentElement;\n\n}\n","import getScrollParent from './getScrollParent';\nimport getParentNode from './getParentNode';\nimport getReferenceNode from './getReferenceNode';\nimport findCommonOffsetParent from './findCommonOffsetParent';\nimport getOffsetRectRelativeToArbitraryNode from './getOffsetRectRelativeToArbitraryNode';\nimport getViewportOffsetRectRelativeToArtbitraryNode from './getViewportOffsetRectRelativeToArtbitraryNode';\nimport getWindowSizes from './getWindowSizes';\nimport isFixed from './isFixed';\nimport getFixedPositionOffsetParent from './getFixedPositionOffsetParent';\n\n/**\n * Computed the boundaries limits and return them\n * @method\n * @memberof Popper.Utils\n * @param {HTMLElement} popper\n * @param {HTMLElement} reference\n * @param {number} padding\n * @param {HTMLElement} boundariesElement - Element used to define the boundaries\n * @param {Boolean} fixedPosition - Is in fixed position mode\n * @returns {Object} Coordinates of the boundaries\n */\nexport default function getBoundaries(\n popper,\n reference,\n padding,\n boundariesElement,\n fixedPosition = false\n) {\n // NOTE: 1 DOM access here\n\n let boundaries = { top: 0, left: 0 };\n const offsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, getReferenceNode(reference));\n\n // Handle viewport case\n if (boundariesElement === 'viewport' ) {\n boundaries = getViewportOffsetRectRelativeToArtbitraryNode(offsetParent, fixedPosition);\n }\n\n else {\n // Handle other cases based on DOM element used as boundaries\n let boundariesNode;\n if (boundariesElement === 'scrollParent') {\n boundariesNode = getScrollParent(getParentNode(reference));\n if (boundariesNode.nodeName === 'BODY') {\n boundariesNode = popper.ownerDocument.documentElement;\n }\n } else if (boundariesElement === 'window') {\n boundariesNode = popper.ownerDocument.documentElement;\n } else {\n boundariesNode = boundariesElement;\n }\n\n const offsets = getOffsetRectRelativeToArbitraryNode(\n boundariesNode,\n offsetParent,\n fixedPosition\n );\n\n // In case of HTML, we need a different computation\n if (boundariesNode.nodeName === 'HTML' && !isFixed(offsetParent)) {\n const { height, width } = getWindowSizes(popper.ownerDocument);\n boundaries.top += offsets.top - offsets.marginTop;\n boundaries.bottom = height + offsets.top;\n boundaries.left += offsets.left - offsets.marginLeft;\n boundaries.right = width + offsets.left;\n } else {\n // for all the other DOM elements, this one is good\n boundaries = offsets;\n }\n }\n\n // Add paddings\n padding = padding || 0;\n const isPaddingNumber = typeof padding === 'number';\n boundaries.left += isPaddingNumber ? padding : padding.left || 0; \n boundaries.top += isPaddingNumber ? padding : padding.top || 0; \n boundaries.right -= isPaddingNumber ? padding : padding.right || 0; \n boundaries.bottom -= isPaddingNumber ? padding : padding.bottom || 0; \n\n return boundaries;\n}\n","import getBoundaries from '../utils/getBoundaries';\n\nfunction getArea({ width, height }) {\n return width * height;\n}\n\n/**\n * Utility used to transform the `auto` placement to the placement with more\n * available space.\n * @method\n * @memberof Popper.Utils\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nexport default function computeAutoPlacement(\n placement,\n refRect,\n popper,\n reference,\n boundariesElement,\n padding = 0\n) {\n if (placement.indexOf('auto') === -1) {\n return placement;\n }\n\n const boundaries = getBoundaries(\n popper,\n reference,\n padding,\n boundariesElement\n );\n\n const rects = {\n top: {\n width: boundaries.width,\n height: refRect.top - boundaries.top,\n },\n right: {\n width: boundaries.right - refRect.right,\n height: boundaries.height,\n },\n bottom: {\n width: boundaries.width,\n height: boundaries.bottom - refRect.bottom,\n },\n left: {\n width: refRect.left - boundaries.left,\n height: boundaries.height,\n },\n };\n\n const sortedAreas = Object.keys(rects)\n .map(key => ({\n key,\n ...rects[key],\n area: getArea(rects[key]),\n }))\n .sort((a, b) => b.area - a.area);\n\n const filteredAreas = sortedAreas.filter(\n ({ width, height }) =>\n width >= popper.clientWidth && height >= popper.clientHeight\n );\n\n const computedPlacement = filteredAreas.length > 0\n ? filteredAreas[0].key\n : sortedAreas[0].key;\n\n const variation = placement.split('-')[1];\n\n return computedPlacement + (variation ? `-${variation}` : '');\n}\n","import findCommonOffsetParent from './findCommonOffsetParent';\nimport getOffsetRectRelativeToArbitraryNode from './getOffsetRectRelativeToArbitraryNode';\nimport getFixedPositionOffsetParent from './getFixedPositionOffsetParent';\nimport getReferenceNode from './getReferenceNode';\n\n/**\n * Get offsets to the reference element\n * @method\n * @memberof Popper.Utils\n * @param {Object} state\n * @param {Element} popper - the popper element\n * @param {Element} reference - the reference element (the popper will be relative to this)\n * @param {Element} fixedPosition - is in fixed position mode\n * @returns {Object} An object containing the offsets which will be applied to the popper\n */\nexport default function getReferenceOffsets(state, popper, reference, fixedPosition = null) {\n const commonOffsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, getReferenceNode(reference));\n return getOffsetRectRelativeToArbitraryNode(reference, commonOffsetParent, fixedPosition);\n}\n","/**\n * Get the outer sizes of the given element (offset size + margins)\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Object} object containing width and height properties\n */\nexport default function getOuterSizes(element) {\n const window = element.ownerDocument.defaultView;\n const styles = window.getComputedStyle(element);\n const x = parseFloat(styles.marginTop || 0) + parseFloat(styles.marginBottom || 0);\n const y = parseFloat(styles.marginLeft || 0) + parseFloat(styles.marginRight || 0);\n const result = {\n width: element.offsetWidth + y,\n height: element.offsetHeight + x,\n };\n return result;\n}\n","/**\n * Get the opposite placement of the given one\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement\n * @returns {String} flipped placement\n */\nexport default function getOppositePlacement(placement) {\n const hash = { left: 'right', right: 'left', bottom: 'top', top: 'bottom' };\n return placement.replace(/left|right|bottom|top/g, matched => hash[matched]);\n}\n","import getOuterSizes from './getOuterSizes';\nimport getOppositePlacement from './getOppositePlacement';\n\n/**\n * Get offsets to the popper\n * @method\n * @memberof Popper.Utils\n * @param {Object} position - CSS position the Popper will get applied\n * @param {HTMLElement} popper - the popper element\n * @param {Object} referenceOffsets - the reference offsets (the popper will be relative to this)\n * @param {String} placement - one of the valid placement options\n * @returns {Object} popperOffsets - An object containing the offsets which will be applied to the popper\n */\nexport default function getPopperOffsets(popper, referenceOffsets, placement) {\n placement = placement.split('-')[0];\n\n // Get popper node sizes\n const popperRect = getOuterSizes(popper);\n\n // Add position, width and height to our offsets object\n const popperOffsets = {\n width: popperRect.width,\n height: popperRect.height,\n };\n\n // depending by the popper placement we have to compute its offsets slightly differently\n const isHoriz = ['right', 'left'].indexOf(placement) !== -1;\n const mainSide = isHoriz ? 'top' : 'left';\n const secondarySide = isHoriz ? 'left' : 'top';\n const measurement = isHoriz ? 'height' : 'width';\n const secondaryMeasurement = !isHoriz ? 'height' : 'width';\n\n popperOffsets[mainSide] =\n referenceOffsets[mainSide] +\n referenceOffsets[measurement] / 2 -\n popperRect[measurement] / 2;\n if (placement === secondarySide) {\n popperOffsets[secondarySide] =\n referenceOffsets[secondarySide] - popperRect[secondaryMeasurement];\n } else {\n popperOffsets[secondarySide] =\n referenceOffsets[getOppositePlacement(secondarySide)];\n }\n\n return popperOffsets;\n}\n","/**\n * Mimics the `find` method of Array\n * @method\n * @memberof Popper.Utils\n * @argument {Array} arr\n * @argument prop\n * @argument value\n * @returns index or -1\n */\nexport default function find(arr, check) {\n // use native find if supported\n if (Array.prototype.find) {\n return arr.find(check);\n }\n\n // use `filter` to obtain the same behavior of `find`\n return arr.filter(check)[0];\n}\n","import isFunction from './isFunction';\nimport findIndex from './findIndex';\nimport getClientRect from '../utils/getClientRect';\n\n/**\n * Loop trough the list of modifiers and run them in order,\n * each of them will then edit the data object.\n * @method\n * @memberof Popper.Utils\n * @param {dataObject} data\n * @param {Array} modifiers\n * @param {String} ends - Optional modifier name used as stopper\n * @returns {dataObject}\n */\nexport default function runModifiers(modifiers, data, ends) {\n const modifiersToRun = ends === undefined\n ? modifiers\n : modifiers.slice(0, findIndex(modifiers, 'name', ends));\n\n modifiersToRun.forEach(modifier => {\n if (modifier['function']) { // eslint-disable-line dot-notation\n console.warn('`modifier.function` is deprecated, use `modifier.fn`!');\n }\n const fn = modifier['function'] || modifier.fn; // eslint-disable-line dot-notation\n if (modifier.enabled && isFunction(fn)) {\n // Add properties to offsets to make them a complete clientRect object\n // we do this before each modifier to make sure the previous one doesn't\n // mess with these values\n data.offsets.popper = getClientRect(data.offsets.popper);\n data.offsets.reference = getClientRect(data.offsets.reference);\n\n data = fn(data, modifier);\n }\n });\n\n return data;\n}\n","import find from './find';\n\n/**\n * Return the index of the matching object\n * @method\n * @memberof Popper.Utils\n * @argument {Array} arr\n * @argument prop\n * @argument value\n * @returns index or -1\n */\nexport default function findIndex(arr, prop, value) {\n // use native findIndex if supported\n if (Array.prototype.findIndex) {\n return arr.findIndex(cur => cur[prop] === value);\n }\n\n // use `find` + `indexOf` if `findIndex` isn't supported\n const match = find(arr, obj => obj[prop] === value);\n return arr.indexOf(match);\n}\n","import computeAutoPlacement from '../utils/computeAutoPlacement';\nimport getReferenceOffsets from '../utils/getReferenceOffsets';\nimport getPopperOffsets from '../utils/getPopperOffsets';\nimport runModifiers from '../utils/runModifiers';\n\n/**\n * Updates the position of the popper, computing the new offsets and applying\n * the new style.
\n * Prefer `scheduleUpdate` over `update` because of performance reasons.\n * @method\n * @memberof Popper\n */\nexport default function update() {\n // if popper is destroyed, don't perform any further update\n if (this.state.isDestroyed) {\n return;\n }\n\n let data = {\n instance: this,\n styles: {},\n arrowStyles: {},\n attributes: {},\n flipped: false,\n offsets: {},\n };\n\n // compute reference element offsets\n data.offsets.reference = getReferenceOffsets(\n this.state,\n this.popper,\n this.reference,\n this.options.positionFixed\n );\n\n // compute auto placement, store placement inside the data object,\n // modifiers will be able to edit `placement` if needed\n // and refer to originalPlacement to know the original value\n data.placement = computeAutoPlacement(\n this.options.placement,\n data.offsets.reference,\n this.popper,\n this.reference,\n this.options.modifiers.flip.boundariesElement,\n this.options.modifiers.flip.padding\n );\n\n // store the computed placement inside `originalPlacement`\n data.originalPlacement = data.placement;\n\n data.positionFixed = this.options.positionFixed;\n\n // compute the popper offsets\n data.offsets.popper = getPopperOffsets(\n this.popper,\n data.offsets.reference,\n data.placement\n );\n\n data.offsets.popper.position = this.options.positionFixed\n ? 'fixed'\n : 'absolute';\n\n // run the modifiers\n data = runModifiers(this.modifiers, data);\n\n // the first `update` will call `onCreate` callback\n // the other ones will call `onUpdate` callback\n if (!this.state.isCreated) {\n this.state.isCreated = true;\n this.options.onCreate(data);\n } else {\n this.options.onUpdate(data);\n }\n}\n","/**\n * Helper used to know if the given modifier is enabled.\n * @method\n * @memberof Popper.Utils\n * @returns {Boolean}\n */\nexport default function isModifierEnabled(modifiers, modifierName) {\n return modifiers.some(\n ({ name, enabled }) => enabled && name === modifierName\n );\n}\n","/**\n * Get the prefixed supported property name\n * @method\n * @memberof Popper.Utils\n * @argument {String} property (camelCase)\n * @returns {String} prefixed property (camelCase or PascalCase, depending on the vendor prefix)\n */\nexport default function getSupportedPropertyName(property) {\n const prefixes = [false, 'ms', 'Webkit', 'Moz', 'O'];\n const upperProp = property.charAt(0).toUpperCase() + property.slice(1);\n\n for (let i = 0; i < prefixes.length; i++) {\n const prefix = prefixes[i];\n const toCheck = prefix ? `${prefix}${upperProp}` : property;\n if (typeof document.body.style[toCheck] !== 'undefined') {\n return toCheck;\n }\n }\n return null;\n}\n","import isModifierEnabled from '../utils/isModifierEnabled';\nimport getSupportedPropertyName from '../utils/getSupportedPropertyName';\n\n/**\n * Destroys the popper.\n * @method\n * @memberof Popper\n */\nexport default function destroy() {\n this.state.isDestroyed = true;\n\n // touch DOM only if `applyStyle` modifier is enabled\n if (isModifierEnabled(this.modifiers, 'applyStyle')) {\n this.popper.removeAttribute('x-placement');\n this.popper.style.position = '';\n this.popper.style.top = '';\n this.popper.style.left = '';\n this.popper.style.right = '';\n this.popper.style.bottom = '';\n this.popper.style.willChange = '';\n this.popper.style[getSupportedPropertyName('transform')] = '';\n }\n\n this.disableEventListeners();\n\n // remove the popper if user explicitly asked for the deletion on destroy\n // do not use `remove` because IE11 doesn't support it\n if (this.options.removeOnDestroy) {\n this.popper.parentNode.removeChild(this.popper);\n }\n return this;\n}\n","/**\n * Get the window associated with the element\n * @argument {Element} element\n * @returns {Window}\n */\nexport default function getWindow(element) {\n const ownerDocument = element.ownerDocument;\n return ownerDocument ? ownerDocument.defaultView : window;\n}\n","import getScrollParent from './getScrollParent';\nimport getWindow from './getWindow';\n\nfunction attachToScrollParents(scrollParent, event, callback, scrollParents) {\n const isBody = scrollParent.nodeName === 'BODY';\n const target = isBody ? scrollParent.ownerDocument.defaultView : scrollParent;\n target.addEventListener(event, callback, { passive: true });\n\n if (!isBody) {\n attachToScrollParents(\n getScrollParent(target.parentNode),\n event,\n callback,\n scrollParents\n );\n }\n scrollParents.push(target);\n}\n\n/**\n * Setup needed event listeners used to update the popper position\n * @method\n * @memberof Popper.Utils\n * @private\n */\nexport default function setupEventListeners(\n reference,\n options,\n state,\n updateBound\n) {\n // Resize event listener on window\n state.updateBound = updateBound;\n getWindow(reference).addEventListener('resize', state.updateBound, { passive: true });\n\n // Scroll event listener on scroll parents\n const scrollElement = getScrollParent(reference);\n attachToScrollParents(\n scrollElement,\n 'scroll',\n state.updateBound,\n state.scrollParents\n );\n state.scrollElement = scrollElement;\n state.eventsEnabled = true;\n\n return state;\n}\n","import setupEventListeners from '../utils/setupEventListeners';\n\n/**\n * It will add resize/scroll events and start recalculating\n * position of the popper element when they are triggered.\n * @method\n * @memberof Popper\n */\nexport default function enableEventListeners() {\n if (!this.state.eventsEnabled) {\n this.state = setupEventListeners(\n this.reference,\n this.options,\n this.state,\n this.scheduleUpdate\n );\n }\n}\n","import removeEventListeners from '../utils/removeEventListeners';\n\n/**\n * It will remove resize/scroll events and won't recalculate popper position\n * when they are triggered. It also won't trigger `onUpdate` callback anymore,\n * unless you call `update` method manually.\n * @method\n * @memberof Popper\n */\nexport default function disableEventListeners() {\n if (this.state.eventsEnabled) {\n cancelAnimationFrame(this.scheduleUpdate);\n this.state = removeEventListeners(this.reference, this.state);\n }\n}\n","import getWindow from './getWindow';\n\n/**\n * Remove event listeners used to update the popper position\n * @method\n * @memberof Popper.Utils\n * @private\n */\nexport default function removeEventListeners(reference, state) {\n // Remove resize event listener on window\n getWindow(reference).removeEventListener('resize', state.updateBound);\n\n // Remove scroll event listener on scroll parents\n state.scrollParents.forEach(target => {\n target.removeEventListener('scroll', state.updateBound);\n });\n\n // Reset state\n state.updateBound = null;\n state.scrollParents = [];\n state.scrollElement = null;\n state.eventsEnabled = false;\n return state;\n}\n","/**\n * Tells if a given input is a number\n * @method\n * @memberof Popper.Utils\n * @param {*} input to check\n * @return {Boolean}\n */\nexport default function isNumeric(n) {\n return n !== '' && !isNaN(parseFloat(n)) && isFinite(n);\n}\n","import isNumeric from './isNumeric';\n\n/**\n * Set the style to the given popper\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element - Element to apply the style to\n * @argument {Object} styles\n * Object with a list of properties and values which will be applied to the element\n */\nexport default function setStyles(element, styles) {\n Object.keys(styles).forEach(prop => {\n let unit = '';\n // add unit if the value is numeric and is one of the following\n if (\n ['width', 'height', 'top', 'right', 'bottom', 'left'].indexOf(prop) !==\n -1 &&\n isNumeric(styles[prop])\n ) {\n unit = 'px';\n }\n element.style[prop] = styles[prop] + unit;\n });\n}\n","import getSupportedPropertyName from '../utils/getSupportedPropertyName';\nimport find from '../utils/find';\nimport getOffsetParent from '../utils/getOffsetParent';\nimport getBoundingClientRect from '../utils/getBoundingClientRect';\nimport getRoundedOffsets from '../utils/getRoundedOffsets';\nimport isBrowser from '../utils/isBrowser';\n\nconst isFirefox = isBrowser && /Firefox/i.test(navigator.userAgent);\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nexport default function computeStyle(data, options) {\n const { x, y } = options;\n const { popper } = data.offsets;\n\n // Remove this legacy support in Popper.js v2\n const legacyGpuAccelerationOption = find(\n data.instance.modifiers,\n modifier => modifier.name === 'applyStyle'\n ).gpuAcceleration;\n if (legacyGpuAccelerationOption !== undefined) {\n console.warn(\n 'WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!'\n );\n }\n const gpuAcceleration =\n legacyGpuAccelerationOption !== undefined\n ? legacyGpuAccelerationOption\n : options.gpuAcceleration;\n\n const offsetParent = getOffsetParent(data.instance.popper);\n const offsetParentRect = getBoundingClientRect(offsetParent);\n\n // Styles\n const styles = {\n position: popper.position,\n };\n\n const offsets = getRoundedOffsets(\n data,\n window.devicePixelRatio < 2 || !isFirefox\n );\n\n const sideA = x === 'bottom' ? 'top' : 'bottom';\n const sideB = y === 'right' ? 'left' : 'right';\n\n // if gpuAcceleration is set to `true` and transform is supported,\n // we use `translate3d` to apply the position to the popper we\n // automatically use the supported prefixed version if needed\n const prefixedProperty = getSupportedPropertyName('transform');\n\n // now, let's make a step back and look at this code closely (wtf?)\n // If the content of the popper grows once it's been positioned, it\n // may happen that the popper gets misplaced because of the new content\n // overflowing its reference element\n // To avoid this problem, we provide two options (x and y), which allow\n // the consumer to define the offset origin.\n // If we position a popper on top of a reference element, we can set\n // `x` to `top` to make the popper grow towards its top instead of\n // its bottom.\n let left, top;\n if (sideA === 'bottom') {\n // when offsetParent is the positioning is relative to the bottom of the screen (excluding the scrollbar)\n // and not the bottom of the html element\n if (offsetParent.nodeName === 'HTML') {\n top = -offsetParent.clientHeight + offsets.bottom;\n } else {\n top = -offsetParentRect.height + offsets.bottom;\n }\n } else {\n top = offsets.top;\n }\n if (sideB === 'right') {\n if (offsetParent.nodeName === 'HTML') {\n left = -offsetParent.clientWidth + offsets.right;\n } else {\n left = -offsetParentRect.width + offsets.right;\n }\n } else {\n left = offsets.left;\n }\n if (gpuAcceleration && prefixedProperty) {\n styles[prefixedProperty] = `translate3d(${left}px, ${top}px, 0)`;\n styles[sideA] = 0;\n styles[sideB] = 0;\n styles.willChange = 'transform';\n } else {\n // othwerise, we use the standard `top`, `left`, `bottom` and `right` properties\n const invertTop = sideA === 'bottom' ? -1 : 1;\n const invertLeft = sideB === 'right' ? -1 : 1;\n styles[sideA] = top * invertTop;\n styles[sideB] = left * invertLeft;\n styles.willChange = `${sideA}, ${sideB}`;\n }\n\n // Attributes\n const attributes = {\n 'x-placement': data.placement,\n };\n\n // Update `data` attributes, styles and arrowStyles\n data.attributes = { ...attributes, ...data.attributes };\n data.styles = { ...styles, ...data.styles };\n data.arrowStyles = { ...data.offsets.arrow, ...data.arrowStyles };\n\n return data;\n}\n","import find from './find';\n\n/**\n * Helper used to know if the given modifier depends from another one.
\n * It checks if the needed modifier is listed and enabled.\n * @method\n * @memberof Popper.Utils\n * @param {Array} modifiers - list of modifiers\n * @param {String} requestingName - name of requesting modifier\n * @param {String} requestedName - name of requested modifier\n * @returns {Boolean}\n */\nexport default function isModifierRequired(\n modifiers,\n requestingName,\n requestedName\n) {\n const requesting = find(modifiers, ({ name }) => name === requestingName);\n\n const isRequired =\n !!requesting &&\n modifiers.some(modifier => {\n return (\n modifier.name === requestedName &&\n modifier.enabled &&\n modifier.order < requesting.order\n );\n });\n\n if (!isRequired) {\n const requesting = `\\`${requestingName}\\``;\n const requested = `\\`${requestedName}\\``;\n console.warn(\n `${requested} modifier is required by ${requesting} modifier in order to work, be sure to include it before ${requesting}!`\n );\n }\n return isRequired;\n}\n","/**\n * List of accepted placements to use as values of the `placement` option.
\n * Valid placements are:\n * - `auto`\n * - `top`\n * - `right`\n * - `bottom`\n * - `left`\n *\n * Each placement can have a variation from this list:\n * - `-start`\n * - `-end`\n *\n * Variations are interpreted easily if you think of them as the left to right\n * written languages. Horizontally (`top` and `bottom`), `start` is left and `end`\n * is right.
\n * Vertically (`left` and `right`), `start` is top and `end` is bottom.\n *\n * Some valid examples are:\n * - `top-end` (on top of reference, right aligned)\n * - `right-start` (on right of reference, top aligned)\n * - `bottom` (on bottom, centered)\n * - `auto-end` (on the side with more space available, alignment depends by placement)\n *\n * @static\n * @type {Array}\n * @enum {String}\n * @readonly\n * @method placements\n * @memberof Popper\n */\nexport default [\n 'auto-start',\n 'auto',\n 'auto-end',\n 'top-start',\n 'top',\n 'top-end',\n 'right-start',\n 'right',\n 'right-end',\n 'bottom-end',\n 'bottom',\n 'bottom-start',\n 'left-end',\n 'left',\n 'left-start',\n];\n","import placements from '../methods/placements';\n\n// Get rid of `auto` `auto-start` and `auto-end`\nconst validPlacements = placements.slice(3);\n\n/**\n * Given an initial placement, returns all the subsequent placements\n * clockwise (or counter-clockwise).\n *\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement - A valid placement (it accepts variations)\n * @argument {Boolean} counter - Set to true to walk the placements counterclockwise\n * @returns {Array} placements including their variations\n */\nexport default function clockwise(placement, counter = false) {\n const index = validPlacements.indexOf(placement);\n const arr = validPlacements\n .slice(index + 1)\n .concat(validPlacements.slice(0, index));\n return counter ? arr.reverse() : arr;\n}\n","import getOppositePlacement from '../utils/getOppositePlacement';\nimport getOppositeVariation from '../utils/getOppositeVariation';\nimport getPopperOffsets from '../utils/getPopperOffsets';\nimport runModifiers from '../utils/runModifiers';\nimport getBoundaries from '../utils/getBoundaries';\nimport isModifierEnabled from '../utils/isModifierEnabled';\nimport clockwise from '../utils/clockwise';\n\nconst BEHAVIORS = {\n FLIP: 'flip',\n CLOCKWISE: 'clockwise',\n COUNTERCLOCKWISE: 'counterclockwise',\n};\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nexport default function flip(data, options) {\n // if `inner` modifier is enabled, we can't use the `flip` modifier\n if (isModifierEnabled(data.instance.modifiers, 'inner')) {\n return data;\n }\n\n if (data.flipped && data.placement === data.originalPlacement) {\n // seems like flip is trying to loop, probably there's not enough space on any of the flippable sides\n return data;\n }\n\n const boundaries = getBoundaries(\n data.instance.popper,\n data.instance.reference,\n options.padding,\n options.boundariesElement,\n data.positionFixed\n );\n\n let placement = data.placement.split('-')[0];\n let placementOpposite = getOppositePlacement(placement);\n let variation = data.placement.split('-')[1] || '';\n\n let flipOrder = [];\n\n switch (options.behavior) {\n case BEHAVIORS.FLIP:\n flipOrder = [placement, placementOpposite];\n break;\n case BEHAVIORS.CLOCKWISE:\n flipOrder = clockwise(placement);\n break;\n case BEHAVIORS.COUNTERCLOCKWISE:\n flipOrder = clockwise(placement, true);\n break;\n default:\n flipOrder = options.behavior;\n }\n\n flipOrder.forEach((step, index) => {\n if (placement !== step || flipOrder.length === index + 1) {\n return data;\n }\n\n placement = data.placement.split('-')[0];\n placementOpposite = getOppositePlacement(placement);\n\n const popperOffsets = data.offsets.popper;\n const refOffsets = data.offsets.reference;\n\n // using floor because the reference offsets may contain decimals we are not going to consider here\n const floor = Math.floor;\n const overlapsRef =\n (placement === 'left' &&\n floor(popperOffsets.right) > floor(refOffsets.left)) ||\n (placement === 'right' &&\n floor(popperOffsets.left) < floor(refOffsets.right)) ||\n (placement === 'top' &&\n floor(popperOffsets.bottom) > floor(refOffsets.top)) ||\n (placement === 'bottom' &&\n floor(popperOffsets.top) < floor(refOffsets.bottom));\n\n const overflowsLeft = floor(popperOffsets.left) < floor(boundaries.left);\n const overflowsRight = floor(popperOffsets.right) > floor(boundaries.right);\n const overflowsTop = floor(popperOffsets.top) < floor(boundaries.top);\n const overflowsBottom =\n floor(popperOffsets.bottom) > floor(boundaries.bottom);\n\n const overflowsBoundaries =\n (placement === 'left' && overflowsLeft) ||\n (placement === 'right' && overflowsRight) ||\n (placement === 'top' && overflowsTop) ||\n (placement === 'bottom' && overflowsBottom);\n\n // flip the variation if required\n const isVertical = ['top', 'bottom'].indexOf(placement) !== -1;\n\n // flips variation if reference element overflows boundaries\n const flippedVariationByRef =\n !!options.flipVariations &&\n ((isVertical && variation === 'start' && overflowsLeft) ||\n (isVertical && variation === 'end' && overflowsRight) ||\n (!isVertical && variation === 'start' && overflowsTop) ||\n (!isVertical && variation === 'end' && overflowsBottom));\n\n // flips variation if popper content overflows boundaries\n const flippedVariationByContent =\n !!options.flipVariationsByContent &&\n ((isVertical && variation === 'start' && overflowsRight) ||\n (isVertical && variation === 'end' && overflowsLeft) ||\n (!isVertical && variation === 'start' && overflowsBottom) ||\n (!isVertical && variation === 'end' && overflowsTop));\n\n const flippedVariation = flippedVariationByRef || flippedVariationByContent;\n\n if (overlapsRef || overflowsBoundaries || flippedVariation) {\n // this boolean to detect any flip loop\n data.flipped = true;\n\n if (overlapsRef || overflowsBoundaries) {\n placement = flipOrder[index + 1];\n }\n\n if (flippedVariation) {\n variation = getOppositeVariation(variation);\n }\n\n data.placement = placement + (variation ? '-' + variation : '');\n\n // this object contains `position`, we want to preserve it along with\n // any additional property we may add in the future\n data.offsets.popper = {\n ...data.offsets.popper,\n ...getPopperOffsets(\n data.instance.popper,\n data.offsets.reference,\n data.placement\n ),\n };\n\n data = runModifiers(data.instance.modifiers, data, 'flip');\n }\n });\n return data;\n}\n","import isNumeric from '../utils/isNumeric';\nimport getClientRect from '../utils/getClientRect';\nimport find from '../utils/find';\n\n/**\n * Converts a string containing value + unit into a px value number\n * @function\n * @memberof {modifiers~offset}\n * @private\n * @argument {String} str - Value + unit string\n * @argument {String} measurement - `height` or `width`\n * @argument {Object} popperOffsets\n * @argument {Object} referenceOffsets\n * @returns {Number|String}\n * Value in pixels, or original string if no values were extracted\n */\nexport function toValue(str, measurement, popperOffsets, referenceOffsets) {\n // separate value from unit\n const split = str.match(/((?:\\-|\\+)?\\d*\\.?\\d*)(.*)/);\n const value = +split[1];\n const unit = split[2];\n\n // If it's not a number it's an operator, I guess\n if (!value) {\n return str;\n }\n\n if (unit.indexOf('%') === 0) {\n let element;\n switch (unit) {\n case '%p':\n element = popperOffsets;\n break;\n case '%':\n case '%r':\n default:\n element = referenceOffsets;\n }\n\n const rect = getClientRect(element);\n return rect[measurement] / 100 * value;\n } else if (unit === 'vh' || unit === 'vw') {\n // if is a vh or vw, we calculate the size based on the viewport\n let size;\n if (unit === 'vh') {\n size = Math.max(\n document.documentElement.clientHeight,\n window.innerHeight || 0\n );\n } else {\n size = Math.max(\n document.documentElement.clientWidth,\n window.innerWidth || 0\n );\n }\n return size / 100 * value;\n } else {\n // if is an explicit pixel unit, we get rid of the unit and keep the value\n // if is an implicit unit, it's px, and we return just the value\n return value;\n }\n}\n\n/**\n * Parse an `offset` string to extrapolate `x` and `y` numeric offsets.\n * @function\n * @memberof {modifiers~offset}\n * @private\n * @argument {String} offset\n * @argument {Object} popperOffsets\n * @argument {Object} referenceOffsets\n * @argument {String} basePlacement\n * @returns {Array} a two cells array with x and y offsets in numbers\n */\nexport function parseOffset(\n offset,\n popperOffsets,\n referenceOffsets,\n basePlacement\n) {\n const offsets = [0, 0];\n\n // Use height if placement is left or right and index is 0 otherwise use width\n // in this way the first offset will use an axis and the second one\n // will use the other one\n const useHeight = ['right', 'left'].indexOf(basePlacement) !== -1;\n\n // Split the offset string to obtain a list of values and operands\n // The regex addresses values with the plus or minus sign in front (+10, -20, etc)\n const fragments = offset.split(/(\\+|\\-)/).map(frag => frag.trim());\n\n // Detect if the offset string contains a pair of values or a single one\n // they could be separated by comma or space\n const divider = fragments.indexOf(\n find(fragments, frag => frag.search(/,|\\s/) !== -1)\n );\n\n if (fragments[divider] && fragments[divider].indexOf(',') === -1) {\n console.warn(\n 'Offsets separated by white space(s) are deprecated, use a comma (,) instead.'\n );\n }\n\n // If divider is found, we divide the list of values and operands to divide\n // them by ofset X and Y.\n const splitRegex = /\\s*,\\s*|\\s+/;\n let ops = divider !== -1\n ? [\n fragments\n .slice(0, divider)\n .concat([fragments[divider].split(splitRegex)[0]]),\n [fragments[divider].split(splitRegex)[1]].concat(\n fragments.slice(divider + 1)\n ),\n ]\n : [fragments];\n\n // Convert the values with units to absolute pixels to allow our computations\n ops = ops.map((op, index) => {\n // Most of the units rely on the orientation of the popper\n const measurement = (index === 1 ? !useHeight : useHeight)\n ? 'height'\n : 'width';\n let mergeWithPrevious = false;\n return (\n op\n // This aggregates any `+` or `-` sign that aren't considered operators\n // e.g.: 10 + +5 => [10, +, +5]\n .reduce((a, b) => {\n if (a[a.length - 1] === '' && ['+', '-'].indexOf(b) !== -1) {\n a[a.length - 1] = b;\n mergeWithPrevious = true;\n return a;\n } else if (mergeWithPrevious) {\n a[a.length - 1] += b;\n mergeWithPrevious = false;\n return a;\n } else {\n return a.concat(b);\n }\n }, [])\n // Here we convert the string values into number values (in px)\n .map(str => toValue(str, measurement, popperOffsets, referenceOffsets))\n );\n });\n\n // Loop trough the offsets arrays and execute the operations\n ops.forEach((op, index) => {\n op.forEach((frag, index2) => {\n if (isNumeric(frag)) {\n offsets[index] += frag * (op[index2 - 1] === '-' ? -1 : 1);\n }\n });\n });\n return offsets;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @argument {Number|String} options.offset=0\n * The offset value as described in the modifier description\n * @returns {Object} The data object, properly modified\n */\nexport default function offset(data, { offset }) {\n const { placement, offsets: { popper, reference } } = data;\n const basePlacement = placement.split('-')[0];\n\n let offsets;\n if (isNumeric(+offset)) {\n offsets = [+offset, 0];\n } else {\n offsets = parseOffset(offset, popper, reference, basePlacement);\n }\n\n if (basePlacement === 'left') {\n popper.top += offsets[0];\n popper.left -= offsets[1];\n } else if (basePlacement === 'right') {\n popper.top += offsets[0];\n popper.left += offsets[1];\n } else if (basePlacement === 'top') {\n popper.left += offsets[0];\n popper.top -= offsets[1];\n } else if (basePlacement === 'bottom') {\n popper.left += offsets[0];\n popper.top += offsets[1];\n }\n\n data.popper = popper;\n return data;\n}\n","import applyStyle, { applyStyleOnLoad } from './applyStyle';\nimport computeStyle from './computeStyle';\nimport arrow from './arrow';\nimport flip from './flip';\nimport keepTogether from './keepTogether';\nimport offset from './offset';\nimport preventOverflow from './preventOverflow';\nimport shift from './shift';\nimport hide from './hide';\nimport inner from './inner';\n\n/**\n * Modifier function, each modifier can have a function of this type assigned\n * to its `fn` property.
\n * These functions will be called on each update, this means that you must\n * make sure they are performant enough to avoid performance bottlenecks.\n *\n * @function ModifierFn\n * @argument {dataObject} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {dataObject} The data object, properly modified\n */\n\n/**\n * Modifiers are plugins used to alter the behavior of your poppers.
\n * Popper.js uses a set of 9 modifiers to provide all the basic functionalities\n * needed by the library.\n *\n * Usually you don't want to override the `order`, `fn` and `onLoad` props.\n * All the other properties are configurations that could be tweaked.\n * @namespace modifiers\n */\nexport default {\n /**\n * Modifier used to shift the popper on the start or end of its reference\n * element.
\n * It will read the variation of the `placement` property.
\n * It can be one either `-end` or `-start`.\n * @memberof modifiers\n * @inner\n */\n shift: {\n /** @prop {number} order=100 - Index used to define the order of execution */\n order: 100,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: shift,\n },\n\n /**\n * The `offset` modifier can shift your popper on both its axis.\n *\n * It accepts the following units:\n * - `px` or unit-less, interpreted as pixels\n * - `%` or `%r`, percentage relative to the length of the reference element\n * - `%p`, percentage relative to the length of the popper element\n * - `vw`, CSS viewport width unit\n * - `vh`, CSS viewport height unit\n *\n * For length is intended the main axis relative to the placement of the popper.
\n * This means that if the placement is `top` or `bottom`, the length will be the\n * `width`. In case of `left` or `right`, it will be the `height`.\n *\n * You can provide a single value (as `Number` or `String`), or a pair of values\n * as `String` divided by a comma or one (or more) white spaces.
\n * The latter is a deprecated method because it leads to confusion and will be\n * removed in v2.
\n * Additionally, it accepts additions and subtractions between different units.\n * Note that multiplications and divisions aren't supported.\n *\n * Valid examples are:\n * ```\n * 10\n * '10%'\n * '10, 10'\n * '10%, 10'\n * '10 + 10%'\n * '10 - 5vh + 3%'\n * '-10px + 5vh, 5px - 6%'\n * ```\n * > **NB**: If you desire to apply offsets to your poppers in a way that may make them overlap\n * > with their reference element, unfortunately, you will have to disable the `flip` modifier.\n * > You can read more on this at this [issue](https://github.com/FezVrasta/popper.js/issues/373).\n *\n * @memberof modifiers\n * @inner\n */\n offset: {\n /** @prop {number} order=200 - Index used to define the order of execution */\n order: 200,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: offset,\n /** @prop {Number|String} offset=0\n * The offset value as described in the modifier description\n */\n offset: 0,\n },\n\n /**\n * Modifier used to prevent the popper from being positioned outside the boundary.\n *\n * A scenario exists where the reference itself is not within the boundaries.
\n * We can say it has \"escaped the boundaries\" — or just \"escaped\".
\n * In this case we need to decide whether the popper should either:\n *\n * - detach from the reference and remain \"trapped\" in the boundaries, or\n * - if it should ignore the boundary and \"escape with its reference\"\n *\n * When `escapeWithReference` is set to`true` and reference is completely\n * outside its boundaries, the popper will overflow (or completely leave)\n * the boundaries in order to remain attached to the edge of the reference.\n *\n * @memberof modifiers\n * @inner\n */\n preventOverflow: {\n /** @prop {number} order=300 - Index used to define the order of execution */\n order: 300,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: preventOverflow,\n /**\n * @prop {Array} [priority=['left','right','top','bottom']]\n * Popper will try to prevent overflow following these priorities by default,\n * then, it could overflow on the left and on top of the `boundariesElement`\n */\n priority: ['left', 'right', 'top', 'bottom'],\n /**\n * @prop {number} padding=5\n * Amount of pixel used to define a minimum distance between the boundaries\n * and the popper. This makes sure the popper always has a little padding\n * between the edges of its container\n */\n padding: 5,\n /**\n * @prop {String|HTMLElement} boundariesElement='scrollParent'\n * Boundaries used by the modifier. Can be `scrollParent`, `window`,\n * `viewport` or any DOM element.\n */\n boundariesElement: 'scrollParent',\n },\n\n /**\n * Modifier used to make sure the reference and its popper stay near each other\n * without leaving any gap between the two. Especially useful when the arrow is\n * enabled and you want to ensure that it points to its reference element.\n * It cares only about the first axis. You can still have poppers with margin\n * between the popper and its reference element.\n * @memberof modifiers\n * @inner\n */\n keepTogether: {\n /** @prop {number} order=400 - Index used to define the order of execution */\n order: 400,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: keepTogether,\n },\n\n /**\n * This modifier is used to move the `arrowElement` of the popper to make\n * sure it is positioned between the reference element and its popper element.\n * It will read the outer size of the `arrowElement` node to detect how many\n * pixels of conjunction are needed.\n *\n * It has no effect if no `arrowElement` is provided.\n * @memberof modifiers\n * @inner\n */\n arrow: {\n /** @prop {number} order=500 - Index used to define the order of execution */\n order: 500,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: arrow,\n /** @prop {String|HTMLElement} element='[x-arrow]' - Selector or node used as arrow */\n element: '[x-arrow]',\n },\n\n /**\n * Modifier used to flip the popper's placement when it starts to overlap its\n * reference element.\n *\n * Requires the `preventOverflow` modifier before it in order to work.\n *\n * **NOTE:** this modifier will interrupt the current update cycle and will\n * restart it if it detects the need to flip the placement.\n * @memberof modifiers\n * @inner\n */\n flip: {\n /** @prop {number} order=600 - Index used to define the order of execution */\n order: 600,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: flip,\n /**\n * @prop {String|Array} behavior='flip'\n * The behavior used to change the popper's placement. It can be one of\n * `flip`, `clockwise`, `counterclockwise` or an array with a list of valid\n * placements (with optional variations)\n */\n behavior: 'flip',\n /**\n * @prop {number} padding=5\n * The popper will flip if it hits the edges of the `boundariesElement`\n */\n padding: 5,\n /**\n * @prop {String|HTMLElement} boundariesElement='viewport'\n * The element which will define the boundaries of the popper position.\n * The popper will never be placed outside of the defined boundaries\n * (except if `keepTogether` is enabled)\n */\n boundariesElement: 'viewport',\n /**\n * @prop {Boolean} flipVariations=false\n * The popper will switch placement variation between `-start` and `-end` when\n * the reference element overlaps its boundaries.\n *\n * The original placement should have a set variation.\n */\n flipVariations: false,\n /**\n * @prop {Boolean} flipVariationsByContent=false\n * The popper will switch placement variation between `-start` and `-end` when\n * the popper element overlaps its reference boundaries.\n *\n * The original placement should have a set variation.\n */\n flipVariationsByContent: false,\n },\n\n /**\n * Modifier used to make the popper flow toward the inner of the reference element.\n * By default, when this modifier is disabled, the popper will be placed outside\n * the reference element.\n * @memberof modifiers\n * @inner\n */\n inner: {\n /** @prop {number} order=700 - Index used to define the order of execution */\n order: 700,\n /** @prop {Boolean} enabled=false - Whether the modifier is enabled or not */\n enabled: false,\n /** @prop {ModifierFn} */\n fn: inner,\n },\n\n /**\n * Modifier used to hide the popper when its reference element is outside of the\n * popper boundaries. It will set a `x-out-of-boundaries` attribute which can\n * be used to hide with a CSS selector the popper when its reference is\n * out of boundaries.\n *\n * Requires the `preventOverflow` modifier before it in order to work.\n * @memberof modifiers\n * @inner\n */\n hide: {\n /** @prop {number} order=800 - Index used to define the order of execution */\n order: 800,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: hide,\n },\n\n /**\n * Computes the style that will be applied to the popper element to gets\n * properly positioned.\n *\n * Note that this modifier will not touch the DOM, it just prepares the styles\n * so that `applyStyle` modifier can apply it. This separation is useful\n * in case you need to replace `applyStyle` with a custom implementation.\n *\n * This modifier has `850` as `order` value to maintain backward compatibility\n * with previous versions of Popper.js. Expect the modifiers ordering method\n * to change in future major versions of the library.\n *\n * @memberof modifiers\n * @inner\n */\n computeStyle: {\n /** @prop {number} order=850 - Index used to define the order of execution */\n order: 850,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: computeStyle,\n /**\n * @prop {Boolean} gpuAcceleration=true\n * If true, it uses the CSS 3D transformation to position the popper.\n * Otherwise, it will use the `top` and `left` properties\n */\n gpuAcceleration: true,\n /**\n * @prop {string} [x='bottom']\n * Where to anchor the X axis (`bottom` or `top`). AKA X offset origin.\n * Change this if your popper should grow in a direction different from `bottom`\n */\n x: 'bottom',\n /**\n * @prop {string} [x='left']\n * Where to anchor the Y axis (`left` or `right`). AKA Y offset origin.\n * Change this if your popper should grow in a direction different from `right`\n */\n y: 'right',\n },\n\n /**\n * Applies the computed styles to the popper element.\n *\n * All the DOM manipulations are limited to this modifier. This is useful in case\n * you want to integrate Popper.js inside a framework or view library and you\n * want to delegate all the DOM manipulations to it.\n *\n * Note that if you disable this modifier, you must make sure the popper element\n * has its position set to `absolute` before Popper.js can do its work!\n *\n * Just disable this modifier and define your own to achieve the desired effect.\n *\n * @memberof modifiers\n * @inner\n */\n applyStyle: {\n /** @prop {number} order=900 - Index used to define the order of execution */\n order: 900,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: applyStyle,\n /** @prop {Function} */\n onLoad: applyStyleOnLoad,\n /**\n * @deprecated since version 1.10.0, the property moved to `computeStyle` modifier\n * @prop {Boolean} gpuAcceleration=true\n * If true, it uses the CSS 3D transformation to position the popper.\n * Otherwise, it will use the `top` and `left` properties\n */\n gpuAcceleration: undefined,\n },\n};\n\n/**\n * The `dataObject` is an object containing all the information used by Popper.js.\n * This object is passed to modifiers and to the `onCreate` and `onUpdate` callbacks.\n * @name dataObject\n * @property {Object} data.instance The Popper.js instance\n * @property {String} data.placement Placement applied to popper\n * @property {String} data.originalPlacement Placement originally defined on init\n * @property {Boolean} data.flipped True if popper has been flipped by flip modifier\n * @property {Boolean} data.hide True if the reference element is out of boundaries, useful to know when to hide the popper\n * @property {HTMLElement} data.arrowElement Node used as arrow by arrow modifier\n * @property {Object} data.styles Any CSS property defined here will be applied to the popper. It expects the JavaScript nomenclature (eg. `marginBottom`)\n * @property {Object} data.arrowStyles Any CSS property defined here will be applied to the popper arrow. It expects the JavaScript nomenclature (eg. `marginBottom`)\n * @property {Object} data.boundaries Offsets of the popper boundaries\n * @property {Object} data.offsets The measurements of popper, reference and arrow elements\n * @property {Object} data.offsets.popper `top`, `left`, `width`, `height` values\n * @property {Object} data.offsets.reference `top`, `left`, `width`, `height` values\n * @property {Object} data.offsets.arrow] `top` and `left` offsets, only one of them will be different from 0\n */\n","/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nexport default function shift(data) {\n const placement = data.placement;\n const basePlacement = placement.split('-')[0];\n const shiftvariation = placement.split('-')[1];\n\n // if shift shiftvariation is specified, run the modifier\n if (shiftvariation) {\n const { reference, popper } = data.offsets;\n const isVertical = ['bottom', 'top'].indexOf(basePlacement) !== -1;\n const side = isVertical ? 'left' : 'top';\n const measurement = isVertical ? 'width' : 'height';\n\n const shiftOffsets = {\n start: { [side]: reference[side] },\n end: {\n [side]: reference[side] + reference[measurement] - popper[measurement],\n },\n };\n\n data.offsets.popper = { ...popper, ...shiftOffsets[shiftvariation] };\n }\n\n return data;\n}\n","import getOffsetParent from '../utils/getOffsetParent';\nimport getBoundaries from '../utils/getBoundaries';\nimport getSupportedPropertyName from '../utils/getSupportedPropertyName';\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nexport default function preventOverflow(data, options) {\n let boundariesElement =\n options.boundariesElement || getOffsetParent(data.instance.popper);\n\n // If offsetParent is the reference element, we really want to\n // go one step up and use the next offsetParent as reference to\n // avoid to make this modifier completely useless and look like broken\n if (data.instance.reference === boundariesElement) {\n boundariesElement = getOffsetParent(boundariesElement);\n }\n\n // NOTE: DOM access here\n // resets the popper's position so that the document size can be calculated excluding\n // the size of the popper element itself\n const transformProp = getSupportedPropertyName('transform');\n const popperStyles = data.instance.popper.style; // assignment to help minification\n const { top, left, [transformProp]: transform } = popperStyles;\n popperStyles.top = '';\n popperStyles.left = '';\n popperStyles[transformProp] = '';\n\n const boundaries = getBoundaries(\n data.instance.popper,\n data.instance.reference,\n options.padding,\n boundariesElement,\n data.positionFixed\n );\n\n // NOTE: DOM access here\n // restores the original style properties after the offsets have been computed\n popperStyles.top = top;\n popperStyles.left = left;\n popperStyles[transformProp] = transform;\n\n options.boundaries = boundaries;\n\n const order = options.priority;\n let popper = data.offsets.popper;\n\n const check = {\n primary(placement) {\n let value = popper[placement];\n if (\n popper[placement] < boundaries[placement] &&\n !options.escapeWithReference\n ) {\n value = Math.max(popper[placement], boundaries[placement]);\n }\n return { [placement]: value };\n },\n secondary(placement) {\n const mainSide = placement === 'right' ? 'left' : 'top';\n let value = popper[mainSide];\n if (\n popper[placement] > boundaries[placement] &&\n !options.escapeWithReference\n ) {\n value = Math.min(\n popper[mainSide],\n boundaries[placement] -\n (placement === 'right' ? popper.width : popper.height)\n );\n }\n return { [mainSide]: value };\n },\n };\n\n order.forEach(placement => {\n const side =\n ['left', 'top'].indexOf(placement) !== -1 ? 'primary' : 'secondary';\n popper = { ...popper, ...check[side](placement) };\n });\n\n data.offsets.popper = popper;\n\n return data;\n}\n","/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nexport default function keepTogether(data) {\n const { popper, reference } = data.offsets;\n const placement = data.placement.split('-')[0];\n const floor = Math.floor;\n const isVertical = ['top', 'bottom'].indexOf(placement) !== -1;\n const side = isVertical ? 'right' : 'bottom';\n const opSide = isVertical ? 'left' : 'top';\n const measurement = isVertical ? 'width' : 'height';\n\n if (popper[side] < floor(reference[opSide])) {\n data.offsets.popper[opSide] =\n floor(reference[opSide]) - popper[measurement];\n }\n if (popper[opSide] > floor(reference[side])) {\n data.offsets.popper[opSide] = floor(reference[side]);\n }\n\n return data;\n}\n","import getClientRect from '../utils/getClientRect';\nimport getOuterSizes from '../utils/getOuterSizes';\nimport isModifierRequired from '../utils/isModifierRequired';\nimport getStyleComputedProperty from '../utils/getStyleComputedProperty';\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nexport default function arrow(data, options) {\n // arrow depends on keepTogether in order to work\n if (!isModifierRequired(data.instance.modifiers, 'arrow', 'keepTogether')) {\n return data;\n }\n\n let arrowElement = options.element;\n\n // if arrowElement is a string, suppose it's a CSS selector\n if (typeof arrowElement === 'string') {\n arrowElement = data.instance.popper.querySelector(arrowElement);\n\n // if arrowElement is not found, don't run the modifier\n if (!arrowElement) {\n return data;\n }\n } else {\n // if the arrowElement isn't a query selector we must check that the\n // provided DOM node is child of its popper node\n if (!data.instance.popper.contains(arrowElement)) {\n console.warn(\n 'WARNING: `arrow.element` must be child of its popper element!'\n );\n return data;\n }\n }\n\n const placement = data.placement.split('-')[0];\n const { popper, reference } = data.offsets;\n const isVertical = ['left', 'right'].indexOf(placement) !== -1;\n\n const len = isVertical ? 'height' : 'width';\n const sideCapitalized = isVertical ? 'Top' : 'Left';\n const side = sideCapitalized.toLowerCase();\n const altSide = isVertical ? 'left' : 'top';\n const opSide = isVertical ? 'bottom' : 'right';\n const arrowElementSize = getOuterSizes(arrowElement)[len];\n\n //\n // extends keepTogether behavior making sure the popper and its\n // reference have enough pixels in conjunction\n //\n\n // top/left side\n if (reference[opSide] - arrowElementSize < popper[side]) {\n data.offsets.popper[side] -=\n popper[side] - (reference[opSide] - arrowElementSize);\n }\n // bottom/right side\n if (reference[side] + arrowElementSize > popper[opSide]) {\n data.offsets.popper[side] +=\n reference[side] + arrowElementSize - popper[opSide];\n }\n data.offsets.popper = getClientRect(data.offsets.popper);\n\n // compute center of the popper\n const center = reference[side] + reference[len] / 2 - arrowElementSize / 2;\n\n // Compute the sideValue using the updated popper offsets\n // take popper margin in account because we don't have this info available\n const css = getStyleComputedProperty(data.instance.popper);\n const popperMarginSide = parseFloat(css[`margin${sideCapitalized}`]);\n const popperBorderSide = parseFloat(css[`border${sideCapitalized}Width`]);\n let sideValue =\n center - data.offsets.popper[side] - popperMarginSide - popperBorderSide;\n\n // prevent arrowElement from being placed not contiguously to its popper\n sideValue = Math.max(Math.min(popper[len] - arrowElementSize, sideValue), 0);\n\n data.arrowElement = arrowElement;\n data.offsets.arrow = {\n [side]: Math.round(sideValue),\n [altSide]: '', // make sure to unset any eventual altSide value from the DOM node\n };\n\n return data;\n}\n","/**\n * Get the opposite placement variation of the given one\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement variation\n * @returns {String} flipped placement variation\n */\nexport default function getOppositeVariation(variation) {\n if (variation === 'end') {\n return 'start';\n } else if (variation === 'start') {\n return 'end';\n }\n return variation;\n}\n","import getClientRect from '../utils/getClientRect';\nimport getOppositePlacement from '../utils/getOppositePlacement';\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nexport default function inner(data) {\n const placement = data.placement;\n const basePlacement = placement.split('-')[0];\n const { popper, reference } = data.offsets;\n const isHoriz = ['left', 'right'].indexOf(basePlacement) !== -1;\n\n const subtractLength = ['top', 'left'].indexOf(basePlacement) === -1;\n\n popper[isHoriz ? 'left' : 'top'] =\n reference[basePlacement] -\n (subtractLength ? popper[isHoriz ? 'width' : 'height'] : 0);\n\n data.placement = getOppositePlacement(placement);\n data.offsets.popper = getClientRect(popper);\n\n return data;\n}\n","import isModifierRequired from '../utils/isModifierRequired';\nimport find from '../utils/find';\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nexport default function hide(data) {\n if (!isModifierRequired(data.instance.modifiers, 'hide', 'preventOverflow')) {\n return data;\n }\n\n const refRect = data.offsets.reference;\n const bound = find(\n data.instance.modifiers,\n modifier => modifier.name === 'preventOverflow'\n ).boundaries;\n\n if (\n refRect.bottom < bound.top ||\n refRect.left > bound.right ||\n refRect.top > bound.bottom ||\n refRect.right < bound.left\n ) {\n // Avoid unnecessary DOM access if visibility hasn't changed\n if (data.hide === true) {\n return data;\n }\n\n data.hide = true;\n data.attributes['x-out-of-boundaries'] = '';\n } else {\n // Avoid unnecessary DOM access if visibility hasn't changed\n if (data.hide === false) {\n return data;\n }\n\n data.hide = false;\n data.attributes['x-out-of-boundaries'] = false;\n }\n\n return data;\n}\n","/**\n * @function\n * @memberof Popper.Utils\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Boolean} shouldRound - If the offsets should be rounded at all\n * @returns {Object} The popper's position offsets rounded\n *\n * The tale of pixel-perfect positioning. It's still not 100% perfect, but as\n * good as it can be within reason.\n * Discussion here: https://github.com/FezVrasta/popper.js/pull/715\n *\n * Low DPI screens cause a popper to be blurry if not using full pixels (Safari\n * as well on High DPI screens).\n *\n * Firefox prefers no rounding for positioning and does not have blurriness on\n * high DPI screens.\n *\n * Only horizontal placement and left/right values need to be considered.\n */\nexport default function getRoundedOffsets(data, shouldRound) {\n const { popper, reference } = data.offsets;\n const { round, floor } = Math;\n const noRound = v => v;\n \n const referenceWidth = round(reference.width);\n const popperWidth = round(popper.width);\n \n const isVertical = ['left', 'right'].indexOf(data.placement) !== -1;\n const isVariation = data.placement.indexOf('-') !== -1;\n const sameWidthParity = referenceWidth % 2 === popperWidth % 2;\n const bothOddWidth = referenceWidth % 2 === 1 && popperWidth % 2 === 1;\n\n const horizontalToInteger = !shouldRound\n ? noRound\n : isVertical || isVariation || sameWidthParity\n ? round\n : floor;\n const verticalToInteger = !shouldRound ? noRound : round;\n\n return {\n left: horizontalToInteger(\n bothOddWidth && !isVariation && shouldRound\n ? popper.left - 1\n : popper.left\n ),\n top: verticalToInteger(popper.top),\n bottom: verticalToInteger(popper.bottom),\n right: horizontalToInteger(popper.right),\n };\n}\n","import setStyles from '../utils/setStyles';\nimport setAttributes from '../utils/setAttributes';\nimport getReferenceOffsets from '../utils/getReferenceOffsets';\nimport computeAutoPlacement from '../utils/computeAutoPlacement';\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} data.styles - List of style properties - values to apply to popper element\n * @argument {Object} data.attributes - List of attribute properties - values to apply to popper element\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The same data object\n */\nexport default function applyStyle(data) {\n // any property present in `data.styles` will be applied to the popper,\n // in this way we can make the 3rd party modifiers add custom styles to it\n // Be aware, modifiers could override the properties defined in the previous\n // lines of this modifier!\n setStyles(data.instance.popper, data.styles);\n\n // any property present in `data.attributes` will be applied to the popper,\n // they will be set as HTML attributes of the element\n setAttributes(data.instance.popper, data.attributes);\n\n // if arrowElement is defined and arrowStyles has some properties\n if (data.arrowElement && Object.keys(data.arrowStyles).length) {\n setStyles(data.arrowElement, data.arrowStyles);\n }\n\n return data;\n}\n\n/**\n * Set the x-placement attribute before everything else because it could be used\n * to add margins to the popper margins needs to be calculated to get the\n * correct popper offsets.\n * @method\n * @memberof Popper.modifiers\n * @param {HTMLElement} reference - The reference element used to position the popper\n * @param {HTMLElement} popper - The HTML element used as popper\n * @param {Object} options - Popper.js options\n */\nexport function applyStyleOnLoad(\n reference,\n popper,\n options,\n modifierOptions,\n state\n) {\n // compute reference element offsets\n const referenceOffsets = getReferenceOffsets(state, popper, reference, options.positionFixed);\n\n // compute auto placement, store placement inside the data object,\n // modifiers will be able to edit `placement` if needed\n // and refer to originalPlacement to know the original value\n const placement = computeAutoPlacement(\n options.placement,\n referenceOffsets,\n popper,\n reference,\n options.modifiers.flip.boundariesElement,\n options.modifiers.flip.padding\n );\n\n popper.setAttribute('x-placement', placement);\n\n // Apply `position` to popper before anything else because\n // without the position applied we can't guarantee correct computations\n setStyles(popper, { position: options.positionFixed ? 'fixed' : 'absolute' });\n\n return options;\n}\n","/**\n * Set the attributes to the given popper\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element - Element to apply the attributes to\n * @argument {Object} styles\n * Object with a list of properties and values which will be applied to the element\n */\nexport default function setAttributes(element, attributes) {\n Object.keys(attributes).forEach(function(prop) {\n const value = attributes[prop];\n if (value !== false) {\n element.setAttribute(prop, attributes[prop]);\n } else {\n element.removeAttribute(prop);\n }\n });\n}\n","import modifiers from '../modifiers/index';\n\n/**\n * Default options provided to Popper.js constructor.
\n * These can be overridden using the `options` argument of Popper.js.
\n * To override an option, simply pass an object with the same\n * structure of the `options` object, as the 3rd argument. For example:\n * ```\n * new Popper(ref, pop, {\n * modifiers: {\n * preventOverflow: { enabled: false }\n * }\n * })\n * ```\n * @type {Object}\n * @static\n * @memberof Popper\n */\nexport default {\n /**\n * Popper's placement.\n * @prop {Popper.placements} placement='bottom'\n */\n placement: 'bottom',\n\n /**\n * Set this to true if you want popper to position it self in 'fixed' mode\n * @prop {Boolean} positionFixed=false\n */\n positionFixed: false,\n\n /**\n * Whether events (resize, scroll) are initially enabled.\n * @prop {Boolean} eventsEnabled=true\n */\n eventsEnabled: true,\n\n /**\n * Set to true if you want to automatically remove the popper when\n * you call the `destroy` method.\n * @prop {Boolean} removeOnDestroy=false\n */\n removeOnDestroy: false,\n\n /**\n * Callback called when the popper is created.
\n * By default, it is set to no-op.
\n * Access Popper.js instance with `data.instance`.\n * @prop {onCreate}\n */\n onCreate: () => {},\n\n /**\n * Callback called when the popper is updated. This callback is not called\n * on the initialization/creation of the popper, but only on subsequent\n * updates.
\n * By default, it is set to no-op.
\n * Access Popper.js instance with `data.instance`.\n * @prop {onUpdate}\n */\n onUpdate: () => {},\n\n /**\n * List of modifiers used to modify the offsets before they are applied to the popper.\n * They provide most of the functionalities of Popper.js.\n * @prop {modifiers}\n */\n modifiers,\n};\n\n/**\n * @callback onCreate\n * @param {dataObject} data\n */\n\n/**\n * @callback onUpdate\n * @param {dataObject} data\n */\n","// Utils\nimport debounce from './utils/debounce';\nimport isFunction from './utils/isFunction';\n\n// Methods\nimport update from './methods/update';\nimport destroy from './methods/destroy';\nimport enableEventListeners from './methods/enableEventListeners';\nimport disableEventListeners from './methods/disableEventListeners';\nimport Defaults from './methods/defaults';\nimport placements from './methods/placements';\n\nexport default class Popper {\n /**\n * Creates a new Popper.js instance.\n * @class Popper\n * @param {Element|referenceObject} reference - The reference element used to position the popper\n * @param {Element} popper - The HTML / XML element used as the popper\n * @param {Object} options - Your custom options to override the ones defined in [Defaults](#defaults)\n * @return {Object} instance - The generated Popper.js instance\n */\n constructor(reference, popper, options = {}) {\n // make update() debounced, so that it only runs at most once-per-tick\n this.update = debounce(this.update.bind(this));\n\n // with {} we create a new object with the options inside it\n this.options = { ...Popper.Defaults, ...options };\n\n // init state\n this.state = {\n isDestroyed: false,\n isCreated: false,\n scrollParents: [],\n };\n\n // get reference and popper elements (allow jQuery wrappers)\n this.reference = reference && reference.jquery ? reference[0] : reference;\n this.popper = popper && popper.jquery ? popper[0] : popper;\n\n // Deep merge modifiers options\n this.options.modifiers = {};\n Object.keys({\n ...Popper.Defaults.modifiers,\n ...options.modifiers,\n }).forEach(name => {\n this.options.modifiers[name] = {\n // If it's a built-in modifier, use it as base\n ...(Popper.Defaults.modifiers[name] || {}),\n // If there are custom options, override and merge with default ones\n ...(options.modifiers ? options.modifiers[name] : {}),\n };\n });\n\n // Refactoring modifiers' list (Object => Array)\n this.modifiers = Object.keys(this.options.modifiers)\n .map(name => ({\n name,\n ...this.options.modifiers[name],\n }))\n // sort the modifiers by order\n .sort((a, b) => a.order - b.order);\n\n // modifiers have the ability to execute arbitrary code when Popper.js get inited\n // such code is executed in the same order of its modifier\n // they could add new properties to their options configuration\n // BE AWARE: don't add options to `options.modifiers.name` but to `modifierOptions`!\n this.modifiers.forEach(modifierOptions => {\n if (modifierOptions.enabled && isFunction(modifierOptions.onLoad)) {\n modifierOptions.onLoad(\n this.reference,\n this.popper,\n this.options,\n modifierOptions,\n this.state\n );\n }\n });\n\n // fire the first update to position the popper in the right place\n this.update();\n\n const eventsEnabled = this.options.eventsEnabled;\n if (eventsEnabled) {\n // setup event listeners, they will take care of update the position in specific situations\n this.enableEventListeners();\n }\n\n this.state.eventsEnabled = eventsEnabled;\n }\n\n // We can't use class properties because they don't get listed in the\n // class prototype and break stuff like Sinon stubs\n update() {\n return update.call(this);\n }\n destroy() {\n return destroy.call(this);\n }\n enableEventListeners() {\n return enableEventListeners.call(this);\n }\n disableEventListeners() {\n return disableEventListeners.call(this);\n }\n\n /**\n * Schedules an update. It will run on the next UI update available.\n * @method scheduleUpdate\n * @memberof Popper\n */\n scheduleUpdate = () => requestAnimationFrame(this.update);\n\n /**\n * Collection of utilities useful when writing custom modifiers.\n * Starting from version 1.7, this method is available only if you\n * include `popper-utils.js` before `popper.js`.\n *\n * **DEPRECATION**: This way to access PopperUtils is deprecated\n * and will be removed in v2! Use the PopperUtils module directly instead.\n * Due to the high instability of the methods contained in Utils, we can't\n * guarantee them to follow semver. Use them at your own risk!\n * @static\n * @private\n * @type {Object}\n * @deprecated since version 1.8\n * @member Utils\n * @memberof Popper\n */\n static Utils = (typeof window !== 'undefined' ? window : global).PopperUtils;\n\n static placements = placements;\n\n static Defaults = Defaults;\n}\n\n/**\n * The `referenceObject` is an object that provides an interface compatible with Popper.js\n * and lets you use it as replacement of a real DOM node.
\n * You can use this method to position a popper relatively to a set of coordinates\n * in case you don't have a DOM node to use as reference.\n *\n * ```\n * new Popper(referenceObject, popperNode);\n * ```\n *\n * NB: This feature isn't supported in Internet Explorer 10.\n * @name referenceObject\n * @property {Function} data.getBoundingClientRect\n * A function that returns a set of coordinates compatible with the native `getBoundingClientRect` method.\n * @property {number} data.clientWidth\n * An ES6 getter that will return the width of the virtual reference element.\n * @property {number} data.clientHeight\n * An ES6 getter that will return the height of the virtual reference element.\n */\n","import _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/objectWithoutPropertiesLoose\";\nimport _extends from \"@babel/runtime/helpers/extends\";\nimport _inheritsLoose from \"@babel/runtime/helpers/inheritsLoose\";\nimport _assertThisInitialized from \"@babel/runtime/helpers/assertThisInitialized\";\nimport _defineProperty from \"@babel/runtime/helpers/defineProperty\";\nimport deepEqual from \"deep-equal\";\nimport * as React from 'react';\nimport PopperJS from 'popper.js';\nimport { ManagerReferenceNodeContext } from './Manager';\nimport { unwrapArray, setRef, shallowEqual } from './utils';\nvar initialStyle = {\n position: 'absolute',\n top: 0,\n left: 0,\n opacity: 0,\n pointerEvents: 'none'\n};\nvar initialArrowStyle = {};\nexport var InnerPopper =\n/*#__PURE__*/\nfunction (_React$Component) {\n _inheritsLoose(InnerPopper, _React$Component);\n\n function InnerPopper() {\n var _this;\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"state\", {\n data: undefined,\n placement: undefined\n });\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"popperInstance\", void 0);\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"popperNode\", null);\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"arrowNode\", null);\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"setPopperNode\", function (popperNode) {\n if (!popperNode || _this.popperNode === popperNode) return;\n setRef(_this.props.innerRef, popperNode);\n _this.popperNode = popperNode;\n\n _this.updatePopperInstance();\n });\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"setArrowNode\", function (arrowNode) {\n _this.arrowNode = arrowNode;\n });\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"updateStateModifier\", {\n enabled: true,\n order: 900,\n fn: function fn(data) {\n var placement = data.placement;\n\n _this.setState({\n data: data,\n placement: placement\n });\n\n return data;\n }\n });\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"getOptions\", function () {\n return {\n placement: _this.props.placement,\n eventsEnabled: _this.props.eventsEnabled,\n positionFixed: _this.props.positionFixed,\n modifiers: _extends({}, _this.props.modifiers, {\n arrow: _extends({}, _this.props.modifiers && _this.props.modifiers.arrow, {\n enabled: !!_this.arrowNode,\n element: _this.arrowNode\n }),\n applyStyle: {\n enabled: false\n },\n updateStateModifier: _this.updateStateModifier\n })\n };\n });\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"getPopperStyle\", function () {\n return !_this.popperNode || !_this.state.data ? initialStyle : _extends({\n position: _this.state.data.offsets.popper.position\n }, _this.state.data.styles);\n });\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"getPopperPlacement\", function () {\n return !_this.state.data ? undefined : _this.state.placement;\n });\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"getArrowStyle\", function () {\n return !_this.arrowNode || !_this.state.data ? initialArrowStyle : _this.state.data.arrowStyles;\n });\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"getOutOfBoundariesState\", function () {\n return _this.state.data ? _this.state.data.hide : undefined;\n });\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"destroyPopperInstance\", function () {\n if (!_this.popperInstance) return;\n\n _this.popperInstance.destroy();\n\n _this.popperInstance = null;\n });\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"updatePopperInstance\", function () {\n _this.destroyPopperInstance();\n\n var _assertThisInitialize = _assertThisInitialized(_assertThisInitialized(_this)),\n popperNode = _assertThisInitialize.popperNode;\n\n var referenceElement = _this.props.referenceElement;\n if (!referenceElement || !popperNode) return;\n _this.popperInstance = new PopperJS(referenceElement, popperNode, _this.getOptions());\n });\n\n _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), \"scheduleUpdate\", function () {\n if (_this.popperInstance) {\n _this.popperInstance.scheduleUpdate();\n }\n });\n\n return _this;\n }\n\n var _proto = InnerPopper.prototype;\n\n _proto.componentDidUpdate = function componentDidUpdate(prevProps, prevState) {\n // If the Popper.js options have changed, update the instance (destroy + create)\n if (this.props.placement !== prevProps.placement || this.props.referenceElement !== prevProps.referenceElement || this.props.positionFixed !== prevProps.positionFixed || !deepEqual(this.props.modifiers, prevProps.modifiers, {\n strict: true\n })) {\n // develop only check that modifiers isn't being updated needlessly\n if (process.env.NODE_ENV === \"development\") {\n if (this.props.modifiers !== prevProps.modifiers && this.props.modifiers != null && prevProps.modifiers != null && shallowEqual(this.props.modifiers, prevProps.modifiers)) {\n console.warn(\"'modifiers' prop reference updated even though all values appear the same.\\nConsider memoizing the 'modifiers' object to avoid needless rendering.\");\n }\n }\n\n this.updatePopperInstance();\n } else if (this.props.eventsEnabled !== prevProps.eventsEnabled && this.popperInstance) {\n this.props.eventsEnabled ? this.popperInstance.enableEventListeners() : this.popperInstance.disableEventListeners();\n } // A placement difference in state means popper determined a new placement\n // apart from the props value. By the time the popper element is rendered with\n // the new position Popper has already measured it, if the place change triggers\n // a size change it will result in a misaligned popper. So we schedule an update to be sure.\n\n\n if (prevState.placement !== this.state.placement) {\n this.scheduleUpdate();\n }\n };\n\n _proto.componentWillUnmount = function componentWillUnmount() {\n setRef(this.props.innerRef, null);\n this.destroyPopperInstance();\n };\n\n _proto.render = function render() {\n return unwrapArray(this.props.children)({\n ref: this.setPopperNode,\n style: this.getPopperStyle(),\n placement: this.getPopperPlacement(),\n outOfBoundaries: this.getOutOfBoundariesState(),\n scheduleUpdate: this.scheduleUpdate,\n arrowProps: {\n ref: this.setArrowNode,\n style: this.getArrowStyle()\n }\n });\n };\n\n return InnerPopper;\n}(React.Component);\n\n_defineProperty(InnerPopper, \"defaultProps\", {\n placement: 'bottom',\n eventsEnabled: true,\n referenceElement: undefined,\n positionFixed: false\n});\n\nvar placements = PopperJS.placements;\nexport { placements };\nexport default function Popper(_ref) {\n var referenceElement = _ref.referenceElement,\n props = _objectWithoutPropertiesLoose(_ref, [\"referenceElement\"]);\n\n return React.createElement(ManagerReferenceNodeContext.Consumer, null, function (referenceNode) {\n return React.createElement(InnerPopper, _extends({\n referenceElement: referenceElement !== undefined ? referenceElement : referenceNode\n }, props));\n });\n}","/*\n * Copyright 2020 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { isFunction } from \"./functionUtils\";\n\nexport function elementIsOrContains(element: HTMLElement, testElement: HTMLElement) {\n return element === testElement || element.contains(testElement);\n}\n\n/**\n * Throttle an event on an EventTarget by wrapping it in a\n * `requestAnimationFrame` call. Returns the event handler that was bound to\n * given eventName so you can clean up after yourself.\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/Events/scroll\n */\nexport function throttleEvent(target: EventTarget, eventName: string, newEventName: string) {\n const throttledFunc = throttleImpl((event: Event) => {\n target.dispatchEvent(new CustomEvent(newEventName, event));\n });\n target.addEventListener(eventName, throttledFunc);\n return throttledFunc;\n}\n\nexport interface IThrottledReactEventOptions {\n preventDefault?: boolean;\n}\n\n/**\n * Throttle a callback by wrapping it in a `requestAnimationFrame` call. Returns\n * the throttled function.\n *\n * @see https://www.html5rocks.com/en/tutorials/speed/animations/\n */\nexport function throttleReactEventCallback(\n callback: (event: E, ...otherArgs: any[]) => any,\n options: IThrottledReactEventOptions = {},\n) {\n const throttledFunc = throttleImpl(\n callback,\n (event2: E) => {\n if (options.preventDefault) {\n event2.preventDefault();\n }\n },\n // prevent React from reclaiming the event object before we reference it\n (event2: E) => event2.persist(),\n );\n return throttledFunc;\n}\n\n/**\n * Throttle a method by wrapping it in a `requestAnimationFrame` call. Returns\n * the throttled function.\n */\n// eslint-disable-next-line @typescript-eslint/ban-types\nexport function throttle(method: T): T {\n return throttleImpl(method);\n}\n\n// eslint-disable-next-line @typescript-eslint/ban-types\nfunction throttleImpl(\n onAnimationFrameRequested: T,\n onBeforeIsRunningCheck?: T,\n onAfterIsRunningCheck?: T,\n) {\n let isRunning = false;\n const func = (...args: any[]) => {\n // don't use safeInvoke, because we might have more than its max number\n // of typed params\n if (isFunction(onBeforeIsRunningCheck)) {\n onBeforeIsRunningCheck(...args);\n }\n\n if (isRunning) {\n return;\n }\n isRunning = true;\n\n if (isFunction(onAfterIsRunningCheck)) {\n onAfterIsRunningCheck(...args);\n }\n\n requestAnimationFrame(() => {\n onAnimationFrameRequested(...args);\n isRunning = false;\n });\n };\n return (func as any) as T;\n}\n","/**\r\n * A collection of shims that provide minimal functionality of the ES6 collections.\r\n *\r\n * These implementations are not meant to be used outside of the ResizeObserver\r\n * modules as they cover only a limited range of use cases.\r\n */\r\n/* eslint-disable require-jsdoc, valid-jsdoc */\r\nvar MapShim = (function () {\r\n if (typeof Map !== 'undefined') {\r\n return Map;\r\n }\r\n /**\r\n * Returns index in provided array that matches the specified key.\r\n *\r\n * @param {Array} arr\r\n * @param {*} key\r\n * @returns {number}\r\n */\r\n function getIndex(arr, key) {\r\n var result = -1;\r\n arr.some(function (entry, index) {\r\n if (entry[0] === key) {\r\n result = index;\r\n return true;\r\n }\r\n return false;\r\n });\r\n return result;\r\n }\r\n return /** @class */ (function () {\r\n function class_1() {\r\n this.__entries__ = [];\r\n }\r\n Object.defineProperty(class_1.prototype, \"size\", {\r\n /**\r\n * @returns {boolean}\r\n */\r\n get: function () {\r\n return this.__entries__.length;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n /**\r\n * @param {*} key\r\n * @returns {*}\r\n */\r\n class_1.prototype.get = function (key) {\r\n var index = getIndex(this.__entries__, key);\r\n var entry = this.__entries__[index];\r\n return entry && entry[1];\r\n };\r\n /**\r\n * @param {*} key\r\n * @param {*} value\r\n * @returns {void}\r\n */\r\n class_1.prototype.set = function (key, value) {\r\n var index = getIndex(this.__entries__, key);\r\n if (~index) {\r\n this.__entries__[index][1] = value;\r\n }\r\n else {\r\n this.__entries__.push([key, value]);\r\n }\r\n };\r\n /**\r\n * @param {*} key\r\n * @returns {void}\r\n */\r\n class_1.prototype.delete = function (key) {\r\n var entries = this.__entries__;\r\n var index = getIndex(entries, key);\r\n if (~index) {\r\n entries.splice(index, 1);\r\n }\r\n };\r\n /**\r\n * @param {*} key\r\n * @returns {void}\r\n */\r\n class_1.prototype.has = function (key) {\r\n return !!~getIndex(this.__entries__, key);\r\n };\r\n /**\r\n * @returns {void}\r\n */\r\n class_1.prototype.clear = function () {\r\n this.__entries__.splice(0);\r\n };\r\n /**\r\n * @param {Function} callback\r\n * @param {*} [ctx=null]\r\n * @returns {void}\r\n */\r\n class_1.prototype.forEach = function (callback, ctx) {\r\n if (ctx === void 0) { ctx = null; }\r\n for (var _i = 0, _a = this.__entries__; _i < _a.length; _i++) {\r\n var entry = _a[_i];\r\n callback.call(ctx, entry[1], entry[0]);\r\n }\r\n };\r\n return class_1;\r\n }());\r\n})();\n\n/**\r\n * Detects whether window and document objects are available in current environment.\r\n */\r\nvar isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined' && window.document === document;\n\n// Returns global object of a current environment.\r\nvar global$1 = (function () {\r\n if (typeof global !== 'undefined' && global.Math === Math) {\r\n return global;\r\n }\r\n if (typeof self !== 'undefined' && self.Math === Math) {\r\n return self;\r\n }\r\n if (typeof window !== 'undefined' && window.Math === Math) {\r\n return window;\r\n }\r\n // eslint-disable-next-line no-new-func\r\n return Function('return this')();\r\n})();\n\n/**\r\n * A shim for the requestAnimationFrame which falls back to the setTimeout if\r\n * first one is not supported.\r\n *\r\n * @returns {number} Requests' identifier.\r\n */\r\nvar requestAnimationFrame$1 = (function () {\r\n if (typeof requestAnimationFrame === 'function') {\r\n // It's required to use a bounded function because IE sometimes throws\r\n // an \"Invalid calling object\" error if rAF is invoked without the global\r\n // object on the left hand side.\r\n return requestAnimationFrame.bind(global$1);\r\n }\r\n return function (callback) { return setTimeout(function () { return callback(Date.now()); }, 1000 / 60); };\r\n})();\n\n// Defines minimum timeout before adding a trailing call.\r\nvar trailingTimeout = 2;\r\n/**\r\n * Creates a wrapper function which ensures that provided callback will be\r\n * invoked only once during the specified delay period.\r\n *\r\n * @param {Function} callback - Function to be invoked after the delay period.\r\n * @param {number} delay - Delay after which to invoke callback.\r\n * @returns {Function}\r\n */\r\nfunction throttle (callback, delay) {\r\n var leadingCall = false, trailingCall = false, lastCallTime = 0;\r\n /**\r\n * Invokes the original callback function and schedules new invocation if\r\n * the \"proxy\" was called during current request.\r\n *\r\n * @returns {void}\r\n */\r\n function resolvePending() {\r\n if (leadingCall) {\r\n leadingCall = false;\r\n callback();\r\n }\r\n if (trailingCall) {\r\n proxy();\r\n }\r\n }\r\n /**\r\n * Callback invoked after the specified delay. It will further postpone\r\n * invocation of the original function delegating it to the\r\n * requestAnimationFrame.\r\n *\r\n * @returns {void}\r\n */\r\n function timeoutCallback() {\r\n requestAnimationFrame$1(resolvePending);\r\n }\r\n /**\r\n * Schedules invocation of the original function.\r\n *\r\n * @returns {void}\r\n */\r\n function proxy() {\r\n var timeStamp = Date.now();\r\n if (leadingCall) {\r\n // Reject immediately following calls.\r\n if (timeStamp - lastCallTime < trailingTimeout) {\r\n return;\r\n }\r\n // Schedule new call to be in invoked when the pending one is resolved.\r\n // This is important for \"transitions\" which never actually start\r\n // immediately so there is a chance that we might miss one if change\r\n // happens amids the pending invocation.\r\n trailingCall = true;\r\n }\r\n else {\r\n leadingCall = true;\r\n trailingCall = false;\r\n setTimeout(timeoutCallback, delay);\r\n }\r\n lastCallTime = timeStamp;\r\n }\r\n return proxy;\r\n}\n\n// Minimum delay before invoking the update of observers.\r\nvar REFRESH_DELAY = 20;\r\n// A list of substrings of CSS properties used to find transition events that\r\n// might affect dimensions of observed elements.\r\nvar transitionKeys = ['top', 'right', 'bottom', 'left', 'width', 'height', 'size', 'weight'];\r\n// Check if MutationObserver is available.\r\nvar mutationObserverSupported = typeof MutationObserver !== 'undefined';\r\n/**\r\n * Singleton controller class which handles updates of ResizeObserver instances.\r\n */\r\nvar ResizeObserverController = /** @class */ (function () {\r\n /**\r\n * Creates a new instance of ResizeObserverController.\r\n *\r\n * @private\r\n */\r\n function ResizeObserverController() {\r\n /**\r\n * Indicates whether DOM listeners have been added.\r\n *\r\n * @private {boolean}\r\n */\r\n this.connected_ = false;\r\n /**\r\n * Tells that controller has subscribed for Mutation Events.\r\n *\r\n * @private {boolean}\r\n */\r\n this.mutationEventsAdded_ = false;\r\n /**\r\n * Keeps reference to the instance of MutationObserver.\r\n *\r\n * @private {MutationObserver}\r\n */\r\n this.mutationsObserver_ = null;\r\n /**\r\n * A list of connected observers.\r\n *\r\n * @private {Array}\r\n */\r\n this.observers_ = [];\r\n this.onTransitionEnd_ = this.onTransitionEnd_.bind(this);\r\n this.refresh = throttle(this.refresh.bind(this), REFRESH_DELAY);\r\n }\r\n /**\r\n * Adds observer to observers list.\r\n *\r\n * @param {ResizeObserverSPI} observer - Observer to be added.\r\n * @returns {void}\r\n */\r\n ResizeObserverController.prototype.addObserver = function (observer) {\r\n if (!~this.observers_.indexOf(observer)) {\r\n this.observers_.push(observer);\r\n }\r\n // Add listeners if they haven't been added yet.\r\n if (!this.connected_) {\r\n this.connect_();\r\n }\r\n };\r\n /**\r\n * Removes observer from observers list.\r\n *\r\n * @param {ResizeObserverSPI} observer - Observer to be removed.\r\n * @returns {void}\r\n */\r\n ResizeObserverController.prototype.removeObserver = function (observer) {\r\n var observers = this.observers_;\r\n var index = observers.indexOf(observer);\r\n // Remove observer if it's present in registry.\r\n if (~index) {\r\n observers.splice(index, 1);\r\n }\r\n // Remove listeners if controller has no connected observers.\r\n if (!observers.length && this.connected_) {\r\n this.disconnect_();\r\n }\r\n };\r\n /**\r\n * Invokes the update of observers. It will continue running updates insofar\r\n * it detects changes.\r\n *\r\n * @returns {void}\r\n */\r\n ResizeObserverController.prototype.refresh = function () {\r\n var changesDetected = this.updateObservers_();\r\n // Continue running updates if changes have been detected as there might\r\n // be future ones caused by CSS transitions.\r\n if (changesDetected) {\r\n this.refresh();\r\n }\r\n };\r\n /**\r\n * Updates every observer from observers list and notifies them of queued\r\n * entries.\r\n *\r\n * @private\r\n * @returns {boolean} Returns \"true\" if any observer has detected changes in\r\n * dimensions of it's elements.\r\n */\r\n ResizeObserverController.prototype.updateObservers_ = function () {\r\n // Collect observers that have active observations.\r\n var activeObservers = this.observers_.filter(function (observer) {\r\n return observer.gatherActive(), observer.hasActive();\r\n });\r\n // Deliver notifications in a separate cycle in order to avoid any\r\n // collisions between observers, e.g. when multiple instances of\r\n // ResizeObserver are tracking the same element and the callback of one\r\n // of them changes content dimensions of the observed target. Sometimes\r\n // this may result in notifications being blocked for the rest of observers.\r\n activeObservers.forEach(function (observer) { return observer.broadcastActive(); });\r\n return activeObservers.length > 0;\r\n };\r\n /**\r\n * Initializes DOM listeners.\r\n *\r\n * @private\r\n * @returns {void}\r\n */\r\n ResizeObserverController.prototype.connect_ = function () {\r\n // Do nothing if running in a non-browser environment or if listeners\r\n // have been already added.\r\n if (!isBrowser || this.connected_) {\r\n return;\r\n }\r\n // Subscription to the \"Transitionend\" event is used as a workaround for\r\n // delayed transitions. This way it's possible to capture at least the\r\n // final state of an element.\r\n document.addEventListener('transitionend', this.onTransitionEnd_);\r\n window.addEventListener('resize', this.refresh);\r\n if (mutationObserverSupported) {\r\n this.mutationsObserver_ = new MutationObserver(this.refresh);\r\n this.mutationsObserver_.observe(document, {\r\n attributes: true,\r\n childList: true,\r\n characterData: true,\r\n subtree: true\r\n });\r\n }\r\n else {\r\n document.addEventListener('DOMSubtreeModified', this.refresh);\r\n this.mutationEventsAdded_ = true;\r\n }\r\n this.connected_ = true;\r\n };\r\n /**\r\n * Removes DOM listeners.\r\n *\r\n * @private\r\n * @returns {void}\r\n */\r\n ResizeObserverController.prototype.disconnect_ = function () {\r\n // Do nothing if running in a non-browser environment or if listeners\r\n // have been already removed.\r\n if (!isBrowser || !this.connected_) {\r\n return;\r\n }\r\n document.removeEventListener('transitionend', this.onTransitionEnd_);\r\n window.removeEventListener('resize', this.refresh);\r\n if (this.mutationsObserver_) {\r\n this.mutationsObserver_.disconnect();\r\n }\r\n if (this.mutationEventsAdded_) {\r\n document.removeEventListener('DOMSubtreeModified', this.refresh);\r\n }\r\n this.mutationsObserver_ = null;\r\n this.mutationEventsAdded_ = false;\r\n this.connected_ = false;\r\n };\r\n /**\r\n * \"Transitionend\" event handler.\r\n *\r\n * @private\r\n * @param {TransitionEvent} event\r\n * @returns {void}\r\n */\r\n ResizeObserverController.prototype.onTransitionEnd_ = function (_a) {\r\n var _b = _a.propertyName, propertyName = _b === void 0 ? '' : _b;\r\n // Detect whether transition may affect dimensions of an element.\r\n var isReflowProperty = transitionKeys.some(function (key) {\r\n return !!~propertyName.indexOf(key);\r\n });\r\n if (isReflowProperty) {\r\n this.refresh();\r\n }\r\n };\r\n /**\r\n * Returns instance of the ResizeObserverController.\r\n *\r\n * @returns {ResizeObserverController}\r\n */\r\n ResizeObserverController.getInstance = function () {\r\n if (!this.instance_) {\r\n this.instance_ = new ResizeObserverController();\r\n }\r\n return this.instance_;\r\n };\r\n /**\r\n * Holds reference to the controller's instance.\r\n *\r\n * @private {ResizeObserverController}\r\n */\r\n ResizeObserverController.instance_ = null;\r\n return ResizeObserverController;\r\n}());\n\n/**\r\n * Defines non-writable/enumerable properties of the provided target object.\r\n *\r\n * @param {Object} target - Object for which to define properties.\r\n * @param {Object} props - Properties to be defined.\r\n * @returns {Object} Target object.\r\n */\r\nvar defineConfigurable = (function (target, props) {\r\n for (var _i = 0, _a = Object.keys(props); _i < _a.length; _i++) {\r\n var key = _a[_i];\r\n Object.defineProperty(target, key, {\r\n value: props[key],\r\n enumerable: false,\r\n writable: false,\r\n configurable: true\r\n });\r\n }\r\n return target;\r\n});\n\n/**\r\n * Returns the global object associated with provided element.\r\n *\r\n * @param {Object} target\r\n * @returns {Object}\r\n */\r\nvar getWindowOf = (function (target) {\r\n // Assume that the element is an instance of Node, which means that it\r\n // has the \"ownerDocument\" property from which we can retrieve a\r\n // corresponding global object.\r\n var ownerGlobal = target && target.ownerDocument && target.ownerDocument.defaultView;\r\n // Return the local global object if it's not possible extract one from\r\n // provided element.\r\n return ownerGlobal || global$1;\r\n});\n\n// Placeholder of an empty content rectangle.\r\nvar emptyRect = createRectInit(0, 0, 0, 0);\r\n/**\r\n * Converts provided string to a number.\r\n *\r\n * @param {number|string} value\r\n * @returns {number}\r\n */\r\nfunction toFloat(value) {\r\n return parseFloat(value) || 0;\r\n}\r\n/**\r\n * Extracts borders size from provided styles.\r\n *\r\n * @param {CSSStyleDeclaration} styles\r\n * @param {...string} positions - Borders positions (top, right, ...)\r\n * @returns {number}\r\n */\r\nfunction getBordersSize(styles) {\r\n var positions = [];\r\n for (var _i = 1; _i < arguments.length; _i++) {\r\n positions[_i - 1] = arguments[_i];\r\n }\r\n return positions.reduce(function (size, position) {\r\n var value = styles['border-' + position + '-width'];\r\n return size + toFloat(value);\r\n }, 0);\r\n}\r\n/**\r\n * Extracts paddings sizes from provided styles.\r\n *\r\n * @param {CSSStyleDeclaration} styles\r\n * @returns {Object} Paddings box.\r\n */\r\nfunction getPaddings(styles) {\r\n var positions = ['top', 'right', 'bottom', 'left'];\r\n var paddings = {};\r\n for (var _i = 0, positions_1 = positions; _i < positions_1.length; _i++) {\r\n var position = positions_1[_i];\r\n var value = styles['padding-' + position];\r\n paddings[position] = toFloat(value);\r\n }\r\n return paddings;\r\n}\r\n/**\r\n * Calculates content rectangle of provided SVG element.\r\n *\r\n * @param {SVGGraphicsElement} target - Element content rectangle of which needs\r\n * to be calculated.\r\n * @returns {DOMRectInit}\r\n */\r\nfunction getSVGContentRect(target) {\r\n var bbox = target.getBBox();\r\n return createRectInit(0, 0, bbox.width, bbox.height);\r\n}\r\n/**\r\n * Calculates content rectangle of provided HTMLElement.\r\n *\r\n * @param {HTMLElement} target - Element for which to calculate the content rectangle.\r\n * @returns {DOMRectInit}\r\n */\r\nfunction getHTMLElementContentRect(target) {\r\n // Client width & height properties can't be\r\n // used exclusively as they provide rounded values.\r\n var clientWidth = target.clientWidth, clientHeight = target.clientHeight;\r\n // By this condition we can catch all non-replaced inline, hidden and\r\n // detached elements. Though elements with width & height properties less\r\n // than 0.5 will be discarded as well.\r\n //\r\n // Without it we would need to implement separate methods for each of\r\n // those cases and it's not possible to perform a precise and performance\r\n // effective test for hidden elements. E.g. even jQuery's ':visible' filter\r\n // gives wrong results for elements with width & height less than 0.5.\r\n if (!clientWidth && !clientHeight) {\r\n return emptyRect;\r\n }\r\n var styles = getWindowOf(target).getComputedStyle(target);\r\n var paddings = getPaddings(styles);\r\n var horizPad = paddings.left + paddings.right;\r\n var vertPad = paddings.top + paddings.bottom;\r\n // Computed styles of width & height are being used because they are the\r\n // only dimensions available to JS that contain non-rounded values. It could\r\n // be possible to utilize the getBoundingClientRect if only it's data wasn't\r\n // affected by CSS transformations let alone paddings, borders and scroll bars.\r\n var width = toFloat(styles.width), height = toFloat(styles.height);\r\n // Width & height include paddings and borders when the 'border-box' box\r\n // model is applied (except for IE).\r\n if (styles.boxSizing === 'border-box') {\r\n // Following conditions are required to handle Internet Explorer which\r\n // doesn't include paddings and borders to computed CSS dimensions.\r\n //\r\n // We can say that if CSS dimensions + paddings are equal to the \"client\"\r\n // properties then it's either IE, and thus we don't need to subtract\r\n // anything, or an element merely doesn't have paddings/borders styles.\r\n if (Math.round(width + horizPad) !== clientWidth) {\r\n width -= getBordersSize(styles, 'left', 'right') + horizPad;\r\n }\r\n if (Math.round(height + vertPad) !== clientHeight) {\r\n height -= getBordersSize(styles, 'top', 'bottom') + vertPad;\r\n }\r\n }\r\n // Following steps can't be applied to the document's root element as its\r\n // client[Width/Height] properties represent viewport area of the window.\r\n // Besides, it's as well not necessary as the itself neither has\r\n // rendered scroll bars nor it can be clipped.\r\n if (!isDocumentElement(target)) {\r\n // In some browsers (only in Firefox, actually) CSS width & height\r\n // include scroll bars size which can be removed at this step as scroll\r\n // bars are the only difference between rounded dimensions + paddings\r\n // and \"client\" properties, though that is not always true in Chrome.\r\n var vertScrollbar = Math.round(width + horizPad) - clientWidth;\r\n var horizScrollbar = Math.round(height + vertPad) - clientHeight;\r\n // Chrome has a rather weird rounding of \"client\" properties.\r\n // E.g. for an element with content width of 314.2px it sometimes gives\r\n // the client width of 315px and for the width of 314.7px it may give\r\n // 314px. And it doesn't happen all the time. So just ignore this delta\r\n // as a non-relevant.\r\n if (Math.abs(vertScrollbar) !== 1) {\r\n width -= vertScrollbar;\r\n }\r\n if (Math.abs(horizScrollbar) !== 1) {\r\n height -= horizScrollbar;\r\n }\r\n }\r\n return createRectInit(paddings.left, paddings.top, width, height);\r\n}\r\n/**\r\n * Checks whether provided element is an instance of the SVGGraphicsElement.\r\n *\r\n * @param {Element} target - Element to be checked.\r\n * @returns {boolean}\r\n */\r\nvar isSVGGraphicsElement = (function () {\r\n // Some browsers, namely IE and Edge, don't have the SVGGraphicsElement\r\n // interface.\r\n if (typeof SVGGraphicsElement !== 'undefined') {\r\n return function (target) { return target instanceof getWindowOf(target).SVGGraphicsElement; };\r\n }\r\n // If it's so, then check that element is at least an instance of the\r\n // SVGElement and that it has the \"getBBox\" method.\r\n // eslint-disable-next-line no-extra-parens\r\n return function (target) { return (target instanceof getWindowOf(target).SVGElement &&\r\n typeof target.getBBox === 'function'); };\r\n})();\r\n/**\r\n * Checks whether provided element is a document element ().\r\n *\r\n * @param {Element} target - Element to be checked.\r\n * @returns {boolean}\r\n */\r\nfunction isDocumentElement(target) {\r\n return target === getWindowOf(target).document.documentElement;\r\n}\r\n/**\r\n * Calculates an appropriate content rectangle for provided html or svg element.\r\n *\r\n * @param {Element} target - Element content rectangle of which needs to be calculated.\r\n * @returns {DOMRectInit}\r\n */\r\nfunction getContentRect(target) {\r\n if (!isBrowser) {\r\n return emptyRect;\r\n }\r\n if (isSVGGraphicsElement(target)) {\r\n return getSVGContentRect(target);\r\n }\r\n return getHTMLElementContentRect(target);\r\n}\r\n/**\r\n * Creates rectangle with an interface of the DOMRectReadOnly.\r\n * Spec: https://drafts.fxtf.org/geometry/#domrectreadonly\r\n *\r\n * @param {DOMRectInit} rectInit - Object with rectangle's x/y coordinates and dimensions.\r\n * @returns {DOMRectReadOnly}\r\n */\r\nfunction createReadOnlyRect(_a) {\r\n var x = _a.x, y = _a.y, width = _a.width, height = _a.height;\r\n // If DOMRectReadOnly is available use it as a prototype for the rectangle.\r\n var Constr = typeof DOMRectReadOnly !== 'undefined' ? DOMRectReadOnly : Object;\r\n var rect = Object.create(Constr.prototype);\r\n // Rectangle's properties are not writable and non-enumerable.\r\n defineConfigurable(rect, {\r\n x: x, y: y, width: width, height: height,\r\n top: y,\r\n right: x + width,\r\n bottom: height + y,\r\n left: x\r\n });\r\n return rect;\r\n}\r\n/**\r\n * Creates DOMRectInit object based on the provided dimensions and the x/y coordinates.\r\n * Spec: https://drafts.fxtf.org/geometry/#dictdef-domrectinit\r\n *\r\n * @param {number} x - X coordinate.\r\n * @param {number} y - Y coordinate.\r\n * @param {number} width - Rectangle's width.\r\n * @param {number} height - Rectangle's height.\r\n * @returns {DOMRectInit}\r\n */\r\nfunction createRectInit(x, y, width, height) {\r\n return { x: x, y: y, width: width, height: height };\r\n}\n\n/**\r\n * Class that is responsible for computations of the content rectangle of\r\n * provided DOM element and for keeping track of it's changes.\r\n */\r\nvar ResizeObservation = /** @class */ (function () {\r\n /**\r\n * Creates an instance of ResizeObservation.\r\n *\r\n * @param {Element} target - Element to be observed.\r\n */\r\n function ResizeObservation(target) {\r\n /**\r\n * Broadcasted width of content rectangle.\r\n *\r\n * @type {number}\r\n */\r\n this.broadcastWidth = 0;\r\n /**\r\n * Broadcasted height of content rectangle.\r\n *\r\n * @type {number}\r\n */\r\n this.broadcastHeight = 0;\r\n /**\r\n * Reference to the last observed content rectangle.\r\n *\r\n * @private {DOMRectInit}\r\n */\r\n this.contentRect_ = createRectInit(0, 0, 0, 0);\r\n this.target = target;\r\n }\r\n /**\r\n * Updates content rectangle and tells whether it's width or height properties\r\n * have changed since the last broadcast.\r\n *\r\n * @returns {boolean}\r\n */\r\n ResizeObservation.prototype.isActive = function () {\r\n var rect = getContentRect(this.target);\r\n this.contentRect_ = rect;\r\n return (rect.width !== this.broadcastWidth ||\r\n rect.height !== this.broadcastHeight);\r\n };\r\n /**\r\n * Updates 'broadcastWidth' and 'broadcastHeight' properties with a data\r\n * from the corresponding properties of the last observed content rectangle.\r\n *\r\n * @returns {DOMRectInit} Last observed content rectangle.\r\n */\r\n ResizeObservation.prototype.broadcastRect = function () {\r\n var rect = this.contentRect_;\r\n this.broadcastWidth = rect.width;\r\n this.broadcastHeight = rect.height;\r\n return rect;\r\n };\r\n return ResizeObservation;\r\n}());\n\nvar ResizeObserverEntry = /** @class */ (function () {\r\n /**\r\n * Creates an instance of ResizeObserverEntry.\r\n *\r\n * @param {Element} target - Element that is being observed.\r\n * @param {DOMRectInit} rectInit - Data of the element's content rectangle.\r\n */\r\n function ResizeObserverEntry(target, rectInit) {\r\n var contentRect = createReadOnlyRect(rectInit);\r\n // According to the specification following properties are not writable\r\n // and are also not enumerable in the native implementation.\r\n //\r\n // Property accessors are not being used as they'd require to define a\r\n // private WeakMap storage which may cause memory leaks in browsers that\r\n // don't support this type of collections.\r\n defineConfigurable(this, { target: target, contentRect: contentRect });\r\n }\r\n return ResizeObserverEntry;\r\n}());\n\nvar ResizeObserverSPI = /** @class */ (function () {\r\n /**\r\n * Creates a new instance of ResizeObserver.\r\n *\r\n * @param {ResizeObserverCallback} callback - Callback function that is invoked\r\n * when one of the observed elements changes it's content dimensions.\r\n * @param {ResizeObserverController} controller - Controller instance which\r\n * is responsible for the updates of observer.\r\n * @param {ResizeObserver} callbackCtx - Reference to the public\r\n * ResizeObserver instance which will be passed to callback function.\r\n */\r\n function ResizeObserverSPI(callback, controller, callbackCtx) {\r\n /**\r\n * Collection of resize observations that have detected changes in dimensions\r\n * of elements.\r\n *\r\n * @private {Array}\r\n */\r\n this.activeObservations_ = [];\r\n /**\r\n * Registry of the ResizeObservation instances.\r\n *\r\n * @private {Map}\r\n */\r\n this.observations_ = new MapShim();\r\n if (typeof callback !== 'function') {\r\n throw new TypeError('The callback provided as parameter 1 is not a function.');\r\n }\r\n this.callback_ = callback;\r\n this.controller_ = controller;\r\n this.callbackCtx_ = callbackCtx;\r\n }\r\n /**\r\n * Starts observing provided element.\r\n *\r\n * @param {Element} target - Element to be observed.\r\n * @returns {void}\r\n */\r\n ResizeObserverSPI.prototype.observe = function (target) {\r\n if (!arguments.length) {\r\n throw new TypeError('1 argument required, but only 0 present.');\r\n }\r\n // Do nothing if current environment doesn't have the Element interface.\r\n if (typeof Element === 'undefined' || !(Element instanceof Object)) {\r\n return;\r\n }\r\n if (!(target instanceof getWindowOf(target).Element)) {\r\n throw new TypeError('parameter 1 is not of type \"Element\".');\r\n }\r\n var observations = this.observations_;\r\n // Do nothing if element is already being observed.\r\n if (observations.has(target)) {\r\n return;\r\n }\r\n observations.set(target, new ResizeObservation(target));\r\n this.controller_.addObserver(this);\r\n // Force the update of observations.\r\n this.controller_.refresh();\r\n };\r\n /**\r\n * Stops observing provided element.\r\n *\r\n * @param {Element} target - Element to stop observing.\r\n * @returns {void}\r\n */\r\n ResizeObserverSPI.prototype.unobserve = function (target) {\r\n if (!arguments.length) {\r\n throw new TypeError('1 argument required, but only 0 present.');\r\n }\r\n // Do nothing if current environment doesn't have the Element interface.\r\n if (typeof Element === 'undefined' || !(Element instanceof Object)) {\r\n return;\r\n }\r\n if (!(target instanceof getWindowOf(target).Element)) {\r\n throw new TypeError('parameter 1 is not of type \"Element\".');\r\n }\r\n var observations = this.observations_;\r\n // Do nothing if element is not being observed.\r\n if (!observations.has(target)) {\r\n return;\r\n }\r\n observations.delete(target);\r\n if (!observations.size) {\r\n this.controller_.removeObserver(this);\r\n }\r\n };\r\n /**\r\n * Stops observing all elements.\r\n *\r\n * @returns {void}\r\n */\r\n ResizeObserverSPI.prototype.disconnect = function () {\r\n this.clearActive();\r\n this.observations_.clear();\r\n this.controller_.removeObserver(this);\r\n };\r\n /**\r\n * Collects observation instances the associated element of which has changed\r\n * it's content rectangle.\r\n *\r\n * @returns {void}\r\n */\r\n ResizeObserverSPI.prototype.gatherActive = function () {\r\n var _this = this;\r\n this.clearActive();\r\n this.observations_.forEach(function (observation) {\r\n if (observation.isActive()) {\r\n _this.activeObservations_.push(observation);\r\n }\r\n });\r\n };\r\n /**\r\n * Invokes initial callback function with a list of ResizeObserverEntry\r\n * instances collected from active resize observations.\r\n *\r\n * @returns {void}\r\n */\r\n ResizeObserverSPI.prototype.broadcastActive = function () {\r\n // Do nothing if observer doesn't have active observations.\r\n if (!this.hasActive()) {\r\n return;\r\n }\r\n var ctx = this.callbackCtx_;\r\n // Create ResizeObserverEntry instance for every active observation.\r\n var entries = this.activeObservations_.map(function (observation) {\r\n return new ResizeObserverEntry(observation.target, observation.broadcastRect());\r\n });\r\n this.callback_.call(ctx, entries, ctx);\r\n this.clearActive();\r\n };\r\n /**\r\n * Clears the collection of active observations.\r\n *\r\n * @returns {void}\r\n */\r\n ResizeObserverSPI.prototype.clearActive = function () {\r\n this.activeObservations_.splice(0);\r\n };\r\n /**\r\n * Tells whether observer has active observations.\r\n *\r\n * @returns {boolean}\r\n */\r\n ResizeObserverSPI.prototype.hasActive = function () {\r\n return this.activeObservations_.length > 0;\r\n };\r\n return ResizeObserverSPI;\r\n}());\n\n// Registry of internal observers. If WeakMap is not available use current shim\r\n// for the Map collection as it has all required methods and because WeakMap\r\n// can't be fully polyfilled anyway.\r\nvar observers = typeof WeakMap !== 'undefined' ? new WeakMap() : new MapShim();\r\n/**\r\n * ResizeObserver API. Encapsulates the ResizeObserver SPI implementation\r\n * exposing only those methods and properties that are defined in the spec.\r\n */\r\nvar ResizeObserver = /** @class */ (function () {\r\n /**\r\n * Creates a new instance of ResizeObserver.\r\n *\r\n * @param {ResizeObserverCallback} callback - Callback that is invoked when\r\n * dimensions of the observed elements change.\r\n */\r\n function ResizeObserver(callback) {\r\n if (!(this instanceof ResizeObserver)) {\r\n throw new TypeError('Cannot call a class as a function.');\r\n }\r\n if (!arguments.length) {\r\n throw new TypeError('1 argument required, but only 0 present.');\r\n }\r\n var controller = ResizeObserverController.getInstance();\r\n var observer = new ResizeObserverSPI(callback, controller, this);\r\n observers.set(this, observer);\r\n }\r\n return ResizeObserver;\r\n}());\r\n// Expose public methods of ResizeObserver.\r\n[\r\n 'observe',\r\n 'unobserve',\r\n 'disconnect'\r\n].forEach(function (method) {\r\n ResizeObserver.prototype[method] = function () {\r\n var _a;\r\n return (_a = observers.get(this))[method].apply(_a, arguments);\r\n };\r\n});\n\nvar index = (function () {\r\n // Export existing implementation if available.\r\n if (typeof global$1.ResizeObserver !== 'undefined') {\r\n return global$1.ResizeObserver;\r\n }\r\n return ResizeObserver;\r\n})();\n\nexport default index;\n","/*\n * Copyright 2018 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport * as React from \"react\";\nimport { findDOMNode } from \"react-dom\";\nimport { polyfill } from \"react-lifecycles-compat\";\nimport ResizeObserver from \"resize-observer-polyfill\";\n\nimport { AbstractPureComponent2 } from \"../../common\";\nimport { DISPLAYNAME_PREFIX } from \"../../common/props\";\nimport { ResizeEntry } from \"./resizeObserverTypes\";\n\n// eslint-disable-next-line deprecation/deprecation\nexport type ResizeSensorProps = IResizeSensorProps;\n/** @deprecated use ResizeSensorProps */\nexport interface IResizeSensorProps {\n /**\n * Callback invoked when the wrapped element resizes.\n *\n * The `entries` array contains an entry for each observed element. In the\n * default case (no `observeParents`), the array will contain only one\n * element: the single child of the `ResizeSensor`.\n *\n * Note that this method is called _asynchronously_ after a resize is\n * detected and typically it will be called no more than once per frame.\n */\n onResize: (entries: ResizeEntry[]) => void;\n\n /**\n * If `true`, all parent DOM elements of the container will also be\n * observed for size changes. The array of entries passed to `onResize`\n * will now contain an entry for each parent element up to the root of the\n * document.\n *\n * Only enable this prop if a parent element resizes in a way that does\n * not also cause the child element to resize.\n *\n * @default false\n */\n observeParents?: boolean;\n}\n\n/** `ResizeSensor` requires a single DOM element child and will error otherwise. */\n@polyfill\nexport class ResizeSensor extends AbstractPureComponent2 {\n public static displayName = `${DISPLAYNAME_PREFIX}.ResizeSensor`;\n\n private element: Element | null = null;\n\n private observer = new ResizeObserver(entries => this.props.onResize?.(entries));\n\n public render() {\n // pass-through render of single child\n return React.Children.only(this.props.children);\n }\n\n public componentDidMount() {\n this.observeElement();\n }\n\n public componentDidUpdate(prevProps: ResizeSensorProps) {\n this.observeElement(this.props.observeParents !== prevProps.observeParents);\n }\n\n public componentWillUnmount() {\n this.observer.disconnect();\n }\n\n /**\n * Observe the DOM element, if defined and different from the currently\n * observed element. Pass `force` argument to skip element checks and always\n * re-observe.\n */\n private observeElement(force = false) {\n const element = this.getElement();\n if (!(element instanceof Element)) {\n // stop everything if not defined\n this.observer.disconnect();\n return;\n }\n\n if (element === this.element && !force) {\n // quit if given same element -- nothing to update (unless forced)\n return;\n } else {\n // clear observer list if new element\n this.observer.disconnect();\n // remember element reference for next time\n this.element = element;\n }\n\n // observer callback is invoked immediately when observing new elements\n this.observer.observe(element);\n\n if (this.props.observeParents) {\n let parent = element.parentElement;\n while (parent != null) {\n this.observer.observe(parent);\n parent = parent.parentElement;\n }\n }\n }\n\n private getElement() {\n try {\n // using findDOMNode for two reasons:\n // 1. cloning to insert a ref is unwieldy and not performant.\n // 2. ensure that we resolve to an actual DOM node (instead of any JSX ref instance).\n // HACKHACK: see https://github.com/palantir/blueprint/issues/3979\n /* eslint-disable-next-line react/no-find-dom-node */\n return findDOMNode(this);\n } catch {\n // swallow error if findDOMNode is run on unmounted component.\n return null;\n }\n }\n}\n","/*\n * Copyright 2017 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport PopperJS from \"popper.js\";\n\n// Popper placement utils\n// ======================\n\n/** Converts a full placement to one of the four positions by stripping text after the `-`. */\nexport function getPosition(placement: PopperJS.Placement) {\n return placement.split(\"-\")[0] as PopperJS.Position;\n}\n\n/** Returns true if position is left or right. */\nexport function isVerticalPosition(side: PopperJS.Position) {\n return [\"left\", \"right\"].indexOf(side) !== -1;\n}\n\n/** Returns the opposite position. */\nexport function getOppositePosition(side: PopperJS.Position) {\n switch (side) {\n case \"top\":\n return \"bottom\";\n case \"left\":\n return \"right\";\n case \"bottom\":\n return \"top\";\n default:\n return \"left\";\n }\n}\n\n/** Returns the CSS alignment keyword corresponding to given placement. */\nexport function getAlignment(placement: PopperJS.Placement) {\n const align = placement.split(\"-\")[1] as \"start\" | \"end\" | undefined;\n switch (align) {\n case \"start\":\n return \"left\";\n case \"end\":\n return \"right\";\n default:\n return \"center\";\n }\n}\n\n// Popper modifiers\n// ================\n\n/** Modifier helper function to compute popper transform-origin based on arrow position */\nexport function getTransformOrigin(data: PopperJS.Data) {\n const position = getPosition(data.placement);\n if (data.arrowElement == null) {\n return isVerticalPosition(position)\n ? `${getOppositePosition(position)} ${getAlignment(position)}`\n : `${getAlignment(position)} ${getOppositePosition(position)}`;\n } else {\n const arrowSizeShift = data.arrowElement.clientHeight / 2;\n const { arrow } = data.offsets;\n // can use keyword for dimension without the arrow, to ease computation burden.\n // move origin by half arrow's height to keep it centered.\n return isVerticalPosition(position)\n ? `${getOppositePosition(position)} ${arrow.top + arrowSizeShift}px`\n : `${arrow.left + arrowSizeShift}px ${getOppositePosition(position)}`;\n }\n}\n\n// additional space between arrow and edge of target\nconst ARROW_SPACING = 4;\n\n/** Popper modifier that offsets popper and arrow so arrow points out of the correct side */\nexport const arrowOffsetModifier: PopperJS.ModifierFn = data => {\n if (data.arrowElement == null) {\n return data;\n }\n // our arrows have equal width and height\n const arrowSize = data.arrowElement.clientWidth;\n // this logic borrowed from original Popper arrow modifier itself\n const position = getPosition(data.placement);\n const isVertical = isVerticalPosition(position);\n const len = isVertical ? \"width\" : \"height\";\n const offsetSide = isVertical ? \"left\" : \"top\";\n\n const arrowOffsetSize = Math.round(arrowSize / 2 / Math.sqrt(2));\n // offset popover by arrow size, offset arrow in the opposite direction\n if (position === \"top\" || position === \"left\") {\n // the \"up & back\" directions require negative popper offsets\n data.offsets.popper[offsetSide] -= arrowOffsetSize + ARROW_SPACING;\n // can only use left/top on arrow so gotta get clever with 100% + X\n data.offsets.arrow[offsetSide] = data.offsets.popper[len] - arrowSize + arrowOffsetSize;\n } else {\n data.offsets.popper[offsetSide] += arrowOffsetSize + ARROW_SPACING;\n data.offsets.arrow[offsetSide] = -arrowOffsetSize;\n }\n return data;\n};\n","/*\n * Copyright 2017 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Placement } from \"popper.js\";\nimport * as React from \"react\";\nimport { PopperArrowProps } from \"react-popper\";\n\nimport * as Classes from \"../../common/classes\";\nimport { DISPLAYNAME_PREFIX } from \"../../common/props\";\nimport { getPosition } from \"./popperUtils\";\n\n// these paths come from the Core Kit Sketch file\n// https://github.com/palantir/blueprint/blob/develop/resources/sketch/Core%20Kit.sketch\nconst SVG_SHADOW_PATH =\n \"M8.11 6.302c1.015-.936 1.887-2.922 1.887-4.297v26c0-1.378\" +\n \"-.868-3.357-1.888-4.297L.925 17.09c-1.237-1.14-1.233-3.034 0-4.17L8.11 6.302z\";\nconst SVG_ARROW_PATH =\n \"M8.787 7.036c1.22-1.125 2.21-3.376 2.21-5.03V0v30-2.005\" +\n \"c0-1.654-.983-3.9-2.21-5.03l-7.183-6.616c-.81-.746-.802-1.96 0-2.7l7.183-6.614z\";\n\n/** Modifier helper function to compute arrow rotate() transform */\nfunction getArrowAngle(placement?: Placement) {\n if (placement == null) {\n return 0;\n }\n // can only be top/left/bottom/right - auto is resolved internally\n switch (getPosition(placement)) {\n case \"top\":\n return -90;\n case \"left\":\n return 180;\n case \"bottom\":\n return 90;\n default:\n return 0;\n }\n}\n\nexport interface IPopoverArrowProps {\n arrowProps: PopperArrowProps;\n placement: Placement;\n}\n\nexport const PopoverArrow: React.FunctionComponent = ({\n arrowProps: { ref, style },\n placement,\n}) => (\n
\n \n \n \n \n
\n);\nPopoverArrow.displayName = `${DISPLAYNAME_PREFIX}.PopoverArrow`;\n","/*\n * Copyright 2017 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Placement } from \"popper.js\";\n\nimport { Position } from \"../../common/position\";\nimport { PopoverPosition } from \"./popoverSharedProps\";\n\n/**\n * Convert a position to a placement.\n *\n * @param position the position to convert\n */\nexport function positionToPlacement(position: PopoverPosition): Placement {\n /* istanbul ignore next */\n switch (position) {\n case Position.TOP_LEFT:\n return \"top-start\";\n case Position.TOP:\n return \"top\";\n case Position.TOP_RIGHT:\n return \"top-end\";\n case Position.RIGHT_TOP:\n return \"right-start\";\n case Position.RIGHT:\n return \"right\";\n case Position.RIGHT_BOTTOM:\n return \"right-end\";\n case Position.BOTTOM_RIGHT:\n return \"bottom-end\";\n case Position.BOTTOM:\n return \"bottom\";\n case Position.BOTTOM_LEFT:\n return \"bottom-start\";\n case Position.LEFT_BOTTOM:\n return \"left-end\";\n case Position.LEFT:\n return \"left\";\n case Position.LEFT_TOP:\n return \"left-start\";\n case \"auto\":\n case \"auto-start\":\n case \"auto-end\":\n // Return the string unchanged.\n return position;\n default:\n return assertNever(position);\n }\n}\n\n/* istanbul ignore next */\nfunction assertNever(x: never): never {\n throw new Error(\"Unexpected position: \" + x);\n}\n","/*\n * Copyright 2017 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport classNames from \"classnames\";\nimport { ModifierFn } from \"popper.js\";\nimport * as React from \"react\";\nimport { polyfill } from \"react-lifecycles-compat\";\nimport { Manager, Popper, PopperChildrenProps, Reference, ReferenceChildrenProps } from \"react-popper\";\n\nimport { AbstractPureComponent2, Classes, IRef, refHandler, setRef } from \"../../common\";\nimport * as Errors from \"../../common/errors\";\nimport { DISPLAYNAME_PREFIX, HTMLDivProps } from \"../../common/props\";\nimport * as Utils from \"../../common/utils\";\nimport { Overlay } from \"../overlay/overlay\";\nimport { ResizeSensor } from \"../resize-sensor/resizeSensor\";\n// eslint-disable-next-line import/no-cycle\nimport { Tooltip } from \"../tooltip/tooltip\";\nimport { PopoverArrow } from \"./popoverArrow\";\nimport { positionToPlacement } from \"./popoverMigrationUtils\";\nimport { IPopoverSharedProps, PopperModifiers } from \"./popoverSharedProps\";\nimport { arrowOffsetModifier, getTransformOrigin } from \"./popperUtils\";\n\nexport const PopoverInteractionKind = {\n CLICK: \"click\" as \"click\",\n CLICK_TARGET_ONLY: \"click-target\" as \"click-target\",\n HOVER: \"hover\" as \"hover\",\n HOVER_TARGET_ONLY: \"hover-target\" as \"hover-target\",\n};\n// eslint-disable-next-line @typescript-eslint/no-redeclare\nexport type PopoverInteractionKind = typeof PopoverInteractionKind[keyof typeof PopoverInteractionKind];\n\nexport interface IPopoverProps extends IPopoverSharedProps {\n /** HTML props for the backdrop element. Can be combined with `backdropClassName`. */\n backdropProps?: React.HTMLProps;\n\n /**\n * The content displayed inside the popover. This can instead be provided as\n * the _second_ element in `children` (first is `target`).\n */\n content?: string | JSX.Element;\n\n /**\n * Whether the wrapper and target should take up the full width of their container.\n * Note that supplying `true` for this prop will force `targetTagName=\"div\"` and\n * `wrapperTagName=\"div\"`.\n */\n fill?: boolean;\n\n /**\n * The kind of interaction that triggers the display of the popover.\n *\n * @default PopoverInteractionKind.CLICK\n */\n interactionKind?: PopoverInteractionKind;\n\n /**\n * Enables an invisible overlay beneath the popover that captures clicks and\n * prevents interaction with the rest of the document until the popover is\n * closed. This prop is only available when `interactionKind` is\n * `PopoverInteractionKind.CLICK`. When popovers with backdrop are opened,\n * they become focused.\n *\n * @default false\n */\n hasBackdrop?: boolean;\n\n /**\n * Whether the application should return focus to the last active element in the\n * document after this popover closes.\n *\n * This is automatically set to `false` if this is a hover interaction popover.\n *\n * If you are attaching a popover _and_ a tooltip to the same target, you must take\n * care to either disable this prop for the popover _or_ disable the tooltip's\n * `openOnTargetFocus` prop.\n *\n * @default false\n */\n shouldReturnFocusOnClose?: boolean;\n\n /**\n * Ref supplied to the `Classes.POPOVER` element.\n */\n popoverRef?: IRef;\n\n /**\n * The target to which the popover content is attached. This can instead be\n * provided as the _first_ element in `children`.\n */\n target?: string | JSX.Element;\n}\n\nexport interface IPopoverState {\n transformOrigin: string;\n isOpen: boolean;\n hasDarkParent: boolean;\n}\n\n/** @deprecated use { Popover2 } from \"@blueprintjs/popover2\" */\n@polyfill\nexport class Popover extends AbstractPureComponent2 {\n public static displayName = `${DISPLAYNAME_PREFIX}.Popover`;\n\n // eslint-disable-next-line deprecation/deprecation\n private popoverRef = Utils.createReactRef();\n\n public static defaultProps: IPopoverProps = {\n boundary: \"scrollParent\",\n captureDismiss: false,\n defaultIsOpen: false,\n disabled: false,\n fill: false,\n hasBackdrop: false,\n hoverCloseDelay: 300,\n hoverOpenDelay: 150,\n inheritDarkTheme: true,\n interactionKind: PopoverInteractionKind.CLICK,\n minimal: false,\n modifiers: {},\n openOnTargetFocus: true,\n shouldReturnFocusOnClose: false,\n // N.B. we don't set a default for `placement` or `position` here because that would trigger\n // a warning in validateProps if the other prop is specified by a user of this component\n targetTagName: \"span\",\n transitionDuration: 300,\n usePortal: true,\n wrapperTagName: \"span\",\n };\n\n /**\n * DOM element that contains the popover.\n * When `usePortal={true}`, this element will be portaled outside the usual DOM flow,\n * so this reference can be very useful for testing.\n */\n public popoverElement: HTMLElement | null = null;\n\n /** DOM element that contains the target. */\n public targetElement: HTMLElement | null = null;\n\n public state: IPopoverState = {\n hasDarkParent: false,\n isOpen: this.getIsOpen(this.props),\n transformOrigin: \"\",\n };\n\n private cancelOpenTimeout?: () => void;\n\n // a flag that lets us detect mouse movement between the target and popover,\n // now that mouseleave is triggered when you cross the gap between the two.\n private isMouseInTargetOrPopover = false;\n\n // a flag that indicates whether the target previously lost focus to another\n // element on the same page.\n private lostFocusOnSamePage = true;\n\n // Reference to the Poppper.scheduleUpdate() function, this changes every time the popper is mounted\n private popperScheduleUpdate?: () => void;\n\n private handlePopoverRef: IRef = refHandler(this, \"popoverElement\", this.props.popoverRef);\n\n private handleTargetRef = (ref: HTMLElement | null) => (this.targetElement = ref);\n\n public render() {\n // rename wrapper tag to begin with uppercase letter so it's recognized\n // as JSX component instead of intrinsic element. but because of its\n // type, tsc actually recognizes that it is _any_ intrinsic element, so\n // it can typecheck the HTML props!!\n const { className, disabled, fill, placement, position = \"auto\", shouldReturnFocusOnClose } = this.props;\n const { isOpen } = this.state;\n let { wrapperTagName } = this.props;\n if (fill) {\n wrapperTagName = \"div\";\n }\n\n const isContentEmpty = Utils.ensureElement(this.understandChildren().content) == null;\n // need to do this check in render(), because `isOpen` is derived from\n // state, and state can't necessarily be accessed in validateProps.\n if (isContentEmpty && !disabled && isOpen !== false && !Utils.isNodeEnv(\"production\")) {\n console.warn(Errors.POPOVER_WARN_EMPTY_CONTENT);\n }\n\n const wrapperClasses = classNames(Classes.POPOVER_WRAPPER, className, {\n [Classes.FILL]: fill,\n });\n\n const defaultAutoFocus = this.isHoverInteractionKind() ? false : undefined;\n\n const wrapper = React.createElement(\n wrapperTagName!,\n { className: wrapperClasses },\n {this.renderTarget},\n \n \n {this.renderPopover}\n \n ,\n );\n\n return {wrapper};\n }\n\n public componentDidMount() {\n this.updateDarkParent();\n }\n\n public componentDidUpdate(prevProps: IPopoverProps, prevState: IPopoverState) {\n super.componentDidUpdate(prevProps, prevState);\n\n if (prevProps.popoverRef !== this.props.popoverRef) {\n setRef(prevProps.popoverRef, null);\n this.handlePopoverRef = refHandler(this, \"popoverElement\", this.props.popoverRef);\n setRef(this.props.popoverRef, this.popoverElement);\n }\n\n this.updateDarkParent();\n\n const nextIsOpen = this.getIsOpen(this.props);\n\n if (this.props.isOpen != null && nextIsOpen !== this.state.isOpen) {\n this.setOpenState(nextIsOpen);\n // tricky: setOpenState calls setState only if this.props.isOpen is\n // not controlled, so we need to invoke setState manually here.\n this.setState({ isOpen: nextIsOpen });\n } else if (this.props.disabled && this.state.isOpen && this.props.isOpen == null) {\n // special case: close an uncontrolled popover when disabled is set to true\n this.setOpenState(false);\n }\n }\n\n /**\n * Instance method to instruct the `Popover` to recompute its position.\n *\n * This method should only be used if you are updating the target in a way\n * that does not cause it to re-render, such as changing its _position_\n * without changing its _size_ (since `Popover` already repositions when it\n * detects a resize).\n */\n public reposition = () => this.popperScheduleUpdate?.();\n\n protected validateProps(props: IPopoverProps & { children?: React.ReactNode }) {\n if (props.isOpen == null && props.onInteraction != null) {\n console.warn(Errors.POPOVER_WARN_UNCONTROLLED_ONINTERACTION);\n }\n if (props.hasBackdrop && !props.usePortal) {\n console.warn(Errors.POPOVER_WARN_HAS_BACKDROP_INLINE);\n }\n if (props.hasBackdrop && props.interactionKind !== PopoverInteractionKind.CLICK) {\n console.error(Errors.POPOVER_HAS_BACKDROP_INTERACTION);\n }\n if (props.placement !== undefined && props.position !== undefined) {\n console.warn(Errors.POPOVER_WARN_PLACEMENT_AND_POSITION_MUTEX);\n }\n\n const childrenCount = React.Children.count(props.children);\n const hasContentProp = props.content !== undefined;\n const hasTargetProp = props.target !== undefined;\n\n if (childrenCount === 0 && !hasTargetProp) {\n console.error(Errors.POPOVER_REQUIRES_TARGET);\n }\n if (childrenCount > 2) {\n console.warn(Errors.POPOVER_WARN_TOO_MANY_CHILDREN);\n }\n if (childrenCount > 0 && hasTargetProp) {\n console.warn(Errors.POPOVER_WARN_DOUBLE_TARGET);\n }\n if (childrenCount === 2 && hasContentProp) {\n console.warn(Errors.POPOVER_WARN_DOUBLE_CONTENT);\n }\n }\n\n private updateDarkParent() {\n if (this.props.usePortal && this.state.isOpen) {\n const hasDarkParent = this.targetElement != null && this.targetElement.closest(`.${Classes.DARK}`) != null;\n this.setState({ hasDarkParent });\n }\n }\n\n private renderPopover = (popperProps: PopperChildrenProps) => {\n const { interactionKind, usePortal } = this.props;\n const { transformOrigin } = this.state;\n\n // Need to update our reference to this on every render as it will change.\n this.popperScheduleUpdate = popperProps.scheduleUpdate;\n\n const popoverHandlers: HTMLDivProps = {\n // always check popover clicks for dismiss class\n onClick: this.handlePopoverClick,\n };\n if (\n interactionKind === PopoverInteractionKind.HOVER ||\n (!usePortal && interactionKind === PopoverInteractionKind.HOVER_TARGET_ONLY)\n ) {\n popoverHandlers.onMouseEnter = this.handleMouseEnter;\n popoverHandlers.onMouseLeave = this.handleMouseLeave;\n }\n\n const popoverClasses = classNames(\n Classes.POPOVER,\n {\n [Classes.DARK]: this.props.inheritDarkTheme && this.state.hasDarkParent,\n [Classes.MINIMAL]: this.props.minimal,\n [Classes.POPOVER_CAPTURING_DISMISS]: this.props.captureDismiss,\n [Classes.POPOVER_OUT_OF_BOUNDARIES]: popperProps.outOfBoundaries === true,\n },\n this.props.popoverClassName,\n );\n\n return (\n
\n \n \n {this.isArrowEnabled() && (\n \n )}\n
{this.understandChildren().content}
\n
\n \n
\n );\n };\n\n private renderTarget = (referenceProps: ReferenceChildrenProps) => {\n const { fill, openOnTargetFocus, targetClassName, targetProps = {} } = this.props;\n const { isOpen } = this.state;\n const isControlled = this.isControlled();\n const isHoverInteractionKind = this.isHoverInteractionKind();\n let { targetTagName } = this.props;\n if (fill) {\n targetTagName = \"div\";\n }\n\n const finalTargetProps: React.HTMLProps = isHoverInteractionKind\n ? {\n // HOVER handlers\n onBlur: this.handleTargetBlur,\n onFocus: this.handleTargetFocus,\n onMouseEnter: this.handleMouseEnter,\n onMouseLeave: this.handleMouseLeave,\n }\n : {\n // CLICK needs only one handler\n onClick: this.handleTargetClick,\n };\n finalTargetProps[\"aria-haspopup\"] = \"true\";\n finalTargetProps.className = classNames(\n Classes.POPOVER_TARGET,\n { [Classes.POPOVER_OPEN]: isOpen },\n targetProps.className,\n targetClassName,\n );\n finalTargetProps.ref = referenceProps.ref;\n\n const rawTarget = Utils.ensureElement(this.understandChildren().target);\n\n if (rawTarget === undefined) {\n return null;\n }\n\n const rawTabIndex = rawTarget.props.tabIndex;\n // ensure target is focusable if relevant prop enabled\n const tabIndex = rawTabIndex == null && openOnTargetFocus && isHoverInteractionKind ? 0 : rawTabIndex;\n const clonedTarget: JSX.Element = React.cloneElement(rawTarget, {\n className: classNames(rawTarget.props.className, {\n // this class is mainly useful for button targets; we should only apply it for uncontrolled popovers\n // when they are opened by a user interaction\n [Classes.ACTIVE]: isOpen && !isControlled && !isHoverInteractionKind,\n }),\n // force disable single Tooltip child when popover is open (BLUEPRINT-552)\n /* eslint-disable-next-line deprecation/deprecation */\n disabled: isOpen && Utils.isElementOfType(rawTarget, Tooltip) ? true : rawTarget.props.disabled,\n tabIndex,\n });\n const target = React.createElement(\n targetTagName!,\n {\n ...targetProps,\n ...finalTargetProps,\n },\n clonedTarget,\n );\n\n return {target};\n };\n\n // content and target can be specified as props or as children. this method\n // normalizes the two approaches, preferring child over prop.\n private understandChildren() {\n const { children, content: contentProp, target: targetProp } = this.props;\n // #validateProps asserts that 1 <= children.length <= 2 so content is optional\n const [targetChild, contentChild] = React.Children.toArray(children);\n return {\n content: contentChild == null ? contentProp : contentChild,\n target: targetChild == null ? targetProp : targetChild,\n };\n }\n\n private isControlled = () => this.props.isOpen !== undefined;\n\n private getIsOpen(props: IPopoverProps) {\n // disabled popovers should never be allowed to open.\n if (props.disabled) {\n return false;\n } else if (props.isOpen != null) {\n return props.isOpen;\n } else {\n return props.defaultIsOpen!;\n }\n }\n\n private getPopperModifiers(): PopperModifiers {\n const { boundary, modifiers } = this.props;\n const { flip = {}, preventOverflow = {} } = modifiers!;\n return {\n ...modifiers,\n arrowOffset: {\n enabled: this.isArrowEnabled(),\n fn: arrowOffsetModifier,\n order: 510,\n },\n flip: { boundariesElement: boundary, ...flip },\n preventOverflow: { boundariesElement: boundary, ...preventOverflow },\n updatePopoverState: {\n enabled: true,\n fn: this.updatePopoverState,\n order: 900,\n },\n };\n }\n\n private handleTargetFocus = (e: React.FocusEvent) => {\n if (this.props.openOnTargetFocus && this.isHoverInteractionKind()) {\n if (e.relatedTarget == null && !this.lostFocusOnSamePage) {\n // ignore this focus event -- the target was already focused but the page itself\n // lost focus (e.g. due to switching tabs).\n return;\n }\n this.handleMouseEnter((e as unknown) as React.MouseEvent);\n }\n this.props.targetProps?.onFocus?.(e);\n };\n\n private handleTargetBlur = (e: React.FocusEvent) => {\n if (this.props.openOnTargetFocus && this.isHoverInteractionKind()) {\n // if the next element to receive focus is within the popover, we'll want to leave the\n // popover open. e.relatedTarget ought to tell us the next element to receive focus, but if the user just\n // clicked on an element which is not focusable (either by default or with a tabIndex attribute),\n // it won't be set. So, we filter those out here and assume that a click handler somewhere else will\n // close the popover if necessary.\n if (e.relatedTarget != null && !this.isElementInPopover(e.relatedTarget as HTMLElement)) {\n this.handleMouseLeave((e as unknown) as React.MouseEvent);\n }\n }\n this.lostFocusOnSamePage = e.relatedTarget != null;\n this.props.targetProps?.onBlur?.(e);\n };\n\n private handleMouseEnter = (e: React.MouseEvent) => {\n this.isMouseInTargetOrPopover = true;\n\n // if we're entering the popover, and the mode is set to be HOVER_TARGET_ONLY, we want to manually\n // trigger the mouse leave event, as hovering over the popover shouldn't count.\n if (\n !this.props.usePortal &&\n this.isElementInPopover(e.target as Element) &&\n this.props.interactionKind === PopoverInteractionKind.HOVER_TARGET_ONLY &&\n !this.props.openOnTargetFocus\n ) {\n this.handleMouseLeave(e);\n } else if (!this.props.disabled) {\n // only begin opening popover when it is enabled\n this.setOpenState(true, e, this.props.hoverOpenDelay);\n }\n this.props.targetProps?.onMouseEnter?.(e);\n };\n\n private handleMouseLeave = (e: React.MouseEvent) => {\n this.isMouseInTargetOrPopover = false;\n\n // wait until the event queue is flushed, because we want to leave the\n // popover open if the mouse entered the popover immediately after\n // leaving the target (or vice versa).\n this.setTimeout(() => {\n if (this.isMouseInTargetOrPopover) {\n return;\n }\n // user-configurable closing delay is helpful when moving mouse from target to popover\n this.setOpenState(false, e, this.props.hoverCloseDelay);\n });\n this.props.targetProps?.onMouseLeave?.(e);\n };\n\n private handlePopoverClick = (e: React.MouseEvent) => {\n const eventTarget = e.target as HTMLElement;\n const eventPopover = eventTarget.closest(`.${Classes.POPOVER}`);\n const isEventFromSelf = eventPopover === this.popoverRef.current;\n const isEventPopoverCapturing = eventPopover?.classList.contains(Classes.POPOVER_CAPTURING_DISMISS);\n // an OVERRIDE inside a DISMISS does not dismiss, and a DISMISS inside an OVERRIDE will dismiss.\n const dismissElement = eventTarget.closest(`.${Classes.POPOVER_DISMISS}, .${Classes.POPOVER_DISMISS_OVERRIDE}`);\n const shouldDismiss = dismissElement != null && dismissElement.classList.contains(Classes.POPOVER_DISMISS);\n const isDisabled = eventTarget.closest(`:disabled, .${Classes.DISABLED}`) != null;\n if (shouldDismiss && !isDisabled && (!isEventPopoverCapturing || isEventFromSelf)) {\n this.setOpenState(false, e);\n }\n };\n\n private handleOverlayClose = (e?: React.SyntheticEvent) => {\n if (this.targetElement === null || e === undefined) {\n return;\n }\n\n const eventTarget = e.target as HTMLElement;\n // if click was in target, target event listener will handle things, so don't close\n if (!Utils.elementIsOrContains(this.targetElement, eventTarget) || e.nativeEvent instanceof KeyboardEvent) {\n this.setOpenState(false, e);\n }\n };\n\n private handleTargetClick = (e: React.MouseEvent) => {\n // ensure click did not originate from within inline popover before closing\n if (!this.props.disabled && !this.isElementInPopover(e.target as HTMLElement)) {\n if (this.props.isOpen == null) {\n this.setState(prevState => ({ isOpen: !prevState.isOpen }));\n } else {\n this.setOpenState(!this.props.isOpen, e);\n }\n }\n this.props.targetProps?.onClick?.(e);\n };\n\n // a wrapper around setState({isOpen}) that will call props.onInteraction instead when in controlled mode.\n // starts a timeout to delay changing the state if a non-zero duration is provided.\n private setOpenState(isOpen: boolean, e?: React.SyntheticEvent, timeout?: number) {\n // cancel any existing timeout because we have new state\n this.cancelOpenTimeout?.();\n if (timeout !== undefined && timeout > 0) {\n this.cancelOpenTimeout = this.setTimeout(() => this.setOpenState(isOpen, e), timeout);\n } else {\n if (this.props.isOpen == null) {\n this.setState({ isOpen });\n } else {\n this.props.onInteraction?.(isOpen, e);\n }\n if (!isOpen) {\n // non-null assertion because the only time `e` is undefined is when in controlled mode\n // or the rare special case in uncontrolled mode when the `disabled` flag is toggled true\n this.props.onClose?.(e!);\n }\n }\n }\n\n private isArrowEnabled() {\n const { minimal, modifiers } = this.props;\n // omitting `arrow` from `modifiers` uses Popper default, which does show an arrow.\n return !minimal && (modifiers?.arrow == null || modifiers.arrow.enabled);\n }\n\n private isElementInPopover(element: Element) {\n return this.popoverElement?.contains(element);\n }\n\n private isHoverInteractionKind() {\n return (\n this.props.interactionKind === PopoverInteractionKind.HOVER ||\n this.props.interactionKind === PopoverInteractionKind.HOVER_TARGET_ONLY\n );\n }\n\n /** Popper modifier that updates React state (for style properties) based on latest data. */\n private updatePopoverState: ModifierFn = data => {\n // always set string; let shouldComponentUpdate determine if update is necessary\n this.setState({ transformOrigin: getTransformOrigin(data) });\n return data;\n };\n}\n","/*\n * Copyright 2015 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport classNames from \"classnames\";\nimport * as React from \"react\";\nimport { polyfill } from \"react-lifecycles-compat\";\n\nimport { AbstractPureComponent2, Classes } from \"../../common\";\nimport { DISPLAYNAME_PREFIX, IntentProps } from \"../../common/props\";\n// eslint-disable-next-line import/no-cycle\nimport { Popover, PopoverInteractionKind } from \"../popover/popover\";\nimport { IPopoverSharedProps } from \"../popover/popoverSharedProps\";\n\n// eslint-disable-next-line deprecation/deprecation\nexport type TooltipProps = ITooltipProps;\n/** @deprecated use TooltipProps */\nexport interface ITooltipProps extends IPopoverSharedProps, IntentProps {\n /**\n * The content that will be displayed inside of the tooltip.\n */\n content: JSX.Element | string;\n\n /**\n * The amount of time in milliseconds the tooltip should remain open after\n * the user hovers off the trigger. The timer is canceled if the user mouses\n * over the target before it expires.\n *\n * @default 0\n */\n hoverCloseDelay?: number;\n\n /**\n * The amount of time in milliseconds the tooltip should wait before opening\n * after the user hovers over the trigger. The timer is canceled if the user\n * mouses away from the target before it expires.\n *\n * @default 100\n */\n hoverOpenDelay?: number;\n\n /**\n * The kind of hover interaction that triggers the display of the tooltip.\n * Tooltips do not support click interactions.\n *\n * @default PopoverInteractionKind.HOVER_TARGET_ONLY\n */\n interactionKind?: typeof PopoverInteractionKind.HOVER | typeof PopoverInteractionKind.HOVER_TARGET_ONLY;\n\n /**\n * Indicates how long (in milliseconds) the tooltip's appear/disappear\n * transition takes. This is used by React `CSSTransition` to know when a\n * transition completes and must match the duration of the animation in CSS.\n * Only set this prop if you override Blueprint's default transitions with\n * new transitions of a different length.\n *\n * @default 100\n */\n transitionDuration?: number;\n}\n\n/** @deprecated use { Tooltip2 } from \"@blueprintjs/popover2\" */\n@polyfill\nexport class Tooltip extends AbstractPureComponent2 {\n public static displayName = `${DISPLAYNAME_PREFIX}.Tooltip`;\n\n public static defaultProps: Partial = {\n hoverCloseDelay: 0,\n hoverOpenDelay: 100,\n minimal: false,\n transitionDuration: 100,\n };\n\n // eslint-disable-next-line deprecation/deprecation\n private popover: Popover | null = null;\n\n public render() {\n const { children, intent, popoverClassName, ...restProps } = this.props;\n const classes = classNames(\n Classes.TOOLTIP,\n { [Classes.MINIMAL]: this.props.minimal },\n Classes.intentClass(intent),\n popoverClassName,\n );\n\n return (\n /* eslint-disable deprecation/deprecation */\n (this.popover = ref)}\n >\n {children}\n \n );\n }\n\n public reposition() {\n if (this.popover != null) {\n this.popover.reposition();\n }\n }\n}\n","import React, { useRef, useEffect, useState } from \"react\";\nimport { H6, Card, Elevation } from \"@blueprintjs/core\";\nimport \"./JSONItem.css\";\n\nfunction JSONItem({ item }) {\n const SMALL_CARD_WIDTH_LIMIT = 1000;\n const [cardWidth, setCardWidth] = useState(0);\n const card = useRef();\n\n useEffect(() => {\n setCardWidth(card.current.offsetWidth);\n }, []);\n\n const smallCard = cardWidth < SMALL_CARD_WIDTH_LIMIT;\n\n return (\n \n \n \n {JSON.stringify(item && item.data)}\n \n
\n ID: {item && item.id}\n
\n
\n
\n );\n}\n\nexport { JSONItem };\n","import React from \"react\";\nimport { Link } from \"react-router-dom\";\nimport { JSONItem } from \"../JSONItem\";\nimport \"./GridCollection.css\";\n\nfunction GridCollection({ items, itemRenderer: ItemRenderer = JSONItem }) {\n return items && items.length > 0 ? (\n
\n {items.map((item) => {\n return (\n \n \n \n );\n })}\n
\n ) : null;\n}\n\nexport { GridCollection };\n","import React from \"react\";\nimport { Button, Icon, Intent } from \"@blueprintjs/core\";\nimport \"./Pagination.css\";\n\n/*\n * Creates pagination buttons based on the total number of pages to be paginated as well as the active page.\n * The setPage parameter allows the component to change the page state in its parent component.\n */\n\nfunction getPagination(page, totalPages) {\n //how many buttons are allowed to be displayed between the next and last page buttons\n const MAX_CELLS = 7;\n //middle entry of the buttons is the floor of half of the max\n const CELL_MID_LEN = Math.floor(MAX_CELLS / 2);\n\n /*stores the attributes of the buttons to be displayed\n * The term ellipsis in objects stored in this array refers to series of page numbers condensed into a single \"...\" button\n * The term number in objects stored in this array refers to the page number of the button if the button is not an ellipsis\n */\n let pages = [];\n\n if (totalPages > MAX_CELLS) {\n //if there are more pages than the maximum buttons we can display, calculate where to place ellipis\n\n //start by populating the first and last two buttons in the display with their page numbers\n pages[0] = { number: 1 };\n pages[1] = { number: 2 };\n pages[MAX_CELLS - 2] = { number: totalPages - 1 };\n pages[MAX_CELLS - 1] = { number: totalPages };\n\n if (page <= CELL_MID_LEN) {\n /*\n * if active page is less than or equal to the middle entry of the display\n * place ellipsis before the last button and populate the cells from the first button on\n */\n pages[MAX_CELLS - 2].ellipsis = true;\n for (let i = 2; i < MAX_CELLS - 2; i++) {\n pages[i] = { number: i + 1 };\n }\n } else if (totalPages - page < CELL_MID_LEN) {\n /*\n * else if the distance from active page to the last page is less than the middle entry of the display\n * place ellipsis after the first button and populate the cells from the last button prior\n */\n pages[1].ellipsis = true;\n for (let i = 2; i < MAX_CELLS - 2; i++) {\n pages[i] = { number: totalPages - MAX_CELLS + i + 1 };\n }\n } else {\n /*\n * otherwise the active page must be too far away from first and last buttons and two ellipsis must be placed on either side of the active pages\n * cells are populated assuming the middle button is the active page\n */\n pages[1].ellipsis = true;\n pages[MAX_CELLS - 2].ellipsis = true;\n\n pages[CELL_MID_LEN] = { number: page };\n for (let i = 1; i < MAX_CELLS - 5; i++) {\n pages[CELL_MID_LEN + i] = { number: page + i };\n pages[CELL_MID_LEN - i] = { number: page - i };\n }\n }\n } else {\n //If there are less pages than the max no ellipsis is needed and all buttons can be populated normally\n for (let i = 0; i < totalPages; i++) {\n pages[i] = { number: i + 1, ellipsis: false };\n }\n }\n\n //set active flag for active page\n pages.forEach((p) => {\n if (p.number === page) p.active = true;\n });\n\n //if at last page disable going forward and if at first page disable going back\n const isLeftArrowEnabled = page > 1;\n const isRightArrowEnabled = page < totalPages;\n\n return {\n pages,\n isLeftArrowEnabled,\n isRightArrowEnabled,\n };\n}\n\nfunction Pagination({ page = 1, totalPages = 1, setPage = () => {} }) {\n const { pages, isLeftArrowEnabled, isRightArrowEnabled } = getPagination(\n page,\n totalPages\n );\n\n return (\n
\n setPage(page - 1)}\n id=\"pagination-button-left\"\n >\n \n \n {pages.map((p) => (\n setPage(p.number)}\n />\n ))}\n setPage(page + 1)}\n id=\"pagination-button-right\"\n >\n \n \n
\n );\n}\n\nexport default Pagination;\n","const config = {\n /*\n The port that useMephistoReview() in the browser will connect to the\n server on.\n\n Tip: This is useful when developing on the review interface locally so UI changes\n don't require you to kill and relaunch the server each time.\n You can launch `$ mephisto review --port 9000` once to launch\n the review server fed in with the appropriate data source, and then instead of using\n the interface at , you can run `npm start` to get a\n live-reloading developer build server.\n */\n // port: 9000,\n};\n\nexport default config;\n","import config from \"./config\";\n\nfunction getHostname() {\n return config.port\n ? `${window.location.protocol}//${window.location.hostname}:${config.port}`\n : window.location.origin;\n}\n\nexport { getHostname };\n","import React from \"react\";\nimport { Button, Icon } from \"@blueprintjs/core\";\n\nfunction ErrorPane({ error }) {\n const [hide, setHide] = React.useState(false);\n const errorType = error && error.type;\n React.useEffect(() => {\n if (!error) return;\n console.error(error);\n }, [error, errorType]);\n return (\n error &&\n !hide && (\n
\n }\n minimal\n onClick={() => setHide(true)}\n />\n Error [{error.type}] — {JSON.stringify(error.error)}\n
\n )\n );\n}\n\nexport default ErrorPane;\n","import React, { useState } from \"react\";\nimport { Redirect } from \"react-router-dom\";\nimport { useMephistoReview } from \"mephisto-review-hook\";\nimport {\n InputGroup,\n Button,\n Navbar,\n NavbarGroup,\n NavbarDivider,\n NavbarHeading,\n Alignment,\n} from \"@blueprintjs/core\";\nimport { Tooltip } from \"@blueprintjs/core\";\nimport { GridCollection, JSONItem } from \"../renderers\";\nimport { Pagination } from \"./pagination\";\nimport { getHostname } from \"../utils\";\nimport ErrorPane from \"./ErrorPane\";\n\nfunction CollectionView({\n itemRenderer = JSONItem,\n collectionRenderer: CollectionRenderer = GridCollection,\n pagination = true,\n resultsPerPage = 9,\n}) {\n const [page, setPage] = useState(pagination ? 1 : null);\n const [filters, setFilters] = useState(\"\");\n const [filtersBuffer, setFiltersBuffer] = useState(\"\");\n const [filterTimeout, setFilterTimeout] = useState(null);\n\n const {\n data,\n isFinished,\n isLoading,\n error,\n mode,\n totalPages,\n } = useMephistoReview({\n page,\n resultsPerPage,\n filters,\n hostname: getHostname(),\n });\n\n const setFiltersAndResetPage = (filtersStr) => {\n if (page !== null && page !== 1) setPage(1);\n setFilters(filtersStr);\n };\n\n const delaySetFilters = (filtersStr) => {\n setFiltersBuffer(filtersStr);\n if (filterTimeout) {\n clearTimeout(filterTimeout);\n }\n setFilterTimeout(\n setTimeout(() => {\n setFiltersAndResetPage(filtersStr);\n }, 3000)\n );\n };\n\n const setFiltersImmediately = () => {\n if (filterTimeout) {\n clearTimeout(filterTimeout);\n }\n setFiltersAndResetPage(filtersBuffer);\n };\n\n const searchButton = (\n \n Search\n \n );\n\n if (mode === \"OBO\") return ;\n return (\n <>\n \n
\n \n \n Mephisto Review\n \n \n \n \n \n delaySetFilters(event.target.value)}\n onKeyDown={(event) => {\n if (event.key === \"Enter\") setFiltersImmediately();\n }}\n placeholder=\"Filter data...\"\n value={filtersBuffer}\n rightElement={searchButton}\n />\n \n \n
\n
\n
\n
\n \n {isLoading ? (\n

Loading...

\n ) : isFinished ? (\n

\n Done reviewing! You can close this app now\n

\n ) : data && data.length > 0 ? (\n <>\n \n {pagination && totalPages > 1 ? (\n \n ) : null}\n \n ) : (\n
\n

\n Thanks for using the $ mephisto review interface.\n Here are a few ways to get started:\n

\n

\n 1. Review data from a .csv or{\" \"}\n .jsonl file\n

\n
\n                $ cat sample-data.json |\n                mephisto review review-app/build/{\" \"}\n                --json --all --stdout\n              
\n
\n                $ cat sample-data.csv |\n                mephisto review review-app/build/{\" \"}\n                --csv --all --stdout\n              
\n

2. Review data from the Mephisto database

\n
\n                $ mephisto review review-app/build/{\" \"}\n                --db mephisto_db_task_name{\" \"}\n                --all --stdout\n              
\n
\n )}\n
\n
\n \n );\n}\n\nexport default CollectionView;\n","function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {\n try {\n var info = gen[key](arg);\n var value = info.value;\n } catch (error) {\n reject(error);\n return;\n }\n\n if (info.done) {\n resolve(value);\n } else {\n Promise.resolve(value).then(_next, _throw);\n }\n}\n\nexport default function _asyncToGenerator(fn) {\n return function () {\n var self = this,\n args = arguments;\n return new Promise(function (resolve, reject) {\n var gen = fn.apply(self, args);\n\n function _next(value) {\n asyncGeneratorStep(gen, resolve, reject, _next, _throw, \"next\", value);\n }\n\n function _throw(err) {\n asyncGeneratorStep(gen, resolve, reject, _next, _throw, \"throw\", err);\n }\n\n _next(undefined);\n });\n };\n}","import React from \"react\";\nimport { useMephistoReview } from \"mephisto-review-hook\";\nimport { useParams, useHistory, Link } from \"react-router-dom\";\nimport {\n Button,\n Navbar,\n NavbarGroup,\n NavbarDivider,\n NavbarHeading,\n Alignment,\n Position,\n Toaster,\n} from \"@blueprintjs/core\";\nimport { JSONItem } from \"../renderers/JSONItem\";\nimport { getHostname } from \"../utils\";\nimport ErrorPane from \"./ErrorPane\";\n\nconst AppToaster = Toaster.create({\n className: \"recipe-toaster\",\n position: Position.TOP,\n});\n\nfunction ItemView({\n itemRenderer: ItemRenderer = JSONItem,\n wrapClass,\n allowReview = true,\n}) {\n const { id } = useParams();\n const {\n data: item,\n isFinished,\n isLoading,\n submit,\n error,\n mode,\n } = useMephistoReview({ taskId: id, hostname: getHostname() });\n\n const history = useHistory();\n\n const confirmReview = () => {\n if (mode === \"OBO\") {\n history.push(\"/\");\n } else {\n AppToaster.show({ message: \"Review response recorded.\" });\n }\n };\n\n const reviewError = (error) => {\n AppToaster.show({ message: `ERROR: ${error}` });\n };\n\n const buttonDisable = error || isFinished || isLoading || item == null;\n\n const hideReviewWorkflow = !allowReview && mode === \"ALL\";\n\n return (\n <>\n \n
\n \n {mode === \"ALL\" ? (\n <>\n \n \n \n \n \n ) : null}\n \n {hideReviewWorkflow ? (\n Viewing task:\n ) : (\n Please review the following item:\n )}\n \n \n {hideReviewWorkflow ? null : (\n \n {\n var response = await submit({ result: \"rejected\" });\n if (response === \"SUCCESS\") {\n confirmReview();\n } else if (response) {\n reviewError(response);\n }\n }}\n >\n REJECT\n \n {\n var response = await submit({ result: \"approved\" });\n if (response === \"SUCCESS\") {\n confirmReview();\n } else if (response) {\n reviewError(response);\n }\n }}\n >\n APPROVE\n \n \n )}\n
\n
\n
\n {isLoading ? (\n
\n \n

Loading...

\n
\n ) : isFinished ? (\n
\n \n

\n Done reviewing! You can close this app now\n

\n
\n ) : item ? (\n wrapClass ? (\n
\n \n \n
\n ) : (\n <>\n \n \n \n )\n ) : (\n
\n
\n \n

\n Thanks for using the $ mephisto review interface.\n Here are a few ways to get started:\n

\n

\n 1. Review data from a .csv or{\" \"}\n .jsonl file\n

\n
\n                $ cat sample-data.json |\n                mephisto review review-app/build/{\" \"}\n                --json --stdout\n              
\n
\n                $ cat sample-data.csv |\n                mephisto review review-app/build/{\" \"}\n                --csv --stdout\n              
\n

2. Review data from the Mephisto database

\n
\n                $ mephisto review review-app/build/{\" \"}\n                --db mephisto_db_task_name{\" \"}\n                --stdout\n              
\n
\n
\n )}\n
\n \n );\n}\n\nexport default ItemView;\n","import React from \"react\";\nimport ReactDOM from \"react-dom\";\nimport { BrowserRouter as Router, Switch, Route } from \"react-router-dom\";\nimport CollectionView from \"./components/CollectionView\";\nimport ItemView from \"./components/ItemView\";\nimport \"normalize.css/normalize.css\";\nimport \"@blueprintjs/icons/lib/css/blueprint-icons.css\";\nimport \"@blueprintjs/core/lib/css/blueprint.css\";\nimport \"./index.css\";\n\nimport { GridCollection, JSONItem } from \"./renderers\";\n\nReactDOM.render(\n \n \n \n \n {/* For more information see the 'Customization' section of the README.md file. */}\n \n \n \n {/* For more information see the 'Customization' section of the README.md file. */}\n \n \n \n \n ,\n document.getElementById(\"root\")\n);\n"],"names":["module","exports","obj","__esModule","_react","require","_propTypes2","_interopRequireDefault","_gud2","default","_classCallCheck","instance","Constructor","TypeError","_possibleConstructorReturn","self","call","ReferenceError","_inherits","subClass","superClass","prototype","Object","create","constructor","value","enumerable","writable","configurable","setPrototypeOf","__proto__","MAX_SIGNED_31_BIT_INT","createEventEmitter","handlers","on","handler","push","off","filter","h","get","set","newValue","changedBits","forEach","defaultValue","calculateChangedBits","_Provider$childContex","_Consumer$contextType","contextProp","Provider","_Component","_temp","_this","this","_len","arguments","length","args","Array","_key","apply","concat","emitter","props","getChildContext","_ref","componentWillReceiveProps","nextProps","oldValue","x","y","render","children","Component","childContextTypes","object","isRequired","Consumer","_Component2","_temp2","_this2","_len2","_key2","state","getValue","onUpdate","observedBits","setState","undefined","componentDidMount","context","componentWillUnmount","isArray","contextTypes","_react2","_implementation2","createContext","GetIntrinsic","callBind","$indexOf","name","allowMissing","intrinsic","bind","$apply","$call","$reflectApply","$gOPD","$defineProperty","$max","e","originalFunction","func","desc","applyBind","hasOwn","hasOwnProperty","classNames","classes","i","arg","argType","inner","toString","key","join","objectKeys","isArguments","is","isRegex","flags","isDate","getTime","Date","deepEqual","actual","expected","options","opts","strict","a","b","isUndefinedOrNull","aIsRegex","bIsRegex","source","aIsBuffer","isBuffer","bIsBuffer","ka","kb","sort","objEquiv","copy","slice","keys","hasSymbols","Symbol","toStr","origDefineProperty","defineProperty","supportsDescriptors","_","arePropertyDescriptorsSupported","predicate","fn","defineProperties","map","predicates","getOwnPropertySymbols","element","className","classList","add","_hasClass","setAttribute","baseVal","contains","indexOf","replaceClassName","origClass","classToRemove","replace","RegExp","remove","window","createDocumentFragment","document","createElement","nodeName","enoughArguments","Error","mutationMacro","nodes","textNodeIfPrimitive","fragment","list","appendChild","node","createTextNode","head","property","TemporaryPrototype","TemporaryTokenList","wrapVerifyToken","hOP","descriptor","__defineGetter__","__defineSetter__","DOMTokenList","noClassName","getAttribute","isSVG","trim","properties","split","spaces","_isSVG","classListDescriptor","CLASS_LIST","toggle","token","force","DocumentFragmentPrototype","DocumentFragment","Node","NodePrototype","Element","CharacterData","CharacterDataPrototype","DocumentType","DocumentTypePrototype","ElementPrototype","HTMLElement","HTMLSelectElement","selectRemove","SVGElement","matchesSelector","webkitMatchesSelector","khtmlMatchesSelector","mozMatchesSelector","msMatchesSelector","oMatchesSelector","selector","parentNode","querySelectorAll","matches","firstChild","insertBefore","nextSibling","had","hasAttribute","removeAttribute","replaceWith","replaceChild","removeChild","_dom4","test","o_O","j","verifyToken","item","splice","documentElement","original","el","getElementsByTagName","raf","rAF","requestAnimationFrame","cAF","cancelAnimationFrame","prefixes","callback","goOn","id","setTimeout","clearTimeout","CustomEvent","eventName","defaultInitDict","initCustomEvent","type","bubbles","cancelable","detail","initEvent","eventInitDict","event","createEvent","Event","$Event","init","out","KeyboardEvent","$KeyboardEvent","eventType","initType","defaults","char","location","ctrlKey","shiftKey","altKey","metaKey","altGraphKey","repeat","locale","navigator","language","keyCode","charCode","which","initKeyboardEvent","keyIdentifier","keyLocation","getModifier","withDefaults","target","withInitValues","modifiers","String","chr","charCodeAt","view","initKeyEvent","MouseEvent","$MouseEvent","initMouseEvent","screenX","screenY","clientX","clientY","button","relatedTarget","patch","what","css","result","querySelector","dataScope","Math","random","proto","find","method","ELEMENT_NODE","$0","$1","$2","$3","global","DOMMap","WeakMap","counter","dispatched","drop","dispatch","ce","shouldDrop","dispatchEvent","Handler","__ce__","handleEvent","currentTarget","removeEventListener","v","addEventListener","Dict","createEventListener","eventListener","once","removed","passive","preventDefault","capture","augment","dE","aEL","rEL","increment","getListenerKey","dm","tmp","wrap","info","createAEL","createREL","EventTarget","Text","HTMLDocument","Window","XMLHttpRequest","ERROR_MESSAGE","funcType","that","bound","binder","boundLength","max","boundArgs","Function","Empty","implementation","$SyntaxError","SyntaxError","$Function","$TypeError","getEvalledConstructor","expressionSyntax","getOwnPropertyDescriptor","throwTypeError","ThrowTypeError","calleeThrows","gOPDthrows","getProto","getPrototypeOf","needsEval","TypedArray","Uint8Array","INTRINSICS","AggregateError","ArrayBuffer","iterator","Atomics","BigInt","Boolean","DataView","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","eval","EvalError","Float32Array","Float64Array","FinalizationRegistry","Int8Array","Int16Array","Int32Array","isFinite","isNaN","JSON","Map","Number","parseFloat","parseInt","Promise","Proxy","RangeError","Reflect","Set","SharedArrayBuffer","Uint8ClampedArray","Uint16Array","Uint32Array","URIError","WeakRef","WeakSet","doEval","gen","LEGACY_ALIASES","$concat","$spliceApply","$replace","$strSlice","rePropName","reEscapeChar","stringToPath","string","first","last","match","number","quote","subString","getBaseIntrinsic","alias","intrinsicName","parts","intrinsicBaseName","intrinsicRealName","skipFurtherCaching","isOwn","part","origSymbol","hasSymbolSham","sym","symObj","getOwnPropertyNames","syms","propertyIsEnumerable","toStringTag","reactIs","REACT_STATICS","contextType","defaultProps","displayName","getDefaultProps","getDerivedStateFromError","getDerivedStateFromProps","mixins","propTypes","KNOWN_STATICS","caller","callee","arity","MEMO_STATICS","compare","TYPE_STATICS","getStatics","component","isMemo","ForwardRef","Memo","objectPrototype","hoistNonReactStatics","targetComponent","sourceComponent","blacklist","inheritedComponent","targetStatics","sourceStatics","for","c","d","f","g","k","l","m","n","p","q","r","t","w","z","u","$$typeof","A","AsyncMode","ConcurrentMode","ContextConsumer","ContextProvider","Fragment","Lazy","Portal","Profiler","StrictMode","Suspense","isAsyncMode","isConcurrentMode","isContextConsumer","isContextProvider","isElement","isForwardRef","isFragment","isLazy","isPortal","isProfiler","isStrictMode","isSuspense","isValidElementType","typeOf","hasToStringTag","$toString","callBound","isStandardArguments","isLegacyArguments","supportsStandardArguments","getDay","tryDateObject","has","$exec","isRegexMarker","badStringifier","throwRegexMarker","valueOf","toPrimitive","gOPD","o","s","next","done","return","from","useMock","mock","useState","useEffect","fetch","catch","error","then","json","S","useCallback","body","stringify","isLoading","data","isFinished","finished","submit","resolve","taskId","page","resultsPerPage","filters","hostname","O","mark","prev","abrupt","stop","mode","totalPages","total_pages","propIsEnumerable","toObject","val","assign","test1","test2","fromCharCode","test3","letter","err","shouldUseNative","symbols","to","numberIsNaN","define","getPolyfill","shim","polyfill","keysShim","isArgs","isEnumerable","hasDontEnumBug","hasProtoEnumBug","dontEnums","equalsConstructorPrototype","ctor","excludedKeys","$applicationCache","$console","$external","$frame","$frameElement","$frames","$innerHeight","$innerWidth","$onmozfullscreenchange","$onmozfullscreenerror","$outerHeight","$outerWidth","$pageXOffset","$pageYOffset","$parent","$scrollLeft","$scrollTop","$scrollX","$scrollY","$self","$webkitIndexedDB","$webkitStorageInfo","$window","hasAutomationEqualityBug","isObject","isFunction","isString","theKeys","skipProto","skipConstructor","equalsConstructorPrototypeIfNotBuggy","origKeys","originalKeys","keysWorksWithArguments","str","ReactPropTypesSecret","emptyFunction","emptyFunctionWithReset","resetWarningCache","propName","componentName","propFullName","secret","getShim","ReactPropTypes","array","bigint","bool","symbol","any","arrayOf","elementType","instanceOf","objectOf","oneOf","oneOfType","shape","exact","checkPropTypes","PropTypes","aa","ba","ca","da","ea","fa","ha","ia","ja","B","acceptsBooleans","attributeName","attributeNamespace","mustUseProperty","propertyName","sanitizeURL","removeEmptyString","D","toLowerCase","oa","pa","toUpperCase","qa","ma","na","la","setAttributeNS","xlinkHref","ra","__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED","sa","ta","ua","wa","xa","ya","za","Aa","Ba","Ca","Da","Ea","Fa","Ga","Ha","Ia","Ja","E","Ma","Ka","La","Na","stack","Oa","Pa","prepareStackTrace","construct","Qa","tag","_render","Ra","_context","_payload","_init","Sa","Ta","Va","_valueTracker","setValue","stopTracking","Ua","Wa","checked","Xa","activeElement","Ya","defaultChecked","_wrapperState","initialChecked","Za","initialValue","controlled","$a","ab","bb","cb","ownerDocument","eb","Children","db","fb","selected","defaultSelected","disabled","gb","dangerouslySetInnerHTML","hb","ib","jb","textContent","lb","mb","nb","ob","namespaceURI","innerHTML","MSApp","execUnsafeLocalFunction","pb","lastChild","nodeType","nodeValue","qb","animationIterationCount","borderImageOutset","borderImageSlice","borderImageWidth","boxFlex","boxFlexGroup","boxOrdinalGroup","columnCount","columns","flex","flexGrow","flexPositive","flexShrink","flexNegative","flexOrder","gridArea","gridRow","gridRowEnd","gridRowSpan","gridRowStart","gridColumn","gridColumnEnd","gridColumnSpan","gridColumnStart","fontWeight","lineClamp","lineHeight","opacity","order","orphans","tabSize","widows","zIndex","zoom","fillOpacity","floodOpacity","stopOpacity","strokeDasharray","strokeDashoffset","strokeMiterlimit","strokeOpacity","strokeWidth","rb","sb","tb","style","setProperty","charAt","substring","ub","menuitem","area","base","br","col","embed","hr","img","input","keygen","link","meta","param","track","wbr","vb","wb","xb","srcElement","correspondingUseElement","yb","zb","Ab","Bb","Cb","stateNode","Db","Eb","Fb","Gb","Hb","Ib","Jb","Kb","Lb","Mb","Ob","Pb","Qb","Rb","onError","Sb","Tb","Ub","Vb","Wb","Xb","Zb","alternate","$b","memoizedState","dehydrated","ac","cc","child","sibling","current","bc","dc","ec","fc","gc","hc","ic","jc","kc","lc","mc","nc","oc","pc","qc","rc","blockedOn","domEventName","eventSystemFlags","nativeEvent","targetContainers","sc","delete","pointerId","tc","vc","wc","lanePriority","unstable_runWithPriority","priority","hydrate","containerInfo","xc","yc","shift","zc","Ac","Bc","unstable_scheduleCallback","unstable_NormalPriority","Cc","Dc","Ec","animationend","animationiteration","animationstart","transitionend","Fc","Gc","Hc","animation","transition","Ic","Jc","Kc","Lc","Mc","Nc","Oc","Pc","Qc","unstable_now","F","Rc","Uc","pendingLanes","expiredLanes","suspendedLanes","pingedLanes","Vc","entangledLanes","entanglements","Wc","Xc","Yc","Zc","$c","eventTimes","clz32","bd","cd","log","LN2","dd","unstable_UserBlockingPriority","ed","fd","gd","hd","uc","jd","kd","ld","md","nd","od","pd","qd","rd","_reactName","_targetInst","isDefaultPrevented","defaultPrevented","returnValue","isPropagationStopped","stopPropagation","cancelBubble","persist","isPersistent","wd","xd","yd","sd","eventPhase","timeStamp","now","isTrusted","td","ud","vd","Ad","pageX","pageY","getModifierState","zd","buttons","fromElement","toElement","movementX","movementY","Bd","Dd","dataTransfer","Fd","Hd","animationName","elapsedTime","pseudoElement","Id","clipboardData","Jd","Ld","Md","Esc","Spacebar","Left","Up","Right","Down","Del","Win","Menu","Apps","Scroll","MozPrintableKey","Nd","Od","Alt","Control","Meta","Shift","Pd","Qd","code","Rd","Td","width","height","pressure","tangentialPressure","tiltX","tiltY","twist","pointerType","isPrimary","Vd","touches","targetTouches","changedTouches","Xd","Yd","deltaX","wheelDeltaX","deltaY","wheelDeltaY","wheelDelta","deltaZ","deltaMode","Zd","$d","ae","be","documentMode","de","ee","fe","ge","he","ie","le","color","date","datetime","email","month","password","range","search","tel","text","time","url","week","me","ne","oe","listeners","pe","qe","re","se","te","ue","ve","we","xe","ye","ze","oninput","Ae","detachEvent","Be","Ce","attachEvent","De","Ee","Fe","He","Ie","Je","Ke","Le","offset","Me","compareDocumentPosition","Ne","HTMLIFrameElement","contentWindow","href","Oe","contentEditable","Pe","Qe","Re","Se","Te","Ue","start","selectionStart","end","selectionEnd","anchorNode","defaultView","getSelection","anchorOffset","focusNode","focusOffset","Ve","We","Xe","Ye","Ze","Yb","listener","G","$e","af","bf","cf","df","Nb","ef","ff","parentWindow","gf","hf","J","K","Q","L","je","ke","unshift","jf","kf","lf","mf","autoFocus","nf","__html","of","pf","qf","rf","sf","previousSibling","tf","vf","wf","xf","yf","zf","Af","Bf","H","I","Cf","M","N","Df","Ef","__reactInternalMemoizedUnmaskedChildContext","__reactInternalMemoizedMaskedChildContext","Ff","Gf","Hf","If","Jf","__reactInternalMemoizedMergedChildContext","Kf","Lf","Mf","Nf","Of","Pf","unstable_cancelCallback","Qf","unstable_shouldYield","Rf","unstable_requestPaint","Sf","Tf","unstable_getCurrentPriorityLevel","Uf","unstable_ImmediatePriority","Vf","Wf","Xf","unstable_LowPriority","Yf","unstable_IdlePriority","Zf","$f","ag","bg","cg","dg","eg","fg","gg","hg","ig","jg","kg","ReactCurrentBatchConfig","lg","mg","ng","og","pg","qg","rg","_currentValue","sg","childLanes","tg","dependencies","firstContext","lanes","ug","vg","responders","wg","xg","updateQueue","baseState","firstBaseUpdate","lastBaseUpdate","shared","pending","effects","yg","zg","eventTime","lane","payload","Ag","Bg","Cg","C","Dg","Eg","Fg","refs","Gg","Kg","isMounted","_reactInternals","enqueueSetState","Hg","Ig","Jg","enqueueReplaceState","enqueueForceUpdate","Lg","shouldComponentUpdate","isPureReactComponent","Mg","updater","Ng","UNSAFE_componentWillReceiveProps","Og","getSnapshotBeforeUpdate","UNSAFE_componentWillMount","componentWillMount","Pg","Qg","ref","_owner","_stringRef","Rg","Sg","lastEffect","nextEffect","firstEffect","index","Tg","Ug","Vg","Wg","Xg","Yg","Zg","$g","ah","bh","ch","dh","eh","tagName","fh","gh","hh","P","ih","memoizedProps","revealOrder","jh","kh","lh","mh","nh","oh","pendingProps","ph","qh","rh","sh","th","uh","_workInProgressVersionPrimary","vh","ReactCurrentDispatcher","wh","xh","R","T","yh","zh","Ah","Bh","Ch","Dh","Eh","Fh","Gh","Hh","baseQueue","queue","Ih","Jh","Kh","lastRenderedReducer","action","eagerReducer","eagerState","lastRenderedState","Lh","Mh","_getVersion","_source","mutableReadLanes","Nh","U","getSnapshot","subscribe","setSnapshot","Oh","Ph","Qh","Rh","destroy","deps","Sh","Th","Uh","Vh","Wh","Xh","Yh","Zh","$h","ai","bi","ci","di","readContext","useContext","useImperativeHandle","useLayoutEffect","useMemo","useReducer","useRef","useDebugValue","useDeferredValue","useTransition","useMutableSource","useOpaqueIdentifier","unstable_isNewReconciler","uf","ei","ReactCurrentOwner","fi","gi","hi","ii","ji","ki","li","mi","baseLanes","ni","oi","pi","UNSAFE_componentWillUpdate","componentWillUpdate","componentDidUpdate","qi","ri","pendingContext","Bi","Di","Ei","si","retryLane","ti","fallback","unstable_avoidThisFallback","ui","unstable_expectedLoadTime","vi","wi","xi","yi","zi","isBackwards","rendering","renderingStartTime","tail","tailMode","Ai","Fi","Gi","wasMultiple","multiple","onClick","onclick","size","createElementNS","V","Hi","Ii","W","Ji","Ki","Li","Mi","message","Ni","console","Oi","Pi","Qi","Ri","Si","componentDidCatch","Ti","componentStack","Ui","Vi","Wi","Xi","__reactInternalSnapshotBeforeUpdate","Yi","Zi","$i","focus","aj","display","bj","onCommitFiberUnmount","cj","dj","ej","fj","gj","hj","_reactRootContainer","ij","jj","kj","lj","mj","nj","ceil","oj","pj","X","Y","qj","rj","sj","tj","uj","vj","Infinity","wj","ck","Z","xj","yj","zj","Aj","Bj","Cj","Dj","Ej","Fj","Gj","Hj","Ij","Jj","Sc","Kj","Lj","Mj","callbackNode","expirationTimes","callbackPriority","Tc","Nj","Oj","Pj","Qj","Rj","Sj","Tj","finishedWork","finishedLanes","Uj","timeoutHandle","Wj","Xj","pingCache","Yj","Zj","va","ak","bk","dk","rangeCount","focusedElem","selectionRange","ek","min","extend","createRange","setStart","removeAllRanges","addRange","setEnd","left","scrollLeft","top","scrollTop","onCommitFiberRoot","fk","gk","ik","isReactComponent","pendingChildren","jk","mutableSourceEagerHydrationData","kk","lk","mk","nk","ok","qk","hydrationOptions","mutableSources","_internalRoot","rk","tk","sk","uk","hk","_calculateChangedBits","unstable_observedBits","unmount","form","Vj","vk","Events","wk","findFiberByHostInstance","bundleType","version","rendererPackageName","xk","rendererConfig","overrideHookState","overrideHookStateDeletePath","overrideHookStateRenamePath","overrideProps","overridePropsDeletePath","overridePropsRenamePath","setSuspenseHandler","scheduleUpdate","currentDispatcherRef","findHostInstanceByFiber","findHostInstancesForRefresh","scheduleRefresh","scheduleRoot","setRefreshHandler","getCurrentFiber","__REACT_DEVTOOLS_GLOBAL_HOOK__","yk","isDisabled","supportsFiber","inject","createPortal","findDOMNode","flushSync","unmountComponentAtNode","unstable_batchedUpdates","unstable_createPortal","unstable_renderSubtreeIntoContainer","checkDCE","prevState","nextState","prevProps","__reactInternalSnapshotFlag","__reactInternalSnapshot","foundWillMountName","foundWillReceivePropsName","foundWillUpdateName","newApiName","maybeSnapshot","snapshot","__suppressDeprecationWarning","arr","isarray","pathToRegexp","parse","compile","tokensToFunction","tokensToRegExp","PATH_REGEXP","res","tokens","path","defaultDelimiter","delimiter","exec","escaped","prefix","group","modifier","asterisk","partial","optional","pattern","escapeGroup","escapeString","substr","encodeURIComponentPretty","encode","pretty","segment","attachKeys","sensitive","route","endsWithDelimiter","groups","regexpToRegexp","arrayToRegexp","stringToRegexp","newObj","_interopRequireWildcard","_addClass","_removeClass","_Transition","_extends","addClass","removeClass","CSSTransition","_React$Component","onEnter","appearing","getClassNames","removeClasses","onEntering","activeClassName","reflowAndAddClass","onEntered","appearClassName","doneClassName","enterClassName","onExit","onExiting","onExited","isStringClassNames","_proto","_this$getClassNames6","_default","_reactDom","_TransitionGroup","ReplaceTransition","_args","handleEnter","handleLifecycle","handleEntering","_len3","_key3","handleEntered","_len4","_key4","handleExit","_len5","_key5","handleExiting","_len6","_key6","handleExited","_len7","_key7","idx","originalArgs","_child$props","toArray","_this$props","inProp","in","excluded","sourceKeys","_objectWithoutPropertiesLoose","_React$Children$toArr","second","cloneElement","EXITING","ENTERED","ENTERING","EXITED","UNMOUNTED","_reactLifecyclesCompat","Transition","initialStatus","parentGroup","transitionGroup","appear","isMounting","enter","appearStatus","unmountOnExit","mountOnEnter","status","nextCallback","updateStatus","nextStatus","cancelNextCallback","getTimeouts","exit","timeout","mounting","performEnter","performExit","timeouts","enterTimeout","safeSetState","onTransitionEnd","_this3","cancel","setNextCallback","_this4","active","doesNotHaveTimeoutOrListener","addEndListener","childProps","only","noop","_propTypes","_ChildMapping","_assertThisInitialized","values","TransitionGroup","firstRender","appeared","mounted","prevChildMapping","getInitialChildMapping","getNextChildMapping","currentChildMapping","getChildMapping","childFactory","_CSSTransition","_ReplaceTransition","mergeChildMappings","getProp","nextChildMapping","isValidElement","hasPrev","hasNext","prevChild","isLeaving","mapFn","mapper","getValueForKey","nextKeysPending","pendingKeys","prevKey","childMapping","nextKey","pendingNextKey","prop","classNamesShape","timeoutsShape","__self","__source","jsx","jsxs","forceUpdate","escape","_status","_result","IsSomeRendererActing","count","PureComponent","_currentValue2","_threadCount","createFactory","createRef","forwardRef","lazy","memo","runtime","Op","$Symbol","iteratorSymbol","asyncIteratorSymbol","asyncIterator","toStringTagSymbol","innerFn","outerFn","tryLocsList","protoGenerator","Generator","generator","Context","_invoke","GenStateSuspendedStart","GenStateExecuting","GenStateCompleted","doneResult","delegate","delegateResult","maybeInvokeDelegate","ContinueSentinel","sent","_sent","dispatchException","record","tryCatch","GenStateSuspendedYield","makeInvokeMethod","GeneratorFunction","GeneratorFunctionPrototype","IteratorPrototype","NativeIteratorPrototype","Gp","defineIteratorMethods","AsyncIterator","PromiseImpl","invoke","reject","__await","unwrapped","previousPromise","callInvokeWithMethodAndArg","resultName","nextLoc","pushTryEntry","locs","entry","tryLoc","catchLoc","finallyLoc","afterLoc","tryEntries","resetTryEntry","completion","reset","iterable","iteratorMethod","isGeneratorFunction","genFun","awrap","async","iter","reverse","pop","skipTempReset","rootRecord","rval","exception","handle","loc","caught","hasCatch","hasFinally","finallyEntry","complete","finish","thrown","delegateYield","regeneratorRuntime","accidentalStrictMode","globalThis","$Object","hasIndices","ignoreCase","multiline","dotAll","unicode","sticky","flagsBound","TypeErr","regex","performance","MessageChannel","unstable_forceFrameRate","floor","port2","port1","onmessage","postMessage","sortIndex","startTime","expirationTime","priorityLevel","unstable_Profiling","unstable_continueExecution","unstable_getFirstCallbackNode","unstable_next","unstable_pauseExecution","delay","unstable_wrapCallback","warning","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","__webpack_modules__","getter","definition","_setPrototypeOf","_inheritsLoose","isAbsolute","pathname","spliceOne","hasTrailingSlash","toParts","fromParts","isToAbs","isFromAbs","mustEndAbs","up","valueEqual","every","aValue","bValue","invariant","condition","addLeadingSlash","stripLeadingSlash","stripBasename","hasBasename","stripTrailingSlash","createPath","hash","createLocation","currentLocation","hashIndex","searchIndex","parsePath","resolvePathname","createTransitionManager","prompt","setPrompt","nextPrompt","confirmTransitionTo","getUserConfirmation","appendListener","isActive","notifyListeners","canUseDOM","getConfirmation","confirm","PopStateEvent","HashChangeEvent","getHistoryState","history","createBrowserHistory","globalHistory","canUseHistory","userAgent","supportsHistory","needsHashChangeListener","_props","_props$forceRefresh","forceRefresh","_props$getUserConfirm","_props$keyLength","keyLength","basename","getDOMLocation","historyState","_window$location","createKey","transitionManager","handlePopState","isExtraneousPopstateEvent","handlePop","handleHashChange","forceNextPop","fromLocation","toLocation","toIndex","allKeys","fromIndex","delta","go","revertPop","initialLocation","createHref","listenerCount","checkDOMListeners","isBlocked","pushState","prevIndex","nextKeys","replaceState","goBack","goForward","block","unblock","listen","unlisten","HashChangeEvent$1","HashPathCoders","hashbang","encodePath","decodePath","noslash","slash","stripHash","getHashPath","replaceHashPath","createHashHistory","_props$hashType","hashType","_HashPathCoders$hashT","ignorePath","encodedPath","prevLocation","allPaths","lastIndexOf","baseTag","pushHashPath","nextPaths","clamp","lowerBound","upperBound","createMemoryHistory","_props$initialEntries","initialEntries","_props$initialIndex","initialIndex","entries","nextIndex","nextEntries","canGo","commonjsGlobal","React","getUniqueId","_proto2","createNamedContext","historyContext","Router","_isMounted","_pendingLocation","staticContext","computeRootMatch","params","isExact","RouterContext","HistoryContext","Lifecycle","onMount","onUnmount","cache","cacheCount","generatePath","compilePath","Redirect","computedMatch","matchPath","reduce","matched","cacheKey","pathCache","regexp","Route","isEmptyChildren","createURL","staticHandler","methodName","Switch","BrowserRouter","createHistory","resolveToLocation","normalizeToLocation","forwardRefShim","LinkAnchor","forwardedRef","innerRef","navigate","rest","ex","isModifiedEvent","Link","isDuplicateNavigation","ariaCurrent","activeStyle","classNameProp","isActiveProp","locationProp","styleProp","escapedPath","classnames","joinClassnames","_arrayLikeToArray","len","arr2","_i","_s","_e","_arr","_n","_d","minLen","extendStatics","__extends","__","__assign","__rest","__decorate","decorators","decorate","__spreadArrays","il","jl","INVALID_PROPS","removeNonHTMLProps","invalidProps","shouldMerge","curr","setRef","refTarget","isRefCallback","refHandler","refTargetParent","refTargetKey","refProp","isKeyboardClick","Alignment","Elevation","Intent","NONE","PRIMARY","SUCCESS","WARNING","DANGER","Position","NS","process","_a","BLUEPRINT_NAMESPACE","_b","_c","REACT_APP_BLUEPRINT_NAMESPACE","ACTIVE","ALIGN_LEFT","ALIGN_RIGHT","DARK","DISABLED","FILL","FIXED_TOP","INTERACTIVE","LARGE","LOADING","MINIMAL","OUTLINED","ROUND","SMALL","VERTICAL","BLOCKQUOTE","positionClass","elevationClass","intentClass","CODE","CODE_BLOCK","HEADING","LIST","BUTTON","BUTTON_GROUP","BUTTON_SPINNER","BUTTON_TEXT","CARD","INPUT","INPUT_GROUP","INPUT_LEFT_CONTAINER","INPUT_ACTION","LABEL","NAVBAR","NAVBAR_GROUP","NAVBAR_HEADING","NAVBAR_DIVIDER","OVERLAY","OVERLAY_BACKDROP","OVERLAY_CONTENT","OVERLAY_INLINE","OVERLAY_OPEN","OVERLAY_START_FOCUS_TRAP","OVERLAY_END_FOCUS_TRAP","POPOVER","POPOVER_ARROW","POPOVER_BACKDROP","POPOVER_CAPTURING_DISMISS","POPOVER_CONTENT","POPOVER_DISMISS","POPOVER_DISMISS_OVERRIDE","POPOVER_OPEN","POPOVER_OUT_OF_BOUNDARIES","POPOVER_TARGET","POPOVER_WRAPPER","TRANSITION_CONTAINER","PORTAL","SPINNER","SPINNER_ANIMATION","SPINNER_HEAD","SPINNER_NO_SPIN","SPINNER_TRACK","TOAST","TOAST_CONTAINER","TOAST_MESSAGE","TOOLTIP","ICON","alignmentClass","alignment","elevation","intent","position","isNodeEnv","env","_super","timeoutIds","timeoutId","requestIds","requestId","validateProps","AbstractPureComponent2","_prevProps","_prevState","_snapshot","clearTimeouts","cancelAnimationFrames","isReactNodeEmpty","skipArray","ensureElement","isReactElement","isElementOfType","ComponentType","createReactRef","IconSize","IconSvgPaths16","IconSvgPaths20","SpinnerSize","Icon","icon","htmlTitle","iconSize","STANDARD","title","htmlprops","pixelGridSize","paths","renderSvgPaths","Classes","iconName","viewBox","fill","pathsSize","pathStrings","fillRule","DISPLAYNAME_PREFIX","PATH_LENGTH","Spinner","getSize","strokeOffset","ns","role","toFixed","getViewBox","pathLength","warn","radius","viewBoxX","viewBoxWidth","Keys","currentKeyDown","onKeyDown","buttonRef","click","onKeyUp","onBlur","AbstractButton","alignText","large","loading","outlined","minimal","small","tabIndex","handleBlur","handleKeyDown","handleKeyUp","rightIcon","Utils","elementRef","Button","handleRef","getCommonButtonProps","renderChildren","AnchorButton","commonProps","Card","interactive","htmlProps","hasPendingUpdate","isComposing","nextValue","onCompositionStart","onCompositionEnd","onChange","AsyncControllableInput","inputRef","restProps","handleCompositionStart","handleCompositionEnd","handleChange","leftElement","rightElement","InputGroup","asyncControl","round","inputGroupClasses","paddingLeft","leftElementWidth","paddingRight","rightElementWidth","inputProps","maybeRenderLeftElement","maybeRenderRightElement","updateInputWidth","leftIcon","refHandlers","clientWidth","abs","htmlElement","tagClassName","H6","NavbarDivider","NavbarGroup","align","NavbarHeading","Navbar","fixedToTop","cannotCreatePortal","ReactDOM","REACT_CONTEXT_TYPES","blueprintPortalClassName","hasMounted","portalElement","container","createContainerElement","onChildrenMount","unstableRenderNoPortal","maybeAddClass","hasEverOpened","isOpen","containerElement","endFocusTrap","endFocusTrapElement","startFocusTrap","startFocusTrapElement","decoratedChild","onOpening","onOpened","onClosing","transitionDuration","transitionName","CSSTransitionImplicit","handleTransitionExited","handleTransitionAddEnd","enforceFocus","isAutoFocusing","preventScroll","lastFocusableElement","getKeyboardFocusableElements","firstFocusableElement","shouldReturnFocusOnClose","lastActiveElementBeforeOpened","onClosed","backdropProps","canOutsideClickClose","onClose","bringFocusInsideOverlay","onMouseDown","eventTarget","composed","composedPath","stackIndex","Overlay_1","openStack","isClickInThisOverlayOrDescendant","some","elem","isSameNode","stopImmediatePropagation","canEscapeKeyClose","Overlay","usePortal","childrenWithTransitions","maybeRenderChild","maybeBackdrop","maybeRenderBackdrop","renderDummyElement","onFocus","handleStartFocusTrapElementFocus","handleStartFocusTrapElementKeyDown","handleEndFocusTrapElementFocus","containerClasses","portalClassName","portalContainer","overlayWillOpen","overlayWillClose","backdropClassName","hasBackdrop","handleBackdropMouseDown","handleDocumentFocus","handleDocumentClick","lastOpenedOverlay","getLastOpened","ButtonGroup","vertical","buttonGroupClasses","triggerDismiss","Toast","startTimeout","onMouseEnter","onMouseLeave","maybeRenderActionButton","handleCloseClick","handleActionClick","didTimeoutExpire","onDismiss","toasts","toast","getDismissHandler","timeoutExpired","dismiss","clear","Toaster","toaster","Toaster_1","maxToasts","dismissIfAtLimit","createToastOptions","isNewToastKey","matchesKey","getPositionClasses","canEscapeKeyClear","handleClose","renderToast","toastId","_defineProperty","ManagerReferenceNodeContext","ManagerReferenceNodeSetterContext","Manager","newReferenceNode","referenceNode","setReferenceNode","unwrapArray","safeInvoke","InnerReference","Reference","timeoutDuration","longerTimeoutBrowsers","isBrowser","called","scheduled","functionToCheck","getStyleComputedProperty","getComputedStyle","getParentNode","host","getScrollParent","overflow","overflowX","overflowY","getReferenceNode","reference","isIE11","MSInputMethodContext","isIE10","isIE","getOffsetParent","noOffsetParent","offsetParent","nextElementSibling","getRoot","findCommonOffsetParent","element1","element2","DOCUMENT_POSITION_FOLLOWING","commonAncestorContainer","firstElementChild","isOffsetContainer","element1root","getScroll","side","upperSide","html","scrollingElement","includeScroll","rect","subtract","bottom","right","getBordersSize","styles","axis","sideA","sideB","computedStyle","getWindowSizes","getClientRect","offsets","getBoundingClientRect","sizes","clientHeight","horizScrollbar","offsetWidth","vertScrollbar","offsetHeight","getOffsetRectRelativeToArbitraryNode","parent","fixedPosition","runIsIE","isHTML","childrenRect","parentRect","scrollParent","borderTopWidth","borderLeftWidth","marginTop","marginLeft","getViewportOffsetRectRelativeToArtbitraryNode","excludeScroll","relativeOffset","innerWidth","innerHeight","isFixed","getFixedPositionOffsetParent","parentElement","getBoundaries","popper","padding","boundariesElement","boundaries","boundariesNode","isPaddingNumber","getArea","computeAutoPlacement","placement","refRect","rects","sortedAreas","filteredAreas","computedPlacement","variation","getReferenceOffsets","commonOffsetParent","getOuterSizes","marginBottom","marginRight","getOppositePlacement","getPopperOffsets","referenceOffsets","popperRect","popperOffsets","isHoriz","mainSide","secondarySide","measurement","secondaryMeasurement","check","runModifiers","ends","findIndex","cur","enabled","update","isDestroyed","positionFixed","flip","originalPlacement","isCreated","onCreate","isModifierEnabled","modifierName","getSupportedPropertyName","upperProp","toCheck","willChange","disableEventListeners","removeOnDestroy","getWindow","attachToScrollParents","scrollParents","isBody","setupEventListeners","updateBound","scrollElement","eventsEnabled","enableEventListeners","isNumeric","setStyles","unit","isFirefox","isModifierRequired","requestingName","requestedName","requesting","requested","validPlacements","placements","clockwise","BEHAVIORS","parseOffset","basePlacement","useHeight","fragments","frag","divider","splitRegex","ops","op","mergeWithPrevious","toValue","index2","shiftvariation","isVertical","shiftOffsets","transformProp","popperStyles","transform","escapeWithReference","opSide","arrowElement","sideCapitalized","altSide","arrowElementSize","center","popperMarginSide","popperBorderSide","sideValue","arrow","_data$offsets$arrow","flipped","placementOpposite","flipOrder","behavior","step","refOffsets","overlapsRef","overflowsLeft","overflowsRight","overflowsTop","overflowsBottom","overflowsBoundaries","flippedVariationByRef","flipVariations","flippedVariationByContent","flipVariationsByContent","flippedVariation","getOppositeVariation","subtractLength","hide","attributes","legacyGpuAccelerationOption","gpuAcceleration","offsetParentRect","shouldRound","noRound","referenceWidth","popperWidth","isVariation","horizontalToInteger","verticalToInteger","getRoundedOffsets","devicePixelRatio","prefixedProperty","invertTop","invertLeft","arrowStyles","modifierOptions","Popper","debounce","Defaults","jquery","onLoad","PopperUtils","initialStyle","pointerEvents","initialArrowStyle","InnerPopper","popperNode","updatePopperInstance","arrowNode","applyStyle","updateStateModifier","popperInstance","destroyPopperInstance","referenceElement","PopperJS","getOptions","setPopperNode","getPopperStyle","getPopperPlacement","outOfBoundaries","getOutOfBoundariesState","arrowProps","setArrowNode","getArrowStyle","elementIsOrContains","testElement","MapShim","getIndex","class_1","__entries__","ctx","global$1","requestAnimationFrame$1","transitionKeys","mutationObserverSupported","MutationObserver","ResizeObserverController","connected_","mutationEventsAdded_","mutationsObserver_","observers_","onTransitionEnd_","refresh","leadingCall","trailingCall","lastCallTime","resolvePending","proxy","timeoutCallback","throttle","addObserver","observer","connect_","removeObserver","observers","disconnect_","updateObservers_","activeObservers","gatherActive","hasActive","broadcastActive","observe","childList","characterData","subtree","disconnect","isReflowProperty","getInstance","instance_","defineConfigurable","getWindowOf","emptyRect","createRectInit","toFloat","positions","getHTMLElementContentRect","paddings","positions_1","getPaddings","horizPad","vertPad","boxSizing","isDocumentElement","isSVGGraphicsElement","SVGGraphicsElement","getBBox","getContentRect","bbox","getSVGContentRect","ResizeObservation","broadcastWidth","broadcastHeight","contentRect_","broadcastRect","ResizeObserverEntry","rectInit","contentRect","Constr","DOMRectReadOnly","createReadOnlyRect","ResizeObserverSPI","controller","callbackCtx","activeObservations_","observations_","callback_","controller_","callbackCtx_","observations","unobserve","clearActive","observation","ResizeObserver","onResize","ResizeSensor","observeElement","observeParents","getElement","parent_1","getPosition","isVerticalPosition","getOppositePosition","getAlignment","getTransformOrigin","arrowSizeShift","arrowOffsetModifier","arrowSize","offsetSide","arrowOffsetSize","sqrt","getArrowAngle","PopoverArrow","positionToPlacement","assertNever","PopoverInteractionKind","hasDarkParent","getIsOpen","transformOrigin","popoverRef","targetElement","popperScheduleUpdate","popperProps","interactionKind","popoverHandlers","handlePopoverClick","handleMouseEnter","handleMouseLeave","popoverClasses","inheritDarkTheme","captureDismiss","popoverClassName","reposition","isArrowEnabled","understandChildren","content","referenceProps","openOnTargetFocus","targetClassName","targetProps","isControlled","isHoverInteractionKind","targetTagName","finalTargetProps","handleTargetBlur","handleTargetFocus","handleTargetClick","rawTarget","rawTabIndex","clonedTarget","Tooltip","lostFocusOnSamePage","isElementInPopover","isMouseInTargetOrPopover","setOpenState","hoverOpenDelay","hoverCloseDelay","eventPopover","closest","isEventFromSelf","isEventPopoverCapturing","dismissElement","shouldDismiss","Popover","wrapperTagName","isContentEmpty","wrapperClasses","defaultAutoFocus","wrapper","handleTargetRef","renderTarget","handleOverlayClose","handlePopoverRef","getPopperModifiers","renderPopover","updateDarkParent","popoverElement","nextIsOpen","onInteraction","childrenCount","hasContentProp","hasTargetProp","contentProp","targetProp","targetChild","contentChild","defaultIsOpen","boundary","preventOverflow","arrowOffset","updatePopoverState","cancelOpenTimeout","popover","JSONItem","cardWidth","setCardWidth","card","smallCard","GridCollection","items","itemRenderer","ItemRenderer","textDecoration","setPage","CELL_MID_LEN","MAX_CELLS","pages","ellipsis","isLeftArrowEnabled","isRightArrowEnabled","getPagination","DEFAULT","getHostname","config","protocol","origin","setHide","errorType","collectionRenderer","CollectionRenderer","pagination","setFilters","filtersBuffer","setFiltersBuffer","filterTimeout","setFilterTimeout","useMephistoReview","setFiltersAndResetPage","filtersStr","setFiltersImmediately","searchButton","placeholder","asyncGeneratorStep","_next","_throw","_asyncToGenerator","AppToaster","wrapClass","allowReview","useParams","confirmReview","show","reviewError","buttonDisable","hideReviewWorkflow","response","getElementById"],"sourceRoot":""} \ No newline at end of file diff --git a/mephisto/client/review/review_server.py b/mephisto/client/review/review_server.py deleted file mode 100644 index 0e3580f71..000000000 --- a/mephisto/client/review/review_server.py +++ /dev/null @@ -1,366 +0,0 @@ -#!/usr/bin/env python3 - -# Copyright (c) Meta Platforms and its affiliates. -# This source code is licensed under the MIT license found in the -# LICENSE file in the root directory of this source tree. - -from flask import Flask, Blueprint, send_file, jsonify, request # type: ignore -from datetime import datetime -from typing import Optional -import os -import atexit -import signal -import csv -import sys -import time -import threading -import urllib.parse -import collections -import math - - -def run( - build_dir, - port, - output, - csv_headers, - json=False, - database_task_name=None, - all_data=False, - debug=False, - assets_dir=None, - host: Optional[str] = None, -): - global index_file, app - global ready_for_next, current_data, finished, index_file - global counter - global all_data_list, datalist_update_time - - RESULTS_PER_PAGE_DEFAULT = 10 - TIMEOUT_IN_SECONDS = 300 - USE_TIMEOUT = True - MODE = "ALL" if all_data else "OBO" - RESULT_SUCCESS = "SUCCESS" - RESULT_ERROR = "ERROR" - - DataQueryResult = collections.namedtuple("DataQueryResult", ["data_list", "total_pages"]) - - if not debug or output == "": - # disable noisy logging of flask, https://stackoverflow.com/a/18379764 - import logging - - flask_log = logging.getLogger("werkzeug") - flask_log.disabled = True - flask_cli = sys.modules["flask.cli"] - flask_cli.show_server_banner = lambda *x: None - - app = Flask( - __name__, - root_path=os.getcwd(), - static_url_path="/static", - static_folder=build_dir + "/static", - ) - - if assets_dir: - assets_blueprint = Blueprint( - "additional_assets", - __name__, - static_url_path="/assets", - static_folder=assets_dir, - ) - app.register_blueprint(assets_blueprint) - - def json_reader(f): - import json - - for jsonline in f: - yield json.loads(jsonline) - - def mephistoDBReader(): - from mephisto.abstractions.databases.local_database import LocalMephistoDB - from mephisto.tools.data_browser import DataBrowser as MephistoDataBrowser - - db = LocalMephistoDB() - mephisto_data_browser = MephistoDataBrowser(db=db) - - units = mephisto_data_browser.get_units_for_task_name(database_task_name) - for unit in units: - yield mephisto_data_browser.get_data_from_unit(unit) - - def consume_data(): - """For use in "one-by-one" or default mode. Runs on a seperate thread to consume mephisto review data line by line and update global variables to temporarily store this data""" - global ready_for_next, current_data, finished, counter - - if database_task_name is not None: - data_source = mephistoDBReader() - elif json: - data_source = json_reader(iter(sys.stdin.readline, "")) - else: - data_source = csv.reader(iter(sys.stdin.readline, "")) - if csv_headers: - next(data_source) - - finished = False - counter = 0 - for row in data_source: - ready_for_next = threading.Event() - current_data = row - counter += 1 - ready_for_next.wait() - finished = True - - def consume_all_data(page, results_per_page=RESULTS_PER_PAGE_DEFAULT, filters=None): - """ - For use in "all" mode. - Returns: - A DataQueryResult type namedtuple consisting of a filtered list of all data or a page of all data - as well as the total pages of data available. - The list of data is stored in DataQueryResult.data_list. - The total number of pages is stored in DataQueryResult.total_pages. - Params: - page: 1 indexed page number integer - results_per_page: maximum number of results per page - filters: keywords or sentences to filter data for. must be a list - """ - global all_data_list, datalist_update_time - paginated = type(page) is int - if paginated: - assert page > 0, "Page number should be a positive 1 indexed integer." - assert ( - type(results_per_page) is int and results_per_page > 0 - ), "results_per_page should be a positive integer" - - first_index = (page - 1) * results_per_page if paginated else 0 - - if database_task_name is not None: - # If differnce in time since the last update to the data list is over 5 minutes, update list again - # This can only be done for usage with mephistoDB as standard input is exhausted when originally creating the list - now = datetime.now() - if USE_TIMEOUT and (now - datalist_update_time).total_seconds() > TIMEOUT_IN_SECONDS: - refresh_all_list_data() - - filtered_data_list = all_data_list - if type(filters) is list: - filtered_data_list = [ - item - for item in all_data_list - if all(word.lower() in str(item["data"]).lower() for word in filters) - ] - list_len = len(filtered_data_list) - total_pages = math.ceil(list_len / results_per_page) if paginated else 1 - - if paginated: - if first_index > list_len - 1: - filtered_data_list = [] - else: - results_per_page = min(first_index + results_per_page, list_len) - first_index - if results_per_page < 0: - filtered_data_list = [] - else: - filtered_data_list = filtered_data_list[ - first_index : first_index + results_per_page - ] - - return DataQueryResult(filtered_data_list, total_pages) - - def refresh_all_list_data(): - """For use in "all" mode. Refreshes all data list when the data source is mephistoDB, allowing for new entries in the db to be included in the review""" - global all_data_list, datalist_update_time - data_source = mephistoDBReader() - all_data_list = [] - count = 0 - for row in data_source: - all_data_list.append({"data": row, "id": count}) - count += 1 - datalist_update_time = datetime.now() - - @app.route("/data_for_current_task") - def data(): - """ - *** DEPRECATED *** - For use in "one-by-one" or default mode. - Based on global variables set by the consume_data method returns the piece of data currently being reviewed. - If there is no more data being reviewed the app is shut down. - """ - global current_data, finished - if all_data: - return jsonify( - { - "error": 'mephisto review is in all mode, please get data by sending a GET request to "/data/:id"' - } - ) - if finished: - func = request.environ.get("werkzeug.server.shutdown") - if func is None: - raise RuntimeError("Not running with the Werkzeug Server") - func() - - return jsonify({"finished": finished, "data": current_data if not finished else None}) - - @app.route("/submit_current_task", methods=["GET", "POST"]) - def next_task(): - """ - *** DEPRECATED *** - For use in "one-by-one" or default mode. - This route allows users to submit reviews for tasks. - All review data must be contained within the body of the request. - The review data is written directly to the output file specified in mephisto review. - """ - global current_data, ready_for_next, finished, counter - if all_data: - return jsonify( - { - "error": 'mephisto review is in all mode, please submit reviews by sending a POST request to "/data/:id"' - } - ) - result = ( - request.get_json(force=True) if request.method == "POST" else request.args.get("result") - ) - - if output == "": - print("{}".format(result)) - sys.stdout.flush() - else: - with open(output, "a+") as f: - f.write("{}\n".format(result)) - - ready_for_next.set() - time.sleep(0) - return jsonify({"finished": finished, "counter": counter}) - - @app.route("/data/", methods=["GET", "POST"]) - def task_data_by_id(id): - """ - This route takes a parameter of the id of an item being reviewed. - This id represents the index (beginning at 0) of the item in the list of items being reviewed. - If this route receives a GET request the data of the item at that position in the list of review items is returned. - If this route receives a POST request a review is written for the item at the given index based on the body of JSON in the request. - Accordingly for POST requests all review data must be in the JSON body of the request. - The JSON for the review is written directly into the output file specified for mephisto review. - """ - global finished, current_data, ready_for_next, counter, all_data_list - id = int(id) if type(id) is int or (type(id) is str and id.isdigit()) else None - if request.method == "GET": - if all_data: - list_len = len(all_data_list) - if id is None or id < 0 or id >= list_len: - return jsonify({"error": f"Data with ID: {id} does not exist", "mode": MODE}) - return jsonify({"data": all_data_list[id], "mode": MODE}) - else: - if id is None or id != counter - 1: - return jsonify( - { - "error": f"Please review the data point with ID: {counter - 1}", - "mode": MODE, - } - ) - data = { - "data": current_data if not finished else None, - "id": counter - 1, - } - if finished: - func = request.environ.get("werkzeug.server.shutdown") - if func is None: - raise RuntimeError("Not running with the Werkzeug Server") - func() - return jsonify( - { - "finished": finished, - "data": data, - "mode": MODE, - } - ) - else: - review = request.get_json(force=True) - if output == "": - print("ID: {}, REVIEW: {}".format(id, review)) - sys.stdout.flush() - else: - with open(output, "a+") as f: - f.write("ID: {}, REVIEW: {}\n".format(id, review)) - if not all_data: - ready_for_next.set() - time.sleep(0) - return jsonify({"result": RESULT_SUCCESS, "finished": finished, "mode": MODE}) - - @app.route("/data") - def all_task_data(): - """ - This route returns the list of all data being reviewed if the app is in "all" mode. - Otherwise this route returns the id and data of the item currently being reviewed in "one-by-one" or standard mode. - The id in the response refers to the index (beginning at 0) of the item being reviewed in the list of all items being reviewed. - Params: - page: 1 indexed page number for results - results_per_page: number of results to show per page, must be positive integer - filters: string representing keywords or senteces results must contain. - Filters must be comma separated and spaced must be denoted by '%20' - """ - global counter, current_data, all_data_list, finished - if all_data: - page = request.args.get("page", default=None, type=int) - results_per_page = request.args.get( - "results_per_page", default=RESULTS_PER_PAGE_DEFAULT, type=int - ) - filters_str = request.args.get("filters", default=None, type=str) - filters = None - if type(filters_str) is str: - filters_str = urllib.parse.unquote(filters_str) - filters = filters_str.split(",") - filters = [filt.strip() for filt in filters] - try: - data = consume_all_data(page, results_per_page, filters) - return jsonify( - { - "data": data.data_list, - "mode": MODE, - "total_pages": data.total_pages, - } - ) - except AssertionError as ae: - print(f"Error: {ae.args[0]}") - sys.stdout.flush() - return jsonify({"error": ae.args[0], "mode": MODE}) - else: - data = {"data": current_data if not finished else None, "id": counter - 1} - return jsonify({"data": data, "mode": MODE, "finished": finished}) - - @app.route("/", defaults={"id": None}) - @app.route("/") - def index(id): - global index_file - return send_file(build_dir + "/index.html") - - @app.after_request - def after_request(response): - response.headers.add("Access-Control-Allow-Origin", "*") - response.headers.add("Access-Control-Allow-Headers", "Content-Type,Authorization") - response.headers.add("Access-Control-Allow-Methods", "GET,PUT,POST,DELETE,OPTIONS") - response.headers.add("Cache-Control", "no-store") - return response - - if all_data: - # if reading all data points, all data is loaded into memory before the app starts - if database_task_name is not None: - data_source = mephistoDBReader() - elif json: - data_source = json_reader(iter(sys.stdin.readline, "")) - else: - data_source = csv.reader(iter(sys.stdin.readline, "")) - if csv_headers: - next(data_source) - - all_data_list = [] - count = 0 - for row in data_source: - all_data_list.append({"data": row, "id": count}) - count += 1 - datalist_update_time = datetime.now() - finished = False - else: - thread = threading.Thread(target=consume_data, name="review-server-thread") - thread.start() - - host = host or "127.0.0.1" - print(f"Running on http://{host}:{port}/ (Press CTRL+C to quit)") - sys.stdout.flush() - app.run(debug=False, port=port, host=host) diff --git a/mephisto/client/review_app/README.md b/mephisto/client/review_app/README.md index 893621858..1ce2d2f8a 100644 --- a/mephisto/client/review_app/README.md +++ b/mephisto/client/review_app/README.md @@ -55,11 +55,11 @@ _The "review" version will be shown to reviewer inside an iframe, while "regular 1. Create `review_app` subdirectory of your app, next to the main `app` subdirectory. Its content should include: - Main JS file `review.js` for ReviewApp - - Example: [review.js](../../../examples/remote_procedure/mnist_for_review/webapp/src/review.js) + - Example: [review.js](../../../examples/remote_procedure/mnist/webapp/src/review.js) - ReviewApp `reviewapp.jsx` - - Example: [reviewapp.jsx](../../../examples/remote_procedure/mnist_for_review/webapp/src/reviewapp.jsx) + - Example: [reviewapp.jsx](../../../examples/remote_procedure/mnist/webapp/src/reviewapp.jsx) - Separate Webpack config `webpack.config.review.js` - - Example: [webpack.config.review.js](../../../examples/remote_procedure/mnist_for_review/webapp/webpack.config.review.js) + - Example: [webpack.config.review.js](../../../examples/remote_procedure/mnist/webapp/webpack.config.review.js) 2. Specify in your Hydra YAML, under mephisto.blueprint section: ```json @@ -70,15 +70,15 @@ task_source_review: ${task_dir}/webapp/build/bundle.review.js ```json "build:review": "webpack --config=webpack.config.review.js --mode development" ``` -Example: [package.json](../../../examples/remote_procedure/mnist_for_review/webapp/package.json) +Example: [package.json](../../../examples/remote_procedure/mnist/webapp/package.json) 4. Build this "review" bundle by running `npm run build:review` from directory with `package.json`. 5. This `reviewapp.jsx` must satisfy 3 requirements, to interface with TaskReview: - Render "review" task version only upon receiving messages with Task data: - - Example: comment #1 in [reviewapp.jsx](../../../examples/remote_procedure/mnist_for_review/webapp/src/reviewapp.jsx) + - Example: comment #1 in [reviewapp.jsx](../../../examples/remote_procedure/mnist/webapp/src/reviewapp.jsx) - Send messages with displayed "review" page height (to resize containing iframe and avoid scrollbars) - - Example: comment #2 in [reviewapp.jsx](../../../examples/remote_procedure/mnist_for_review/webapp/src/reviewapp.jsx) + - Example: comment #2 in [reviewapp.jsx](../../../examples/remote_procedure/mnist/webapp/src/reviewapp.jsx) `
` - Rendered component must always return reference to `appRef`, like so `
` - - Example: comment #3 in [reviewapp.jsx](../../../examples/remote_procedure/mnist_for_review/webapp/src/reviewapp.jsx) + - Example: comment #3 in [reviewapp.jsx](../../../examples/remote_procedure/mnist/webapp/src/reviewapp.jsx) diff --git a/mephisto/client/review_app/server/api/views/home_view.py b/mephisto/client/review_app/server/api/views/home_view.py index 2fee1ca65..a27141d61 100644 --- a/mephisto/client/review_app/server/api/views/home_view.py +++ b/mephisto/client/review_app/server/api/views/home_view.py @@ -23,7 +23,7 @@ class HomeView(MethodView): def get(self, path: Optional[str] = None, *args, **kwargs) -> Union[Response, dict]: """Return client 'index.html'""" if request.path == "/": - return redirect(url_for('client-tasks', path='tasks'), code=302) + return redirect(url_for("client-tasks", path="tasks"), code=302) ui_html_file_path = os.path.join( Path(__file__).resolve().parent.parent.parent.parent, diff --git a/test/core/test_operator.py b/test/core/test_operator.py index 846ddf8eb..cf425ceb1 100644 --- a/test/core/test_operator.py +++ b/test/core/test_operator.py @@ -70,19 +70,19 @@ def tearDown(self): SHUTDOWN_TIMEOUT = 10 threads = threading.enumerate() target_threads = [ - t for t in threads if - not isinstance(t, TMonitor) and - not t.daemon and - not t.name.startswith("asyncio_") + t + for t in threads + if not isinstance(t, TMonitor) and not t.daemon and not t.name.startswith("asyncio_") ] start_time = time.time() while len(target_threads) > 1 and time.time() - start_time < SHUTDOWN_TIMEOUT: threads = threading.enumerate() target_threads = [ - t for t in threads if - not isinstance(t, TMonitor) and - not t.daemon and - not t.name.startswith("asyncio_") + t + for t in threads if + not isinstance(t, TMonitor) + and not t.daemon + and not t.name.startswith("asyncio_") ] time.sleep(0.3) self.assertTrue(