From a160d31953f4aaa1f41a0e45bdd2d271a6310cf0 Mon Sep 17 00:00:00 2001 From: Marco Mooij | DigiState Date: Wed, 13 May 2026 09:56:43 +0200 Subject: [PATCH] v1.2 initial commit --- .gitignore | 2 + API/Getting Started.md | 19 + .../servers/POST Create or update server.md | 149 + .../inserve/GET Sync cloud distributor.md | 44 + API/v1/sources/inserve/GET Sync companies.md | 44 + .../inserve/GET Sync server licenses.md | 44 + .../inserve/GET Sync server subscriptions.md | 44 + Portal Management/Sources/Inserve.md | 123 + Release notes.md | 44 + assets/images/favicon.png | Bin 0 -> 1870 bytes assets/images/favicon.svg | 3 + assets/images/logo.png | Bin 0 -> 252514 bytes assets/javascripts/bundle.79ae519e.min.js | 16 + assets/javascripts/bundle.79ae519e.min.js.map | 7 + assets/javascripts/lunr/min/lunr.ar.min.js | 1 + assets/javascripts/lunr/min/lunr.da.min.js | 18 + assets/javascripts/lunr/min/lunr.de.min.js | 18 + assets/javascripts/lunr/min/lunr.du.min.js | 18 + assets/javascripts/lunr/min/lunr.el.min.js | 1 + assets/javascripts/lunr/min/lunr.es.min.js | 18 + assets/javascripts/lunr/min/lunr.fi.min.js | 18 + assets/javascripts/lunr/min/lunr.fr.min.js | 18 + assets/javascripts/lunr/min/lunr.he.min.js | 1 + assets/javascripts/lunr/min/lunr.hi.min.js | 1 + assets/javascripts/lunr/min/lunr.hu.min.js | 18 + assets/javascripts/lunr/min/lunr.hy.min.js | 1 + assets/javascripts/lunr/min/lunr.it.min.js | 18 + assets/javascripts/lunr/min/lunr.ja.min.js | 1 + assets/javascripts/lunr/min/lunr.jp.min.js | 1 + assets/javascripts/lunr/min/lunr.kn.min.js | 1 + assets/javascripts/lunr/min/lunr.ko.min.js | 1 + assets/javascripts/lunr/min/lunr.multi.min.js | 1 + assets/javascripts/lunr/min/lunr.nl.min.js | 18 + assets/javascripts/lunr/min/lunr.no.min.js | 18 + assets/javascripts/lunr/min/lunr.pt.min.js | 18 + assets/javascripts/lunr/min/lunr.ro.min.js | 18 + assets/javascripts/lunr/min/lunr.ru.min.js | 18 + assets/javascripts/lunr/min/lunr.sa.min.js | 1 + .../lunr/min/lunr.stemmer.support.min.js | 1 + assets/javascripts/lunr/min/lunr.sv.min.js | 18 + assets/javascripts/lunr/min/lunr.ta.min.js | 1 + assets/javascripts/lunr/min/lunr.te.min.js | 1 + assets/javascripts/lunr/min/lunr.th.min.js | 1 + assets/javascripts/lunr/min/lunr.tr.min.js | 18 + assets/javascripts/lunr/min/lunr.vi.min.js | 1 + assets/javascripts/lunr/min/lunr.zh.min.js | 1 + assets/javascripts/lunr/tinyseg.js | 206 + assets/javascripts/lunr/wordcut.js | 6708 +++++++++++++++++ .../workers/search.2c215733.min.js | 42 + .../workers/search.2c215733.min.js.map | 7 + assets/stylesheets/main.484c7ddc.min.css | 1 + assets/stylesheets/main.484c7ddc.min.css.map | 1 + assets/stylesheets/obsidian.min.css | 2 + assets/stylesheets/obsidian.min.css.map | 1 + assets/stylesheets/palette.ab4e12ef.min.css | 1 + .../stylesheets/palette.ab4e12ef.min.css.map | 1 + index.md | 8 + stylesheets/extra.css | 215 + 58 files changed, 8019 insertions(+) create mode 100644 .gitignore create mode 100644 API/Getting Started.md create mode 100644 API/v1/servers/POST Create or update server.md create mode 100644 API/v1/sources/inserve/GET Sync cloud distributor.md create mode 100644 API/v1/sources/inserve/GET Sync companies.md create mode 100644 API/v1/sources/inserve/GET Sync server licenses.md create mode 100644 API/v1/sources/inserve/GET Sync server subscriptions.md create mode 100644 Portal Management/Sources/Inserve.md create mode 100644 Release notes.md create mode 100644 assets/images/favicon.png create mode 100644 assets/images/favicon.svg create mode 100644 assets/images/logo.png create mode 100644 assets/javascripts/bundle.79ae519e.min.js create mode 100644 assets/javascripts/bundle.79ae519e.min.js.map create mode 100644 assets/javascripts/lunr/min/lunr.ar.min.js create mode 100644 assets/javascripts/lunr/min/lunr.da.min.js create mode 100644 assets/javascripts/lunr/min/lunr.de.min.js create mode 100644 assets/javascripts/lunr/min/lunr.du.min.js create mode 100644 assets/javascripts/lunr/min/lunr.el.min.js create mode 100644 assets/javascripts/lunr/min/lunr.es.min.js create mode 100644 assets/javascripts/lunr/min/lunr.fi.min.js create mode 100644 assets/javascripts/lunr/min/lunr.fr.min.js create mode 100644 assets/javascripts/lunr/min/lunr.he.min.js create mode 100644 assets/javascripts/lunr/min/lunr.hi.min.js create mode 100644 assets/javascripts/lunr/min/lunr.hu.min.js create mode 100644 assets/javascripts/lunr/min/lunr.hy.min.js create mode 100644 assets/javascripts/lunr/min/lunr.it.min.js create mode 100644 assets/javascripts/lunr/min/lunr.ja.min.js create mode 100644 assets/javascripts/lunr/min/lunr.jp.min.js create mode 100644 assets/javascripts/lunr/min/lunr.kn.min.js create mode 100644 assets/javascripts/lunr/min/lunr.ko.min.js create mode 100644 assets/javascripts/lunr/min/lunr.multi.min.js create mode 100644 assets/javascripts/lunr/min/lunr.nl.min.js create mode 100644 assets/javascripts/lunr/min/lunr.no.min.js create mode 100644 assets/javascripts/lunr/min/lunr.pt.min.js create mode 100644 assets/javascripts/lunr/min/lunr.ro.min.js create mode 100644 assets/javascripts/lunr/min/lunr.ru.min.js create mode 100644 assets/javascripts/lunr/min/lunr.sa.min.js create mode 100644 assets/javascripts/lunr/min/lunr.stemmer.support.min.js create mode 100644 assets/javascripts/lunr/min/lunr.sv.min.js create mode 100644 assets/javascripts/lunr/min/lunr.ta.min.js create mode 100644 assets/javascripts/lunr/min/lunr.te.min.js create mode 100644 assets/javascripts/lunr/min/lunr.th.min.js create mode 100644 assets/javascripts/lunr/min/lunr.tr.min.js create mode 100644 assets/javascripts/lunr/min/lunr.vi.min.js create mode 100644 assets/javascripts/lunr/min/lunr.zh.min.js create mode 100644 assets/javascripts/lunr/tinyseg.js create mode 100644 assets/javascripts/lunr/wordcut.js create mode 100644 assets/javascripts/workers/search.2c215733.min.js create mode 100644 assets/javascripts/workers/search.2c215733.min.js.map create mode 100644 assets/stylesheets/main.484c7ddc.min.css create mode 100644 assets/stylesheets/main.484c7ddc.min.css.map create mode 100644 assets/stylesheets/obsidian.min.css create mode 100644 assets/stylesheets/obsidian.min.css.map create mode 100644 assets/stylesheets/palette.ab4e12ef.min.css create mode 100644 assets/stylesheets/palette.ab4e12ef.min.css.map create mode 100644 index.md create mode 100644 stylesheets/extra.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a658e8e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.obsidian/* +.trash/* diff --git a/API/Getting Started.md b/API/Getting Started.md new file mode 100644 index 0000000..eb36438 --- /dev/null +++ b/API/Getting Started.md @@ -0,0 +1,19 @@ +This document will explain how to get started with the Sentri API. +## Requirements +To connect to the Sentri API, you will need the following: +- A basic understanding of how APIs work, along with some programming or scripting experience. +- The Sentri base URL. +- An API bearer token. +- Network access from the devices making API requests to the Sentri service on port 443. +## Creating a authentication bearer token +Make sure you have the `user-apitoken-self` read/write permission, as this allows you to create an authentication bearer token. + +Once logged in, go to your profile at `/userprofile` and click Generate API Token. +A token will be displayed, as shown below. This token will be used as the authentication bearer token, so make sure to copy it as it will only be shown once. +``` +c8aaf11d-e10e-11f0-9b16-00155d00153f.83f0383262a4875f6c6d4bb5aa8577818ca7f71cb2ba80b9e9b9cb43f5b86831 +``` +## Trouble shooting +When you encounter a problem with the API, you will most likely receive an HTTP status code in the response. This code can help indicate the nature of the issue. +### Response codes +These are some of the response codes you may receive when making a call to the API: diff --git a/API/v1/servers/POST Create or update server.md b/API/v1/servers/POST Create or update server.md new file mode 100644 index 0000000..6271bd2 --- /dev/null +++ b/API/v1/servers/POST Create or update server.md @@ -0,0 +1,149 @@ +This API call creates a server or updates it with the given information. + +#### Location +``` +/api/v1/servers/ +``` + +#### Permissions required +`servers` RW + +#### Body parameters +| Parameter | Type | Required | Description | +| -------------------- | ------------------------------------------------------ | -------- | ----------------------------------------- | +| server_vm_host_id | string | yes | Unique id of the vm | +| server_vm_host_name | string | no | Name of the vm | +| company_uuid | string | no | Company_uuid from companies | +| server_power_state | enum ['Running', 'Off'] | no | If the vm is on or off | +| server_state | enum ['new', 'active', 'deleted', 'trial', 'disabled'] | no | Server state. 'new' is the default | +| server_hostname | string | no | Hostname of the server | +| server_os | string | no | Server operating system | +| server_cpu | int | no | Amount of cpu used by the server | +| server_memory | int | no | Amount of memory used by the server in MB | +| server_memory_demand | int | no | Amount memory demand by the server in MB | +| server_disks | array | no | Array of the servers disks | +| server_ipv4 | array | no | Array of the ipv4 addresses in a list | +| server_ipv6 | json | no | Array of the ipv6 addresses in a list | +| server_vm_generation | int | no | VM machine generation or version | +| server_vm_snapshot | int | no | Amount of snapshots made of the vm | +| server_licenses | json | no | Array of the server licenses | +| server_backup | json | no | Array of the server backups | +| server_description | string | no | description of the server | +>[!note] +> If the current `server_state` is _new_ and the posted `server_state` is _deleted_, the server will be permanently deleted. Otherwise, if the current state is not _new_, the `server_state` will simply be updated to _deleted_ without permanent removal." + +#### server_disks parameters + +| Parameter | Type | Required | Description | +| ------------- | ------ | -------- | -------------------------------------------------------------------------------------------- | +| disk_name | string | yes | Name of the disk | +| disk_space | float | yes | The file space of the vhd that is reserved. | +| disk_used | float | yes | the real space used on the server for the vhd file. Can be used for dynamically sized disks. | +| disk_location | string | yes | The real location of the vhd file. | + +#### server_licenses parameters +When posting `server_licenses`, you must include a prefix before each license name. Use **+** to +add or register a license, and **-** to ensure the license is not registered in Sentri. This ensures that +any license a server no longer has is automatically removed from Sentri. + +| Parameter | Type | Required | Description | +| -------------- | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ | +| *license name* | string | yes | Name of a license | +| *license type* | string | yes | Type the license like, **super-plus** or **plus**. If this is not applicable, name it the same as the license name | + +#### server_backup parameters +When posting `server_backup`, you must include a prefix before each backup name. Use **+** to +add or register a backup, and **-** to ensure the backup is not registered in Sentri. This ensures that +any backup a server no longer has is automatically removed from Sentri. + +| Parameter | Type | Required | Description | +| ------------- | ------ | -------- | ------------------------------------------------------------------- | +| *backup name* | string | yes | Name of the backup | +| *backup type* | string | yes | Type of the backup. You can put here yes or the type of the backup. | + +### Example Body (json) +```json +{ + "server_vm_id": "00155d001d3f", + "server_vm_host_name": "web01.test.example.nl", + "server_power_state": "Running", + "server_state": "new", + "server_hostname": "web01.test.example.nl", + "server_os": "AlmaLinux 10.1", + "server_cpu": 1, + "server_memory": 2048, + "server_memory_demand": 1267, + "server_disks": [ + { + "disk_name": "server_datadisk.vhdx", + "disk_space": "150", + "disk_used": "140.5", + "disk_location": "C:\\ClusterStorage\\vol07\\web01.test\\VHD\\" + } + ], + "server_ipv4": [ + "123.12.34.113", + "123.12.34.134" + ], + "server_ipv6": [ + "2a01:4c66:4:2:44::1", + "2a01:4c66:4:2:45::2" + ], + "server_vm_generation": 2, + "server_vm_snapshot": 1, + "server_licenses": [ + { "+directadmin": "Discounted Standard" }, + { "+cpguard": "cpguard" }, + { "-installatron": "none" } + ], + "server_backup": [ + { "+borg": "yes" } + ], + "server_description": "test web server" +} +``` + +#### Multiple servers +It is possible to post multiple servers in one request. Put the different servers in an array like below: +```json +{ + "servers": [ + { + "server_vm_id": "00155d001d3d", + "server_vm_host_name": "web01.test.example.nl" + }, + { + "server_vm_id": "00155d001d3f", + "server_vm_host_name": "web02.test.example.nl" + } + ] +} +``` + +### Example Request +```php +$curl = curl_init(); + +curl_setopt_array($curl, array( + CURLOPT_URL => 'https://sentri.nl/api/v1/servers/', + CURLOPT_HTTPHEADER => [ + "Authorization: Bearer ", + ], + CURLOPT_POST => true, + CURLOPT_POSTFIELDS =>'', +)); + +$response = curl_exec($curl); + +curl_close($curl); +echo $response; +``` + +### Example Response +```json +"Server(s) modified or updated successfully." +``` + +#### Known errors or issues. +None are known at the time. +If you do encounter issues and get an http code in return, check the response codes on this page. \ No newline at end of file diff --git a/API/v1/sources/inserve/GET Sync cloud distributor.md b/API/v1/sources/inserve/GET Sync cloud distributor.md new file mode 100644 index 0000000..3efb9a3 --- /dev/null +++ b/API/v1/sources/inserve/GET Sync cloud distributor.md @@ -0,0 +1,44 @@ +This API call synchronizes active companies in Sentri with the corresponding cloud distributor companies in Inserve. These cloud distributor companies are required to associate Sentri server licenses with companies in Inserve. +#### Location +``` +/api/v1/sources/inserve/sync-cloud-distributor/ +``` + +#### Permissions required +`servers` RW + +#### Body parameters +None. + +### Example Body (json) +None. + +### Example Request +```php + +$curl = curl_init(); +curl_setopt_array($curl, array( + CURLOPT_URL => 'https://sentri.nl/api/v1/sources/inserve/sync-cloud-distributor/', + CURLOPT_CUSTOMREQUEST => 'GET', + CURLOPT_RETURNTRANSFER => true, + CURLOPT_HTTPHEADER => [ + "Authorization: Bearer ", + "Accept: application/json", + "Content-Type: application/json" + ] +)); + +$response = curl_exec($curl); + +curl_close($curl); +echo $response; +``` + +### Example Response +```json +"Sync is done successfully" +``` + +#### Known errors or issues. +None are known at the time +If you do encounter issues and get an http code in return, check the response codes on this page. \ No newline at end of file diff --git a/API/v1/sources/inserve/GET Sync companies.md b/API/v1/sources/inserve/GET Sync companies.md new file mode 100644 index 0000000..907de85 --- /dev/null +++ b/API/v1/sources/inserve/GET Sync companies.md @@ -0,0 +1,44 @@ +This API call retrieves all companies from Inserve and creates or updates them in Sentri. +#### Location +``` +/api/v1/sources/inserve/sync-companies/ +``` + +#### Permissions required +`servers` RW + +#### Body parameters +None. + +### Example Body (json) +None. + +### Example Request +```php + +$curl = curl_init(); +curl_setopt_array($curl, array( + CURLOPT_URL => 'https://sentri.nl/api/v1/sources/inserve/sync-companies/', + CURLOPT_CUSTOMREQUEST => 'GET', + CURLOPT_RETURNTRANSFER => true, + CURLOPT_HTTPHEADER => [ + "Authorization: Bearer ", + "Accept: application/json", + "Content-Type: application/json" + ] +)); + +$response = curl_exec($curl); + +curl_close($curl); +echo $response; +``` + +### Example Response +```json +"Sync is done successfully" +``` + +#### Known errors or issues. +None are known at the time +If you do encounter issues and get an http code in return, check the response codes on this page. \ No newline at end of file diff --git a/API/v1/sources/inserve/GET Sync server licenses.md b/API/v1/sources/inserve/GET Sync server licenses.md new file mode 100644 index 0000000..7d04ca1 --- /dev/null +++ b/API/v1/sources/inserve/GET Sync server licenses.md @@ -0,0 +1,44 @@ +This API call first executes the [[GET Sync cloud distributor|GET Sync cloud distributor]] action and then synchronizes all servers in an active, deleted, or trial state with Inserve licenses. It creates or updates server licenses in Inserve if they do not exist or if the license quantities differ from those in Sentri. +#### Location +``` +/api/v1/sources/inserve/sync-cloud-licenses/ +``` + +#### Permissions required +`servers` RW + +#### Body parameters +None. + +### Example Body (json) +None. + +### Example Request +```php + +$curl = curl_init(); +curl_setopt_array($curl, array( + CURLOPT_URL => 'https://sentri.nl/api/v1/sources/inserve/sync-cloud-licenses/', + CURLOPT_CUSTOMREQUEST => 'GET', + CURLOPT_RETURNTRANSFER => true, + CURLOPT_HTTPHEADER => [ + "Authorization: Bearer ", + "Accept: application/json", + "Content-Type: application/json" + ] +)); + +$response = curl_exec($curl); + +curl_close($curl); +echo $response; +``` + +### Example Response +```json +"Sync is done successfully" +``` + +#### Known errors or issues. +None are known at the time +If you do encounter issues and get an http code in return, check the response codes on this page. \ No newline at end of file diff --git a/API/v1/sources/inserve/GET Sync server subscriptions.md b/API/v1/sources/inserve/GET Sync server subscriptions.md new file mode 100644 index 0000000..d421f68 --- /dev/null +++ b/API/v1/sources/inserve/GET Sync server subscriptions.md @@ -0,0 +1,44 @@ +This API call first executes the [[GET Sync cloud distributor|GET Sync cloud distributor]] action and then synchronizes all servers in an active or trial state to Inserve subscriptions. It creates or updates server subscriptions in Inserve if they do not exist or if the subscription name differ from those in Sentri. For this action the correct inserve `product_codes` should be defined at Portal Management > Sources > Inserve > Custom source data. +#### Location +``` +/api/v1/sources/inserve/sync-server-subscriptions +``` + +#### Permissions required +`servers` RW + +#### Body parameters +None. + +### Example Body (json) +None. + +### Example Request +```php + +$curl = curl_init(); +curl_setopt_array($curl, array( + CURLOPT_URL => 'https://sentri.nl/api/v1/sources/inserve/sync-server-subscriptions/', + CURLOPT_CUSTOMREQUEST => 'GET', + CURLOPT_RETURNTRANSFER => true, + CURLOPT_HTTPHEADER => [ + "Authorization: Bearer ", + "Accept: application/json", + "Content-Type: application/json" + ] +)); + +$response = curl_exec($curl); + +curl_close($curl); +echo $response; +``` + +### Example Response +```json +"Sync is done successfully" +``` + +#### Known errors or issues. +None are known at the time +If you do encounter issues and get an http code in return, check the response codes on this page. diff --git a/Portal Management/Sources/Inserve.md b/Portal Management/Sources/Inserve.md new file mode 100644 index 0000000..d6d9e5e --- /dev/null +++ b/Portal Management/Sources/Inserve.md @@ -0,0 +1,123 @@ +Inserve is Dutch software that helps MSPs support their customers in a personal and structured way. The connection to Inserve gives the option to sync information between Sentri and Inserve. + +To configure the Inserve connection you need the `admin-sources` RW permissions. +# Configuration +To configure the Inserve connection, you need to generate an API token in Inserve. You can do this by logging into Inserve, clicking on your avatar, selecting **API Settings**, and then choosing **Create a New API Key**. +### Inserve URL +This is your Inserve URL with `/api/` appended to it. +For example, you can enter: +`https://company.inserve.nl/api/` + +> [!WARNING] +> Dont forget the last `/` and the `https` in the URL. +### API Token +Fill in your API token generated in Inserve. + +### Custom source data +This field is used for additional custom data required by certain actions. For example, it can be used to link product codes to specific server resources, licenses, or backups. The data must be provided in valid JSON format. + +Example custom source data: +```json +{ + "data": { + "clouddistrubutor": "sentri", + "subscriptions": { + "server_cpu": { + "product_code": "P001" + }, + "server_memory": { + "product_code": "P002" + }, + "server_disks": { + "product_code": "P003" + }, + "server_licenses": { + "cpguard": { + "cpguard": { + "product_code": "P003" + } + }, + "directadmin": { + "Standard": { + "product_code": "P004" + }, + "Discounted Standard": { + "product_code": "P005" + }, + "Lite": { + "product_code": "P006" + } + }, + "installatron": { + "installatron": { + "product_code": "P007" + } + } + }, + "server_backup": { + "borg": { + "product_code": "P008" + }, + "veeam": { + "product_code": "P009" + } + } + } + } +} +``` +If a product code is missing, the related action will return an error. Also make sure that each `product_code` exists in Inserve as a product. +## Testing connection +After applying the configuration you can click on **Test Connection** to see if the configuration is correct. +# Source actions +These are the different actions available. These actions maybe not available with certain modules disabled. + +## Sync companies from Inserve to Sentri +> [!Important] +> Requires the **Customers** module to be enabled. +> Requires the **customer-companies** RW permissions. + +This API call retrieves all companies from Inserve and creates or updates them in Sentri. + +API Call: [[../../API/v1/sources/inserve/GET Sync companies|GET Sync companies]] +## Sync cloud distributor companies +> [!Important] +> Requires the **Servers** module to be enabled. +> Requires the **servers** RW permissions. + +This API call synchronizes _active_ companies in Sentri with the corresponding cloud distributor companies in Inserve. These cloud distributor companies are required to associate Sentri server resources, licenses, and backups with companies in Inserve. + +The reason for this is that each cloud distributor uses its own company IDs, which may not exist in Inserve. To solve this, Inserve requires you to create the companies under the cloud distributor so that the company IDs from Sentri can be mapped to the correct company IDs in Inserve. + +For example: +```json +{ + "cloud_distributor": "sentri", + "mappings": [ + { + "cloud_distribution_id": "", + "company_id": "" + } + ] +} +``` +The `cloud_distribution_id` is used to link licenses to the correct company during the **Sync Server Licenses** action. + +API Call: [[../../API/v1/sources/inserve/GET Sync cloud distributor|GET Sync cloud distributor]] +## Sync servers licenses +> [!Important] +> Requires the **Servers** module to be enabled. +> Requires the **servers** RW permissions. + +This API call first executes the **Sync cloud distributor companies** action and then synchronizes all servers in an active, deleted, or trial state with Inserve licenses. It creates or updates server licenses in Inserve if they do not exist or if the license quantities differ from those in Sentri. +It will also only do this to server linked to an active company. + +API Call: [[../../API/v1/sources/inserve/GET Sync server licenses|GET Sync server licenses]] +## Sync server subscriptions +> [!Important] +> Requires the **Servers** module to be enabled. +> Requires the **servers** RW permissions. + +This API call first executes the **Sync cloud distributor** companies action and then creates a subscription if it does not exist, or updates the subscription description if it does. It also creates subscription lines with the correct product_code entered in the **custom source data** JSON field. + +API Call: [[../../API/v1/sources/inserve/GET Sync server subscriptions|GET Sync server subscriptions]] \ No newline at end of file diff --git a/Release notes.md b/Release notes.md new file mode 100644 index 0000000..f193385 --- /dev/null +++ b/Release notes.md @@ -0,0 +1,44 @@ +## v.1.2 +`06-05-2026` +### Features +- Sync action added to sync servers to Inserve subscriptions. +- Added Inserve custom data field. +### Changes +- Inserve licenses changes name when host name is different. +### Fixes +- Locales fixed on Inserve source page. +- Fixed action card alignement on Inserve page. +- Textarea's can now be changed in size. +- Filtering and ordering on backup types fixed in server overview. +## v.1.1 +`07-01-2026` +### Changes +- Dashboard card display improvements. +- Improvements into the server view. +- If a server has the "new" state and it is deleted, it will be permanent. +- Group view page added with the ability to view and change all the groups permissions. +- View companies with connected servers. +- Modified the Inserve source page so it shows all the Sync actions. +- Created this KB website and moved the release notes and roadmap to this page. +### Fixes +- Fixed an issue that allowed some disabled module content to be visible or accessible. +## v1.0 +`21-12-2025` +### Known issues +- Sidebar text is showing when sidebar is wrapped. +- Problem with sorting backups types in the server overview +## Roadmap +- Be able to configure sources for certain tasks +- More configuration options for sources. +- Make the /login page the same style as the rest of Sentri. +- Light mode theme. +- Travel cost page. +- VM hosts overview. +- Add name to API tokens. +- Loggin of actions to local storage or to things such as graylog. +- SSO/SAML/User provisioning. + +## v0.1 +`23-12-2024` + +- Start of this project \ No newline at end of file diff --git a/assets/images/favicon.png b/assets/images/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..1cf13b9f9d978896599290a74f77d5dbe7d1655c GIT binary patch literal 1870 zcmV-U2eJ5xP)Gc)JR9QMau)O=X#!i9;T z37kk-upj^(fsR36MHs_+1RCI)NNu9}lD0S{B^g8PN?Ww(5|~L#Ng*g{WsqleV}|#l zz8@ri&cTzw_h33bHI+12+kK6WN$h#n5cD8OQt`5kw6p~9H3()bUQ8OS4Q4HTQ=1Ol z_JAocz`fLbT2^{`8n~UAo=#AUOf=SOq4pYkt;XbC&f#7lb$*7=$na!mWCQ`dBQsO0 zLFBSPj*N?#u5&pf2t4XjEGH|=pPQ8xh7tpx;US5Cx_Ju;!O`ya-yF`)b%TEt5>eP1ZX~}sjjA%FJF?h7cX8=b!DZl<6%Cv z*G0uvvU+vmnpLZ2paivG-(cd*y3$hCIcsZcYOGh{$&)A6*XX&kXZd3G8m)G$Zz-LV z^GF3VAW^Mdv!)4OM8EgqRiz~*Cji;uzl2uC9^=8I84vNp;ltJ|q-*uQwGp2ma6cY7 z;`%`!9UXO@fr&Ebapfs34OmS9^u6$)bJxrucutf>`dKPKT%%*d3XlFVKunp9 zasduxjrjs>f8V=D|J=XNZp;_Zy^WgQ$9WDjgY=z@stwiEBm9u5*|34&1Na8BMjjgf3+SHcr`5~>oz1Y?SW^=K z^bTyO6>Gar#P_W2gEMwq)ot3; zREHn~U&Dp0l6YT0&k-wLwYjb?5zGK`W6S2v+K>AM(95m2C20L|3m~rN8dprPr@t)5lsk9Hu*W z?pS990s;Ez=+Rj{x7p``4>+c0G5^pYnB1^!TL=(?HLHZ+HicG{~4F1d^5Awl_2!1jICM-!9eoLhbbT^;yHcefyTAaqRcY zmuctDopPT!%k+}x%lZRKnzykr2}}XfG_ne?nRQO~?%hkzo;@RN{P6o`&mMUWBYMTe z6i8ChtjX&gXl`nvrU>jah)2iNM%JdjqoaeaU%yVn!^70x-flljp6Q5tK}5}&X8&&G zX3fpb3E(!rH=zVI_9Gjl45w@{(ITqngWFe7@9{mX;tO25Z_8 zQHEpI+FkTU#4xu>RkN>b3Tnc3UpWzPXWm#o55GKF09j^Mh~)K7{QqbO_~(@CVq! zS<8954|P8mXN2MRs86xZ&Q4EfM@JB94b=(YGuk)s&^jiSF=t3*oNK3`rD{H`yQ?d; ztE=laAUoZx5?RC8*WKOj`%LXEkgDd>&^Q4M^z`%u0rg-It=hLCVsq!Z%^6eB-OvOT zFZ28TN&cRmgU}Elrnk43)!>Z1FCPL2K$7}gwzIc48NX}#!A1BpJP?#v5wkNprhV** z?Cpalt1oH&{r!o3eSKc&ap)iz2BTn_VV`4>9M^b3;(YY}4>#ML6{~(4mH+?%07*qo IM6N<$f(jP3KmY&$ literal 0 HcmV?d00001 diff --git a/assets/images/favicon.svg b/assets/images/favicon.svg new file mode 100644 index 0000000..59ce54d --- /dev/null +++ b/assets/images/favicon.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/assets/images/logo.png b/assets/images/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..10a1f0b10f749fc7e3d35392c24a50a682272e22 GIT binary patch literal 252514 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%0D{!AWr|CBKbU9_G+Xc_BOOX2E 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

2U-Q1^Bq>1{#`0`Xwd`6-xIR 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 AQvd(} literal 0 HcmV?d00001 diff --git a/assets/javascripts/bundle.79ae519e.min.js b/assets/javascripts/bundle.79ae519e.min.js new file mode 100644 index 0000000..3df3e5e --- /dev/null +++ b/assets/javascripts/bundle.79ae519e.min.js @@ -0,0 +1,16 @@ +"use strict";(()=>{var Zi=Object.create;var _r=Object.defineProperty;var ea=Object.getOwnPropertyDescriptor;var ta=Object.getOwnPropertyNames,Bt=Object.getOwnPropertySymbols,ra=Object.getPrototypeOf,Ar=Object.prototype.hasOwnProperty,bo=Object.prototype.propertyIsEnumerable;var ho=(e,t,r)=>t in e?_r(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,P=(e,t)=>{for(var r in t||(t={}))Ar.call(t,r)&&ho(e,r,t[r]);if(Bt)for(var r of Bt(t))bo.call(t,r)&&ho(e,r,t[r]);return e};var vo=(e,t)=>{var r={};for(var o in e)Ar.call(e,o)&&t.indexOf(o)<0&&(r[o]=e[o]);if(e!=null&&Bt)for(var o of Bt(e))t.indexOf(o)<0&&bo.call(e,o)&&(r[o]=e[o]);return r};var Cr=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var oa=(e,t,r,o)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of ta(t))!Ar.call(e,n)&&n!==r&&_r(e,n,{get:()=>t[n],enumerable:!(o=ea(t,n))||o.enumerable});return e};var $t=(e,t,r)=>(r=e!=null?Zi(ra(e)):{},oa(t||!e||!e.__esModule?_r(r,"default",{value:e,enumerable:!0}):r,e));var go=(e,t,r)=>new Promise((o,n)=>{var i=c=>{try{a(r.next(c))}catch(p){n(p)}},s=c=>{try{a(r.throw(c))}catch(p){n(p)}},a=c=>c.done?o(c.value):Promise.resolve(c.value).then(i,s);a((r=r.apply(e,t)).next())});var xo=Cr((kr,yo)=>{(function(e,t){typeof kr=="object"&&typeof yo!="undefined"?t():typeof define=="function"&&define.amd?define(t):t()})(kr,(function(){"use strict";function e(r){var o=!0,n=!1,i=null,s={text:!0,search:!0,url:!0,tel:!0,email:!0,password:!0,number:!0,date:!0,month:!0,week:!0,time:!0,datetime:!0,"datetime-local":!0};function a(k){return!!(k&&k!==document&&k.nodeName!=="HTML"&&k.nodeName!=="BODY"&&"classList"in k&&"contains"in k.classList)}function c(k){var ut=k.type,je=k.tagName;return!!(je==="INPUT"&&s[ut]&&!k.readOnly||je==="TEXTAREA"&&!k.readOnly||k.isContentEditable)}function p(k){k.classList.contains("focus-visible")||(k.classList.add("focus-visible"),k.setAttribute("data-focus-visible-added",""))}function l(k){k.hasAttribute("data-focus-visible-added")&&(k.classList.remove("focus-visible"),k.removeAttribute("data-focus-visible-added"))}function f(k){k.metaKey||k.altKey||k.ctrlKey||(a(r.activeElement)&&p(r.activeElement),o=!0)}function u(k){o=!1}function d(k){a(k.target)&&(o||c(k.target))&&p(k.target)}function v(k){a(k.target)&&(k.target.classList.contains("focus-visible")||k.target.hasAttribute("data-focus-visible-added"))&&(n=!0,window.clearTimeout(i),i=window.setTimeout(function(){n=!1},100),l(k.target))}function S(k){document.visibilityState==="hidden"&&(n&&(o=!0),X())}function X(){document.addEventListener("mousemove",ee),document.addEventListener("mousedown",ee),document.addEventListener("mouseup",ee),document.addEventListener("pointermove",ee),document.addEventListener("pointerdown",ee),document.addEventListener("pointerup",ee),document.addEventListener("touchmove",ee),document.addEventListener("touchstart",ee),document.addEventListener("touchend",ee)}function re(){document.removeEventListener("mousemove",ee),document.removeEventListener("mousedown",ee),document.removeEventListener("mouseup",ee),document.removeEventListener("pointermove",ee),document.removeEventListener("pointerdown",ee),document.removeEventListener("pointerup",ee),document.removeEventListener("touchmove",ee),document.removeEventListener("touchstart",ee),document.removeEventListener("touchend",ee)}function ee(k){k.target.nodeName&&k.target.nodeName.toLowerCase()==="html"||(o=!1,re())}document.addEventListener("keydown",f,!0),document.addEventListener("mousedown",u,!0),document.addEventListener("pointerdown",u,!0),document.addEventListener("touchstart",u,!0),document.addEventListener("visibilitychange",S,!0),X(),r.addEventListener("focus",d,!0),r.addEventListener("blur",v,!0),r.nodeType===Node.DOCUMENT_FRAGMENT_NODE&&r.host?r.host.setAttribute("data-js-focus-visible",""):r.nodeType===Node.DOCUMENT_NODE&&(document.documentElement.classList.add("js-focus-visible"),document.documentElement.setAttribute("data-js-focus-visible",""))}if(typeof window!="undefined"&&typeof document!="undefined"){window.applyFocusVisiblePolyfill=e;var t;try{t=new CustomEvent("focus-visible-polyfill-ready")}catch(r){t=document.createEvent("CustomEvent"),t.initCustomEvent("focus-visible-polyfill-ready",!1,!1,{})}window.dispatchEvent(t)}typeof document!="undefined"&&e(document)}))});var ro=Cr((jy,Rn)=>{"use strict";/*! + * escape-html + * Copyright(c) 2012-2013 TJ Holowaychuk + * Copyright(c) 2015 Andreas Lubbe + * Copyright(c) 2015 Tiancheng "Timothy" Gu + * MIT Licensed + */var qa=/["'&<>]/;Rn.exports=Ka;function Ka(e){var t=""+e,r=qa.exec(t);if(!r)return t;var o,n="",i=0,s=0;for(i=r.index;i{/*! + * clipboard.js v2.0.11 + * https://clipboardjs.com/ + * + * Licensed MIT © Zeno Rocha + */(function(t,r){typeof Nt=="object"&&typeof io=="object"?io.exports=r():typeof define=="function"&&define.amd?define([],r):typeof Nt=="object"?Nt.ClipboardJS=r():t.ClipboardJS=r()})(Nt,function(){return(function(){var e={686:(function(o,n,i){"use strict";i.d(n,{default:function(){return Xi}});var s=i(279),a=i.n(s),c=i(370),p=i.n(c),l=i(817),f=i.n(l);function u(q){try{return document.execCommand(q)}catch(C){return!1}}var d=function(C){var _=f()(C);return u("cut"),_},v=d;function S(q){var C=document.documentElement.getAttribute("dir")==="rtl",_=document.createElement("textarea");_.style.fontSize="12pt",_.style.border="0",_.style.padding="0",_.style.margin="0",_.style.position="absolute",_.style[C?"right":"left"]="-9999px";var D=window.pageYOffset||document.documentElement.scrollTop;return _.style.top="".concat(D,"px"),_.setAttribute("readonly",""),_.value=q,_}var X=function(C,_){var D=S(C);_.container.appendChild(D);var N=f()(D);return u("copy"),D.remove(),N},re=function(C){var _=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{container:document.body},D="";return typeof C=="string"?D=X(C,_):C instanceof HTMLInputElement&&!["text","search","url","tel","password"].includes(C==null?void 0:C.type)?D=X(C.value,_):(D=f()(C),u("copy")),D},ee=re;function k(q){"@babel/helpers - typeof";return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?k=function(_){return typeof _}:k=function(_){return _&&typeof Symbol=="function"&&_.constructor===Symbol&&_!==Symbol.prototype?"symbol":typeof _},k(q)}var ut=function(){var C=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},_=C.action,D=_===void 0?"copy":_,N=C.container,G=C.target,We=C.text;if(D!=="copy"&&D!=="cut")throw new Error('Invalid "action" value, use either "copy" or "cut"');if(G!==void 0)if(G&&k(G)==="object"&&G.nodeType===1){if(D==="copy"&&G.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if(D==="cut"&&(G.hasAttribute("readonly")||G.hasAttribute("disabled")))throw new Error(`Invalid "target" attribute. You can't cut text from elements with "readonly" or "disabled" attributes`)}else throw new Error('Invalid "target" value, use a valid Element');if(We)return ee(We,{container:N});if(G)return D==="cut"?v(G):ee(G,{container:N})},je=ut;function R(q){"@babel/helpers - typeof";return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?R=function(_){return typeof _}:R=function(_){return _&&typeof Symbol=="function"&&_.constructor===Symbol&&_!==Symbol.prototype?"symbol":typeof _},R(q)}function se(q,C){if(!(q instanceof C))throw new TypeError("Cannot call a class as a function")}function ce(q,C){for(var _=0;_0&&arguments[0]!==void 0?arguments[0]:{};this.action=typeof N.action=="function"?N.action:this.defaultAction,this.target=typeof N.target=="function"?N.target:this.defaultTarget,this.text=typeof N.text=="function"?N.text:this.defaultText,this.container=R(N.container)==="object"?N.container:document.body}},{key:"listenClick",value:function(N){var G=this;this.listener=p()(N,"click",function(We){return G.onClick(We)})}},{key:"onClick",value:function(N){var G=N.delegateTarget||N.currentTarget,We=this.action(G)||"copy",Yt=je({action:We,container:this.container,target:this.target(G),text:this.text(G)});this.emit(Yt?"success":"error",{action:We,text:Yt,trigger:G,clearSelection:function(){G&&G.focus(),window.getSelection().removeAllRanges()}})}},{key:"defaultAction",value:function(N){return Mr("action",N)}},{key:"defaultTarget",value:function(N){var G=Mr("target",N);if(G)return document.querySelector(G)}},{key:"defaultText",value:function(N){return Mr("text",N)}},{key:"destroy",value:function(){this.listener.destroy()}}],[{key:"copy",value:function(N){var G=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{container:document.body};return ee(N,G)}},{key:"cut",value:function(N){return v(N)}},{key:"isSupported",value:function(){var N=arguments.length>0&&arguments[0]!==void 0?arguments[0]:["copy","cut"],G=typeof N=="string"?[N]:N,We=!!document.queryCommandSupported;return G.forEach(function(Yt){We=We&&!!document.queryCommandSupported(Yt)}),We}}]),_})(a()),Xi=Ji}),828:(function(o){var n=9;if(typeof Element!="undefined"&&!Element.prototype.matches){var i=Element.prototype;i.matches=i.matchesSelector||i.mozMatchesSelector||i.msMatchesSelector||i.oMatchesSelector||i.webkitMatchesSelector}function s(a,c){for(;a&&a.nodeType!==n;){if(typeof a.matches=="function"&&a.matches(c))return a;a=a.parentNode}}o.exports=s}),438:(function(o,n,i){var s=i(828);function a(l,f,u,d,v){var S=p.apply(this,arguments);return l.addEventListener(u,S,v),{destroy:function(){l.removeEventListener(u,S,v)}}}function c(l,f,u,d,v){return typeof l.addEventListener=="function"?a.apply(null,arguments):typeof u=="function"?a.bind(null,document).apply(null,arguments):(typeof l=="string"&&(l=document.querySelectorAll(l)),Array.prototype.map.call(l,function(S){return a(S,f,u,d,v)}))}function p(l,f,u,d){return function(v){v.delegateTarget=s(v.target,f),v.delegateTarget&&d.call(l,v)}}o.exports=c}),879:(function(o,n){n.node=function(i){return i!==void 0&&i instanceof HTMLElement&&i.nodeType===1},n.nodeList=function(i){var s=Object.prototype.toString.call(i);return i!==void 0&&(s==="[object NodeList]"||s==="[object HTMLCollection]")&&"length"in i&&(i.length===0||n.node(i[0]))},n.string=function(i){return typeof i=="string"||i instanceof String},n.fn=function(i){var s=Object.prototype.toString.call(i);return s==="[object Function]"}}),370:(function(o,n,i){var s=i(879),a=i(438);function c(u,d,v){if(!u&&!d&&!v)throw new Error("Missing required arguments");if(!s.string(d))throw new TypeError("Second argument must be a String");if(!s.fn(v))throw new TypeError("Third argument must be a Function");if(s.node(u))return p(u,d,v);if(s.nodeList(u))return l(u,d,v);if(s.string(u))return f(u,d,v);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList")}function p(u,d,v){return u.addEventListener(d,v),{destroy:function(){u.removeEventListener(d,v)}}}function l(u,d,v){return Array.prototype.forEach.call(u,function(S){S.addEventListener(d,v)}),{destroy:function(){Array.prototype.forEach.call(u,function(S){S.removeEventListener(d,v)})}}}function f(u,d,v){return a(document.body,u,d,v)}o.exports=c}),817:(function(o){function n(i){var s;if(i.nodeName==="SELECT")i.focus(),s=i.value;else if(i.nodeName==="INPUT"||i.nodeName==="TEXTAREA"){var a=i.hasAttribute("readonly");a||i.setAttribute("readonly",""),i.select(),i.setSelectionRange(0,i.value.length),a||i.removeAttribute("readonly"),s=i.value}else{i.hasAttribute("contenteditable")&&i.focus();var c=window.getSelection(),p=document.createRange();p.selectNodeContents(i),c.removeAllRanges(),c.addRange(p),s=c.toString()}return s}o.exports=n}),279:(function(o){function n(){}n.prototype={on:function(i,s,a){var c=this.e||(this.e={});return(c[i]||(c[i]=[])).push({fn:s,ctx:a}),this},once:function(i,s,a){var c=this;function p(){c.off(i,p),s.apply(a,arguments)}return p._=s,this.on(i,p,a)},emit:function(i){var s=[].slice.call(arguments,1),a=((this.e||(this.e={}))[i]||[]).slice(),c=0,p=a.length;for(c;c0&&i[i.length-1])&&(p[0]===6||p[0]===2)){r=0;continue}if(p[0]===3&&(!i||p[1]>i[0]&&p[1]=e.length&&(e=void 0),{value:e&&e[o++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function K(e,t){var r=typeof Symbol=="function"&&e[Symbol.iterator];if(!r)return e;var o=r.call(e),n,i=[],s;try{for(;(t===void 0||t-- >0)&&!(n=o.next()).done;)i.push(n.value)}catch(a){s={error:a}}finally{try{n&&!n.done&&(r=o.return)&&r.call(o)}finally{if(s)throw s.error}}return i}function B(e,t,r){if(r||arguments.length===2)for(var o=0,n=t.length,i;o1||c(d,S)})},v&&(n[d]=v(n[d])))}function c(d,v){try{p(o[d](v))}catch(S){u(i[0][3],S)}}function p(d){d.value instanceof dt?Promise.resolve(d.value.v).then(l,f):u(i[0][2],d)}function l(d){c("next",d)}function f(d){c("throw",d)}function u(d,v){d(v),i.shift(),i.length&&c(i[0][0],i[0][1])}}function To(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t=e[Symbol.asyncIterator],r;return t?t.call(e):(e=typeof Oe=="function"?Oe(e):e[Symbol.iterator](),r={},o("next"),o("throw"),o("return"),r[Symbol.asyncIterator]=function(){return this},r);function o(i){r[i]=e[i]&&function(s){return new Promise(function(a,c){s=e[i](s),n(a,c,s.done,s.value)})}}function n(i,s,a,c){Promise.resolve(c).then(function(p){i({value:p,done:a})},s)}}function I(e){return typeof e=="function"}function yt(e){var t=function(o){Error.call(o),o.stack=new Error().stack},r=e(t);return r.prototype=Object.create(Error.prototype),r.prototype.constructor=r,r}var Jt=yt(function(e){return function(r){e(this),this.message=r?r.length+` errors occurred during unsubscription: +`+r.map(function(o,n){return n+1+") "+o.toString()}).join(` + `):"",this.name="UnsubscriptionError",this.errors=r}});function Ze(e,t){if(e){var r=e.indexOf(t);0<=r&&e.splice(r,1)}}var qe=(function(){function e(t){this.initialTeardown=t,this.closed=!1,this._parentage=null,this._finalizers=null}return e.prototype.unsubscribe=function(){var t,r,o,n,i;if(!this.closed){this.closed=!0;var s=this._parentage;if(s)if(this._parentage=null,Array.isArray(s))try{for(var a=Oe(s),c=a.next();!c.done;c=a.next()){var p=c.value;p.remove(this)}}catch(S){t={error:S}}finally{try{c&&!c.done&&(r=a.return)&&r.call(a)}finally{if(t)throw t.error}}else s.remove(this);var l=this.initialTeardown;if(I(l))try{l()}catch(S){i=S instanceof Jt?S.errors:[S]}var f=this._finalizers;if(f){this._finalizers=null;try{for(var u=Oe(f),d=u.next();!d.done;d=u.next()){var v=d.value;try{So(v)}catch(S){i=i!=null?i:[],S instanceof Jt?i=B(B([],K(i)),K(S.errors)):i.push(S)}}}catch(S){o={error:S}}finally{try{d&&!d.done&&(n=u.return)&&n.call(u)}finally{if(o)throw o.error}}}if(i)throw new Jt(i)}},e.prototype.add=function(t){var r;if(t&&t!==this)if(this.closed)So(t);else{if(t instanceof e){if(t.closed||t._hasParent(this))return;t._addParent(this)}(this._finalizers=(r=this._finalizers)!==null&&r!==void 0?r:[]).push(t)}},e.prototype._hasParent=function(t){var r=this._parentage;return r===t||Array.isArray(r)&&r.includes(t)},e.prototype._addParent=function(t){var r=this._parentage;this._parentage=Array.isArray(r)?(r.push(t),r):r?[r,t]:t},e.prototype._removeParent=function(t){var r=this._parentage;r===t?this._parentage=null:Array.isArray(r)&&Ze(r,t)},e.prototype.remove=function(t){var r=this._finalizers;r&&Ze(r,t),t instanceof e&&t._removeParent(this)},e.EMPTY=(function(){var t=new e;return t.closed=!0,t})(),e})();var $r=qe.EMPTY;function Xt(e){return e instanceof qe||e&&"closed"in e&&I(e.remove)&&I(e.add)&&I(e.unsubscribe)}function So(e){I(e)?e():e.unsubscribe()}var De={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1};var xt={setTimeout:function(e,t){for(var r=[],o=2;o0},enumerable:!1,configurable:!0}),t.prototype._trySubscribe=function(r){return this._throwIfClosed(),e.prototype._trySubscribe.call(this,r)},t.prototype._subscribe=function(r){return this._throwIfClosed(),this._checkFinalizedStatuses(r),this._innerSubscribe(r)},t.prototype._innerSubscribe=function(r){var o=this,n=this,i=n.hasError,s=n.isStopped,a=n.observers;return i||s?$r:(this.currentObservers=null,a.push(r),new qe(function(){o.currentObservers=null,Ze(a,r)}))},t.prototype._checkFinalizedStatuses=function(r){var o=this,n=o.hasError,i=o.thrownError,s=o.isStopped;n?r.error(i):s&&r.complete()},t.prototype.asObservable=function(){var r=new F;return r.source=this,r},t.create=function(r,o){return new Ho(r,o)},t})(F);var Ho=(function(e){ie(t,e);function t(r,o){var n=e.call(this)||this;return n.destination=r,n.source=o,n}return t.prototype.next=function(r){var o,n;(n=(o=this.destination)===null||o===void 0?void 0:o.next)===null||n===void 0||n.call(o,r)},t.prototype.error=function(r){var o,n;(n=(o=this.destination)===null||o===void 0?void 0:o.error)===null||n===void 0||n.call(o,r)},t.prototype.complete=function(){var r,o;(o=(r=this.destination)===null||r===void 0?void 0:r.complete)===null||o===void 0||o.call(r)},t.prototype._subscribe=function(r){var o,n;return(n=(o=this.source)===null||o===void 0?void 0:o.subscribe(r))!==null&&n!==void 0?n:$r},t})(T);var jr=(function(e){ie(t,e);function t(r){var o=e.call(this)||this;return o._value=r,o}return Object.defineProperty(t.prototype,"value",{get:function(){return this.getValue()},enumerable:!1,configurable:!0}),t.prototype._subscribe=function(r){var o=e.prototype._subscribe.call(this,r);return!o.closed&&r.next(this._value),o},t.prototype.getValue=function(){var r=this,o=r.hasError,n=r.thrownError,i=r._value;if(o)throw n;return this._throwIfClosed(),i},t.prototype.next=function(r){e.prototype.next.call(this,this._value=r)},t})(T);var Rt={now:function(){return(Rt.delegate||Date).now()},delegate:void 0};var It=(function(e){ie(t,e);function t(r,o,n){r===void 0&&(r=1/0),o===void 0&&(o=1/0),n===void 0&&(n=Rt);var i=e.call(this)||this;return i._bufferSize=r,i._windowTime=o,i._timestampProvider=n,i._buffer=[],i._infiniteTimeWindow=!0,i._infiniteTimeWindow=o===1/0,i._bufferSize=Math.max(1,r),i._windowTime=Math.max(1,o),i}return t.prototype.next=function(r){var o=this,n=o.isStopped,i=o._buffer,s=o._infiniteTimeWindow,a=o._timestampProvider,c=o._windowTime;n||(i.push(r),!s&&i.push(a.now()+c)),this._trimBuffer(),e.prototype.next.call(this,r)},t.prototype._subscribe=function(r){this._throwIfClosed(),this._trimBuffer();for(var o=this._innerSubscribe(r),n=this,i=n._infiniteTimeWindow,s=n._buffer,a=s.slice(),c=0;c0?e.prototype.schedule.call(this,r,o):(this.delay=o,this.state=r,this.scheduler.flush(this),this)},t.prototype.execute=function(r,o){return o>0||this.closed?e.prototype.execute.call(this,r,o):this._execute(r,o)},t.prototype.requestAsyncId=function(r,o,n){return n===void 0&&(n=0),n!=null&&n>0||n==null&&this.delay>0?e.prototype.requestAsyncId.call(this,r,o,n):(r.flush(this),0)},t})(St);var Ro=(function(e){ie(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t})(Ot);var Dr=new Ro(Po);var Io=(function(e){ie(t,e);function t(r,o){var n=e.call(this,r,o)||this;return n.scheduler=r,n.work=o,n}return t.prototype.requestAsyncId=function(r,o,n){return n===void 0&&(n=0),n!==null&&n>0?e.prototype.requestAsyncId.call(this,r,o,n):(r.actions.push(this),r._scheduled||(r._scheduled=Tt.requestAnimationFrame(function(){return r.flush(void 0)})))},t.prototype.recycleAsyncId=function(r,o,n){var i;if(n===void 0&&(n=0),n!=null?n>0:this.delay>0)return e.prototype.recycleAsyncId.call(this,r,o,n);var s=r.actions;o!=null&&o===r._scheduled&&((i=s[s.length-1])===null||i===void 0?void 0:i.id)!==o&&(Tt.cancelAnimationFrame(o),r._scheduled=void 0)},t})(St);var Fo=(function(e){ie(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.flush=function(r){this._active=!0;var o;r?o=r.id:(o=this._scheduled,this._scheduled=void 0);var n=this.actions,i;r=r||n.shift();do if(i=r.execute(r.state,r.delay))break;while((r=n[0])&&r.id===o&&n.shift());if(this._active=!1,i){for(;(r=n[0])&&r.id===o&&n.shift();)r.unsubscribe();throw i}},t})(Ot);var ye=new Fo(Io);var y=new F(function(e){return e.complete()});function tr(e){return e&&I(e.schedule)}function Vr(e){return e[e.length-1]}function pt(e){return I(Vr(e))?e.pop():void 0}function Fe(e){return tr(Vr(e))?e.pop():void 0}function rr(e,t){return typeof Vr(e)=="number"?e.pop():t}var Lt=(function(e){return e&&typeof e.length=="number"&&typeof e!="function"});function or(e){return I(e==null?void 0:e.then)}function nr(e){return I(e[wt])}function ir(e){return Symbol.asyncIterator&&I(e==null?void 0:e[Symbol.asyncIterator])}function ar(e){return new TypeError("You provided "+(e!==null&&typeof e=="object"?"an invalid object":"'"+e+"'")+" where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")}function fa(){return typeof Symbol!="function"||!Symbol.iterator?"@@iterator":Symbol.iterator}var sr=fa();function cr(e){return I(e==null?void 0:e[sr])}function pr(e){return wo(this,arguments,function(){var r,o,n,i;return Gt(this,function(s){switch(s.label){case 0:r=e.getReader(),s.label=1;case 1:s.trys.push([1,,9,10]),s.label=2;case 2:return[4,dt(r.read())];case 3:return o=s.sent(),n=o.value,i=o.done,i?[4,dt(void 0)]:[3,5];case 4:return[2,s.sent()];case 5:return[4,dt(n)];case 6:return[4,s.sent()];case 7:return s.sent(),[3,2];case 8:return[3,10];case 9:return r.releaseLock(),[7];case 10:return[2]}})})}function lr(e){return I(e==null?void 0:e.getReader)}function U(e){if(e instanceof F)return e;if(e!=null){if(nr(e))return ua(e);if(Lt(e))return da(e);if(or(e))return ha(e);if(ir(e))return jo(e);if(cr(e))return ba(e);if(lr(e))return va(e)}throw ar(e)}function ua(e){return new F(function(t){var r=e[wt]();if(I(r.subscribe))return r.subscribe(t);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}function da(e){return new F(function(t){for(var r=0;r=2;return function(o){return o.pipe(e?g(function(n,i){return e(n,i,o)}):be,Ee(1),r?Qe(t):tn(function(){return new fr}))}}function Yr(e){return e<=0?function(){return y}:E(function(t,r){var o=[];t.subscribe(w(r,function(n){o.push(n),e=2,!0))}function le(e){e===void 0&&(e={});var t=e.connector,r=t===void 0?function(){return new T}:t,o=e.resetOnError,n=o===void 0?!0:o,i=e.resetOnComplete,s=i===void 0?!0:i,a=e.resetOnRefCountZero,c=a===void 0?!0:a;return function(p){var l,f,u,d=0,v=!1,S=!1,X=function(){f==null||f.unsubscribe(),f=void 0},re=function(){X(),l=u=void 0,v=S=!1},ee=function(){var k=l;re(),k==null||k.unsubscribe()};return E(function(k,ut){d++,!S&&!v&&X();var je=u=u!=null?u:r();ut.add(function(){d--,d===0&&!S&&!v&&(f=Br(ee,c))}),je.subscribe(ut),!l&&d>0&&(l=new bt({next:function(R){return je.next(R)},error:function(R){S=!0,X(),f=Br(re,n,R),je.error(R)},complete:function(){v=!0,X(),f=Br(re,s),je.complete()}}),U(k).subscribe(l))})(p)}}function Br(e,t){for(var r=[],o=2;oe.next(document)),e}function M(e,t=document){return Array.from(t.querySelectorAll(e))}function j(e,t=document){let r=ue(e,t);if(typeof r=="undefined")throw new ReferenceError(`Missing element: expected "${e}" to be present`);return r}function ue(e,t=document){return t.querySelector(e)||void 0}function Ne(){var e,t,r,o;return(o=(r=(t=(e=document.activeElement)==null?void 0:e.shadowRoot)==null?void 0:t.activeElement)!=null?r:document.activeElement)!=null?o:void 0}var Ra=L(h(document.body,"focusin"),h(document.body,"focusout")).pipe(Ae(1),Q(void 0),m(()=>Ne()||document.body),Z(1));function Ye(e){return Ra.pipe(m(t=>e.contains(t)),Y())}function it(e,t){return H(()=>L(h(e,"mouseenter").pipe(m(()=>!0)),h(e,"mouseleave").pipe(m(()=>!1))).pipe(t?jt(r=>He(+!r*t)):be,Q(e.matches(":hover"))))}function sn(e,t){if(typeof t=="string"||typeof t=="number")e.innerHTML+=t.toString();else if(t instanceof Node)e.appendChild(t);else if(Array.isArray(t))for(let r of t)sn(e,r)}function x(e,t,...r){let o=document.createElement(e);if(t)for(let n of Object.keys(t))typeof t[n]!="undefined"&&(typeof t[n]!="boolean"?o.setAttribute(n,t[n]):o.setAttribute(n,""));for(let n of r)sn(o,n);return o}function br(e){if(e>999){let t=+((e-950)%1e3>99);return`${((e+1e-6)/1e3).toFixed(t)}k`}else return e.toString()}function _t(e){let t=x("script",{src:e});return H(()=>(document.head.appendChild(t),L(h(t,"load"),h(t,"error").pipe(b(()=>Nr(()=>new ReferenceError(`Invalid script: ${e}`))))).pipe(m(()=>{}),A(()=>document.head.removeChild(t)),Ee(1))))}var cn=new T,Ia=H(()=>typeof ResizeObserver=="undefined"?_t("https://unpkg.com/resize-observer-polyfill"):$(void 0)).pipe(m(()=>new ResizeObserver(e=>e.forEach(t=>cn.next(t)))),b(e=>L(tt,$(e)).pipe(A(()=>e.disconnect()))),Z(1));function de(e){return{width:e.offsetWidth,height:e.offsetHeight}}function Le(e){let t=e;for(;t.clientWidth===0&&t.parentElement;)t=t.parentElement;return Ia.pipe(O(r=>r.observe(t)),b(r=>cn.pipe(g(o=>o.target===t),A(()=>r.unobserve(t)))),m(()=>de(e)),Q(de(e)))}function At(e){return{width:e.scrollWidth,height:e.scrollHeight}}function vr(e){let t=e.parentElement;for(;t&&(e.scrollWidth<=t.scrollWidth&&e.scrollHeight<=t.scrollHeight);)t=(e=t).parentElement;return t?e:void 0}function pn(e){let t=[],r=e.parentElement;for(;r;)(e.clientWidth>r.clientWidth||e.clientHeight>r.clientHeight)&&t.push(r),r=(e=r).parentElement;return t.length===0&&t.push(document.documentElement),t}function Be(e){return{x:e.offsetLeft,y:e.offsetTop}}function ln(e){let t=e.getBoundingClientRect();return{x:t.x+window.scrollX,y:t.y+window.scrollY}}function mn(e){return L(h(window,"load"),h(window,"resize")).pipe($e(0,ye),m(()=>Be(e)),Q(Be(e)))}function gr(e){return{x:e.scrollLeft,y:e.scrollTop}}function Ge(e){return L(h(e,"scroll"),h(window,"scroll"),h(window,"resize")).pipe($e(0,ye),m(()=>gr(e)),Q(gr(e)))}var fn=new T,Fa=H(()=>$(new IntersectionObserver(e=>{for(let t of e)fn.next(t)},{threshold:0}))).pipe(b(e=>L(tt,$(e)).pipe(A(()=>e.disconnect()))),Z(1));function mt(e){return Fa.pipe(O(t=>t.observe(e)),b(t=>fn.pipe(g(({target:r})=>r===e),A(()=>t.unobserve(e)),m(({isIntersecting:r})=>r))))}function un(e,t=16){return Ge(e).pipe(m(({y:r})=>{let o=de(e),n=At(e);return r>=n.height-o.height-t}),Y())}var yr={drawer:j("[data-md-toggle=drawer]"),search:j("[data-md-toggle=search]")};function dn(e){return yr[e].checked}function at(e,t){yr[e].checked!==t&&yr[e].click()}function Je(e){let t=yr[e];return h(t,"change").pipe(m(()=>t.checked),Q(t.checked))}function ja(e,t){switch(e.constructor){case HTMLInputElement:return e.type==="radio"?/^Arrow/.test(t):!0;case HTMLSelectElement:case HTMLTextAreaElement:return!0;default:return e.isContentEditable}}function Ua(){return L(h(window,"compositionstart").pipe(m(()=>!0)),h(window,"compositionend").pipe(m(()=>!1))).pipe(Q(!1))}function hn(){let e=h(window,"keydown").pipe(g(t=>!(t.metaKey||t.ctrlKey)),m(t=>({mode:dn("search")?"search":"global",type:t.key,claim(){t.preventDefault(),t.stopPropagation()}})),g(({mode:t,type:r})=>{if(t==="global"){let o=Ne();if(typeof o!="undefined")return!ja(o,r)}return!0}),le());return Ua().pipe(b(t=>t?y:e))}function we(){return new URL(location.href)}function st(e,t=!1){if(V("navigation.instant")&&!t){let r=x("a",{href:e.href});document.body.appendChild(r),r.click(),r.remove()}else location.href=e.href}function bn(){return new T}function vn(){return location.hash.slice(1)}function gn(e){let t=x("a",{href:e});t.addEventListener("click",r=>r.stopPropagation()),t.click()}function Zr(e){return L(h(window,"hashchange"),e).pipe(m(vn),Q(vn()),g(t=>t.length>0),Z(1))}function yn(e){return Zr(e).pipe(m(t=>ue(`[id="${t}"]`)),g(t=>typeof t!="undefined"))}function Wt(e){let t=matchMedia(e);return ur(r=>t.addListener(()=>r(t.matches))).pipe(Q(t.matches))}function xn(){let e=matchMedia("print");return L(h(window,"beforeprint").pipe(m(()=>!0)),h(window,"afterprint").pipe(m(()=>!1))).pipe(Q(e.matches))}function eo(e,t){return e.pipe(b(r=>r?t():y))}function to(e,t){return new F(r=>{let o=new XMLHttpRequest;return o.open("GET",`${e}`),o.responseType="blob",o.addEventListener("load",()=>{o.status>=200&&o.status<300?(r.next(o.response),r.complete()):r.error(new Error(o.statusText))}),o.addEventListener("error",()=>{r.error(new Error("Network error"))}),o.addEventListener("abort",()=>{r.complete()}),typeof(t==null?void 0:t.progress$)!="undefined"&&(o.addEventListener("progress",n=>{var i;if(n.lengthComputable)t.progress$.next(n.loaded/n.total*100);else{let s=(i=o.getResponseHeader("Content-Length"))!=null?i:0;t.progress$.next(n.loaded/+s*100)}}),t.progress$.next(5)),o.send(),()=>o.abort()})}function ze(e,t){return to(e,t).pipe(b(r=>r.text()),m(r=>JSON.parse(r)),Z(1))}function xr(e,t){let r=new DOMParser;return to(e,t).pipe(b(o=>o.text()),m(o=>r.parseFromString(o,"text/html")),Z(1))}function En(e,t){let r=new DOMParser;return to(e,t).pipe(b(o=>o.text()),m(o=>r.parseFromString(o,"text/xml")),Z(1))}function wn(){return{x:Math.max(0,scrollX),y:Math.max(0,scrollY)}}function Tn(){return L(h(window,"scroll",{passive:!0}),h(window,"resize",{passive:!0})).pipe(m(wn),Q(wn()))}function Sn(){return{width:innerWidth,height:innerHeight}}function On(){return h(window,"resize",{passive:!0}).pipe(m(Sn),Q(Sn()))}function Ln(){return z([Tn(),On()]).pipe(m(([e,t])=>({offset:e,size:t})),Z(1))}function Er(e,{viewport$:t,header$:r}){let o=t.pipe(ne("size")),n=z([o,r]).pipe(m(()=>Be(e)));return z([r,t,n]).pipe(m(([{height:i},{offset:s,size:a},{x:c,y:p}])=>({offset:{x:s.x-c,y:s.y-p+i},size:a})))}function Wa(e){return h(e,"message",t=>t.data)}function Da(e){let t=new T;return t.subscribe(r=>e.postMessage(r)),t}function Mn(e,t=new Worker(e)){let r=Wa(t),o=Da(t),n=new T;n.subscribe(o);let i=o.pipe(oe(),ae(!0));return n.pipe(oe(),Ve(r.pipe(W(i))),le())}var Va=j("#__config"),Ct=JSON.parse(Va.textContent);Ct.base=`${new URL(Ct.base,we())}`;function Te(){return Ct}function V(e){return Ct.features.includes(e)}function Me(e,t){return typeof t!="undefined"?Ct.translations[e].replace("#",t.toString()):Ct.translations[e]}function Ce(e,t=document){return j(`[data-md-component=${e}]`,t)}function me(e,t=document){return M(`[data-md-component=${e}]`,t)}function Na(e){let t=j(".md-typeset > :first-child",e);return h(t,"click",{once:!0}).pipe(m(()=>j(".md-typeset",e)),m(r=>({hash:__md_hash(r.innerHTML)})))}function _n(e){if(!V("announce.dismiss")||!e.childElementCount)return y;if(!e.hidden){let t=j(".md-typeset",e);__md_hash(t.innerHTML)===__md_get("__announce")&&(e.hidden=!0)}return H(()=>{let t=new T;return t.subscribe(({hash:r})=>{e.hidden=!0,__md_set("__announce",r)}),Na(e).pipe(O(r=>t.next(r)),A(()=>t.complete()),m(r=>P({ref:e},r)))})}function za(e,{target$:t}){return t.pipe(m(r=>({hidden:r!==e})))}function An(e,t){let r=new T;return r.subscribe(({hidden:o})=>{e.hidden=o}),za(e,t).pipe(O(o=>r.next(o)),A(()=>r.complete()),m(o=>P({ref:e},o)))}function Dt(e,t){return t==="inline"?x("div",{class:"md-tooltip md-tooltip--inline",id:e,role:"tooltip"},x("div",{class:"md-tooltip__inner md-typeset"})):x("div",{class:"md-tooltip",id:e,role:"tooltip"},x("div",{class:"md-tooltip__inner md-typeset"}))}function wr(...e){return x("div",{class:"md-tooltip2",role:"dialog"},x("div",{class:"md-tooltip2__inner md-typeset"},e))}function Cn(...e){return x("div",{class:"md-tooltip2",role:"tooltip"},x("div",{class:"md-tooltip2__inner md-typeset"},e))}function kn(e,t){if(t=t?`${t}_annotation_${e}`:void 0,t){let r=t?`#${t}`:void 0;return x("aside",{class:"md-annotation",tabIndex:0},Dt(t),x("a",{href:r,class:"md-annotation__index",tabIndex:-1},x("span",{"data-md-annotation-id":e})))}else return x("aside",{class:"md-annotation",tabIndex:0},Dt(t),x("span",{class:"md-annotation__index",tabIndex:-1},x("span",{"data-md-annotation-id":e})))}function Hn(e){return x("button",{class:"md-code__button",title:Me("clipboard.copy"),"data-clipboard-target":`#${e} > code`,"data-md-type":"copy"})}function $n(){return x("button",{class:"md-code__button",title:"Toggle line selection","data-md-type":"select"})}function Pn(){return x("nav",{class:"md-code__nav"})}var In=$t(ro());function oo(e,t){let r=t&2,o=t&1,n=Object.keys(e.terms).filter(c=>!e.terms[c]).reduce((c,p)=>[...c,x("del",null,(0,In.default)(p))," "],[]).slice(0,-1),i=Te(),s=new URL(e.location,i.base);V("search.highlight")&&s.searchParams.set("h",Object.entries(e.terms).filter(([,c])=>c).reduce((c,[p])=>`${c} ${p}`.trim(),""));let{tags:a}=Te();return x("a",{href:`${s}`,class:"md-search-result__link",tabIndex:-1},x("article",{class:"md-search-result__article md-typeset","data-md-score":e.score.toFixed(2)},r>0&&x("div",{class:"md-search-result__icon md-icon"}),r>0&&x("h1",null,e.title),r<=0&&x("h2",null,e.title),o>0&&e.text.length>0&&e.text,e.tags&&x("nav",{class:"md-tags"},e.tags.map(c=>{let p=a?c in a?`md-tag-icon md-tag--${a[c]}`:"md-tag-icon":"";return x("span",{class:`md-tag ${p}`},c)})),o>0&&n.length>0&&x("p",{class:"md-search-result__terms"},Me("search.result.term.missing"),": ",...n)))}function Fn(e){let t=e[0].score,r=[...e],o=Te(),n=r.findIndex(l=>!`${new URL(l.location,o.base)}`.includes("#")),[i]=r.splice(n,1),s=r.findIndex(l=>l.scoreoo(l,1)),...c.length?[x("details",{class:"md-search-result__more"},x("summary",{tabIndex:-1},x("div",null,c.length>0&&c.length===1?Me("search.result.more.one"):Me("search.result.more.other",c.length))),...c.map(l=>oo(l,1)))]:[]];return x("li",{class:"md-search-result__item"},p)}function jn(e){return x("ul",{class:"md-source__facts"},Object.entries(e).map(([t,r])=>x("li",{class:`md-source__fact md-source__fact--${t}`},typeof r=="number"?br(r):r)))}function no(e){let t=`tabbed-control tabbed-control--${e}`;return x("div",{class:t,hidden:!0},x("button",{class:"tabbed-button",tabIndex:-1,"aria-hidden":"true"}))}function Un(e){return x("div",{class:"md-typeset__scrollwrap"},x("div",{class:"md-typeset__table"},e))}function Qa(e){var o;let t=Te(),r=new URL(`../${e.version}/`,t.base);return x("li",{class:"md-version__item"},x("a",{href:`${r}`,class:"md-version__link"},e.title,((o=t.version)==null?void 0:o.alias)&&e.aliases.length>0&&x("span",{class:"md-version__alias"},e.aliases[0])))}function Wn(e,t){var o;let r=Te();return e=e.filter(n=>{var i;return!((i=n.properties)!=null&&i.hidden)}),x("div",{class:"md-version"},x("button",{class:"md-version__current","aria-label":Me("select.version")},t.title,((o=r.version)==null?void 0:o.alias)&&t.aliases.length>0&&x("span",{class:"md-version__alias"},t.aliases[0])),x("ul",{class:"md-version__list"},e.map(Qa)))}var Ya=0;function Ba(e,t=250){let r=z([Ye(e),it(e,t)]).pipe(m(([n,i])=>n||i),Y()),o=H(()=>pn(e)).pipe(J(Ge),gt(1),Pe(r),m(()=>ln(e)));return r.pipe(Re(n=>n),b(()=>z([r,o])),m(([n,i])=>({active:n,offset:i})),le())}function Vt(e,t,r=250){let{content$:o,viewport$:n}=t,i=`__tooltip2_${Ya++}`;return H(()=>{let s=new T,a=new jr(!1);s.pipe(oe(),ae(!1)).subscribe(a);let c=a.pipe(jt(l=>He(+!l*250,Dr)),Y(),b(l=>l?o:y),O(l=>l.id=i),le());z([s.pipe(m(({active:l})=>l)),c.pipe(b(l=>it(l,250)),Q(!1))]).pipe(m(l=>l.some(f=>f))).subscribe(a);let p=a.pipe(g(l=>l),te(c,n),m(([l,f,{size:u}])=>{let d=e.getBoundingClientRect(),v=d.width/2;if(f.role==="tooltip")return{x:v,y:8+d.height};if(d.y>=u.height/2){let{height:S}=de(f);return{x:v,y:-16-S}}else return{x:v,y:16+d.height}}));return z([c,s,p]).subscribe(([l,{offset:f},u])=>{l.style.setProperty("--md-tooltip-host-x",`${f.x}px`),l.style.setProperty("--md-tooltip-host-y",`${f.y}px`),l.style.setProperty("--md-tooltip-x",`${u.x}px`),l.style.setProperty("--md-tooltip-y",`${u.y}px`),l.classList.toggle("md-tooltip2--top",u.y<0),l.classList.toggle("md-tooltip2--bottom",u.y>=0)}),a.pipe(g(l=>l),te(c,(l,f)=>f),g(l=>l.role==="tooltip")).subscribe(l=>{let f=de(j(":scope > *",l));l.style.setProperty("--md-tooltip-width",`${f.width}px`),l.style.setProperty("--md-tooltip-tail","0px")}),a.pipe(Y(),xe(ye),te(c)).subscribe(([l,f])=>{f.classList.toggle("md-tooltip2--active",l)}),z([a.pipe(g(l=>l)),c]).subscribe(([l,f])=>{f.role==="dialog"?(e.setAttribute("aria-controls",i),e.setAttribute("aria-haspopup","dialog")):e.setAttribute("aria-describedby",i)}),a.pipe(g(l=>!l)).subscribe(()=>{e.removeAttribute("aria-controls"),e.removeAttribute("aria-describedby"),e.removeAttribute("aria-haspopup")}),Ba(e,r).pipe(O(l=>s.next(l)),A(()=>s.complete()),m(l=>P({ref:e},l)))})}function Xe(e,{viewport$:t},r=document.body){return Vt(e,{content$:new F(o=>{let n=e.title,i=Cn(n);return o.next(i),e.removeAttribute("title"),r.append(i),()=>{i.remove(),e.setAttribute("title",n)}}),viewport$:t},0)}function Ga(e,t){let r=H(()=>z([mn(e),Ge(t)])).pipe(m(([{x:o,y:n},i])=>{let{width:s,height:a}=de(e);return{x:o-i.x+s/2,y:n-i.y+a/2}}));return Ye(e).pipe(b(o=>r.pipe(m(n=>({active:o,offset:n})),Ee(+!o||1/0))))}function Dn(e,t,{target$:r}){let[o,n]=Array.from(e.children);return H(()=>{let i=new T,s=i.pipe(oe(),ae(!0));return i.subscribe({next({offset:a}){e.style.setProperty("--md-tooltip-x",`${a.x}px`),e.style.setProperty("--md-tooltip-y",`${a.y}px`)},complete(){e.style.removeProperty("--md-tooltip-x"),e.style.removeProperty("--md-tooltip-y")}}),mt(e).pipe(W(s)).subscribe(a=>{e.toggleAttribute("data-md-visible",a)}),L(i.pipe(g(({active:a})=>a)),i.pipe(Ae(250),g(({active:a})=>!a))).subscribe({next({active:a}){a?e.prepend(o):o.remove()},complete(){e.prepend(o)}}),i.pipe($e(16,ye)).subscribe(({active:a})=>{o.classList.toggle("md-tooltip--active",a)}),i.pipe(gt(125,ye),g(()=>!!e.offsetParent),m(()=>e.offsetParent.getBoundingClientRect()),m(({x:a})=>a)).subscribe({next(a){a?e.style.setProperty("--md-tooltip-0",`${-a}px`):e.style.removeProperty("--md-tooltip-0")},complete(){e.style.removeProperty("--md-tooltip-0")}}),h(n,"click").pipe(W(s),g(a=>!(a.metaKey||a.ctrlKey))).subscribe(a=>{a.stopPropagation(),a.preventDefault()}),h(n,"mousedown").pipe(W(s),te(i)).subscribe(([a,{active:c}])=>{var p;if(a.button!==0||a.metaKey||a.ctrlKey)a.preventDefault();else if(c){a.preventDefault();let l=e.parentElement.closest(".md-annotation");l instanceof HTMLElement?l.focus():(p=Ne())==null||p.blur()}}),r.pipe(W(s),g(a=>a===o),nt(125)).subscribe(()=>e.focus()),Ga(e,t).pipe(O(a=>i.next(a)),A(()=>i.complete()),m(a=>P({ref:e},a)))})}function Ja(e){let t=Te();if(e.tagName!=="CODE")return[e];let r=[".c",".c1",".cm"];if(t.annotate&&typeof t.annotate=="object"){let o=e.closest("[class|=language]");if(o)for(let n of Array.from(o.classList)){if(!n.startsWith("language-"))continue;let[,i]=n.split("-");i in t.annotate&&r.push(...t.annotate[i])}}return M(r.join(", "),e)}function Xa(e){let t=[];for(let r of Ja(e)){let o=[],n=document.createNodeIterator(r,NodeFilter.SHOW_TEXT);for(let i=n.nextNode();i;i=n.nextNode())o.push(i);for(let i of o){let s;for(;s=/(\(\d+\))(!)?/.exec(i.textContent);){let[,a,c]=s;if(typeof c=="undefined"){let p=i.splitText(s.index);i=p.splitText(a.length),t.push(p)}else{i.textContent=a,t.push(i);break}}}}return t}function Vn(e,t){t.append(...Array.from(e.childNodes))}function Tr(e,t,{target$:r,print$:o}){let n=t.closest("[id]"),i=n==null?void 0:n.id,s=new Map;for(let a of Xa(t)){let[,c]=a.textContent.match(/\((\d+)\)/);ue(`:scope > li:nth-child(${c})`,e)&&(s.set(c,kn(c,i)),a.replaceWith(s.get(c)))}return s.size===0?y:H(()=>{let a=new T,c=a.pipe(oe(),ae(!0)),p=[];for(let[l,f]of s)p.push([j(".md-typeset",f),j(`:scope > li:nth-child(${l})`,e)]);return o.pipe(W(c)).subscribe(l=>{e.hidden=!l,e.classList.toggle("md-annotation-list",l);for(let[f,u]of p)l?Vn(f,u):Vn(u,f)}),L(...[...s].map(([,l])=>Dn(l,t,{target$:r}))).pipe(A(()=>a.complete()),le())})}function Nn(e){if(e.nextElementSibling){let t=e.nextElementSibling;if(t.tagName==="OL")return t;if(t.tagName==="P"&&!t.children.length)return Nn(t)}}function zn(e,t){return H(()=>{let r=Nn(e);return typeof r!="undefined"?Tr(r,e,t):y})}var Kn=$t(ao());var Za=0,qn=L(h(window,"keydown").pipe(m(()=>!0)),L(h(window,"keyup"),h(window,"contextmenu")).pipe(m(()=>!1))).pipe(Q(!1),Z(1));function Qn(e){if(e.nextElementSibling){let t=e.nextElementSibling;if(t.tagName==="OL")return t;if(t.tagName==="P"&&!t.children.length)return Qn(t)}}function es(e){return Le(e).pipe(m(({width:t})=>({scrollable:At(e).width>t})),ne("scrollable"))}function Yn(e,t){let{matches:r}=matchMedia("(hover)"),o=H(()=>{let n=new T,i=n.pipe(Yr(1));n.subscribe(({scrollable:d})=>{d&&r?e.setAttribute("tabindex","0"):e.removeAttribute("tabindex")});let s=[],a=e.closest("pre"),c=a.closest("[id]"),p=c?c.id:Za++;a.id=`__code_${p}`;let l=[],f=e.closest(".highlight");if(f instanceof HTMLElement){let d=Qn(f);if(typeof d!="undefined"&&(f.classList.contains("annotate")||V("content.code.annotate"))){let v=Tr(d,e,t);l.push(Le(f).pipe(W(i),m(({width:S,height:X})=>S&&X),Y(),b(S=>S?v:y)))}}let u=M(":scope > span[id]",e);if(u.length&&(e.classList.add("md-code__content"),e.closest(".select")||V("content.code.select")&&!e.closest(".no-select"))){let d=+u[0].id.split("-").pop(),v=$n();s.push(v),V("content.tooltips")&&l.push(Xe(v,{viewport$}));let S=h(v,"click").pipe(Ut(R=>!R,!1),O(()=>v.blur()),le());S.subscribe(R=>{v.classList.toggle("md-code__button--active",R)});let X=fe(u).pipe(J(R=>it(R).pipe(m(se=>[R,se]))));S.pipe(b(R=>R?X:y)).subscribe(([R,se])=>{let ce=ue(".hll.select",R);if(ce&&!se)ce.replaceWith(...Array.from(ce.childNodes));else if(!ce&&se){let he=document.createElement("span");he.className="hll select",he.append(...Array.from(R.childNodes).slice(1)),R.append(he)}});let re=fe(u).pipe(J(R=>h(R,"mousedown").pipe(O(se=>se.preventDefault()),m(()=>R)))),ee=S.pipe(b(R=>R?re:y),te(qn),m(([R,se])=>{var he;let ce=u.indexOf(R)+d;if(se===!1)return[ce,ce];{let Se=M(".hll",e).map(Ue=>u.indexOf(Ue.parentElement)+d);return(he=window.getSelection())==null||he.removeAllRanges(),[Math.min(ce,...Se),Math.max(ce,...Se)]}})),k=Zr(y).pipe(g(R=>R.startsWith(`__codelineno-${p}-`)));k.subscribe(R=>{let[,,se]=R.split("-"),ce=se.split(":").map(Se=>+Se-d+1);ce.length===1&&ce.push(ce[0]);for(let Se of M(".hll:not(.select)",e))Se.replaceWith(...Array.from(Se.childNodes));let he=u.slice(ce[0]-1,ce[1]);for(let Se of he){let Ue=document.createElement("span");Ue.className="hll",Ue.append(...Array.from(Se.childNodes).slice(1)),Se.append(Ue)}}),k.pipe(Ee(1),xe(pe)).subscribe(R=>{if(R.includes(":")){let se=document.getElementById(R.split(":")[0]);se&&setTimeout(()=>{let ce=se,he=-64;for(;ce!==document.body;)he+=ce.offsetTop,ce=ce.offsetParent;window.scrollTo({top:he})},1)}});let je=fe(M('a[href^="#__codelineno"]',f)).pipe(J(R=>h(R,"click").pipe(O(se=>se.preventDefault()),m(()=>R)))).pipe(W(i),te(qn),m(([R,se])=>{let he=+j(`[id="${R.hash.slice(1)}"]`).parentElement.id.split("-").pop();if(se===!1)return[he,he];{let Se=M(".hll",e).map(Ue=>+Ue.parentElement.id.split("-").pop());return[Math.min(he,...Se),Math.max(he,...Se)]}}));L(ee,je).subscribe(R=>{let se=`#__codelineno-${p}-`;R[0]===R[1]?se+=R[0]:se+=`${R[0]}:${R[1]}`,history.replaceState({},"",se),window.dispatchEvent(new HashChangeEvent("hashchange",{newURL:window.location.origin+window.location.pathname+se,oldURL:window.location.href}))})}if(Kn.default.isSupported()&&(e.closest(".copy")||V("content.code.copy")&&!e.closest(".no-copy"))){let d=Hn(a.id);s.push(d),V("content.tooltips")&&l.push(Xe(d,{viewport$}))}if(s.length){let d=Pn();d.append(...s),a.insertBefore(d,e)}return es(e).pipe(O(d=>n.next(d)),A(()=>n.complete()),m(d=>P({ref:e},d)),Ve(L(...l).pipe(W(i))))});return V("content.lazy")?mt(e).pipe(g(n=>n),Ee(1),b(()=>o)):o}function ts(e,{target$:t,print$:r}){let o=!0;return L(t.pipe(m(n=>n.closest("details:not([open])")),g(n=>e===n),m(()=>({action:"open",reveal:!0}))),r.pipe(g(n=>n||!o),O(()=>o=e.open),m(n=>({action:n?"open":"close"}))))}function Bn(e,t){return H(()=>{let r=new T;return r.subscribe(({action:o,reveal:n})=>{e.toggleAttribute("open",o==="open"),n&&e.scrollIntoView()}),ts(e,t).pipe(O(o=>r.next(o)),A(()=>r.complete()),m(o=>P({ref:e},o)))})}var Gn=0;function rs(e){let t=document.createElement("h3");t.innerHTML=e.innerHTML;let r=[t],o=e.nextElementSibling;for(;o&&!(o instanceof HTMLHeadingElement);)r.push(o),o=o.nextElementSibling;return r}function os(e,t){for(let r of M("[href], [src]",e))for(let o of["href","src"]){let n=r.getAttribute(o);if(n&&!/^(?:[a-z]+:)?\/\//i.test(n)){r[o]=new URL(r.getAttribute(o),t).toString();break}}for(let r of M("[name^=__], [for]",e))for(let o of["id","for","name"]){let n=r.getAttribute(o);n&&r.setAttribute(o,`${n}$preview_${Gn}`)}return Gn++,$(e)}function Jn(e,t){let{sitemap$:r}=t;if(!(e instanceof HTMLAnchorElement))return y;if(!(V("navigation.instant.preview")||e.hasAttribute("data-preview")))return y;e.removeAttribute("title");let o=z([Ye(e),it(e)]).pipe(m(([i,s])=>i||s),Y(),g(i=>i));return rt([r,o]).pipe(b(([i])=>{let s=new URL(e.href);return s.search=s.hash="",i.has(`${s}`)?$(s):y}),b(i=>xr(i).pipe(b(s=>os(s,i)))),b(i=>{let s=e.hash?`article [id="${e.hash.slice(1)}"]`:"article h1",a=ue(s,i);return typeof a=="undefined"?y:$(rs(a))})).pipe(b(i=>{let s=new F(a=>{let c=wr(...i);return a.next(c),document.body.append(c),()=>c.remove()});return Vt(e,P({content$:s},t))}))}var Xn=".node circle,.node ellipse,.node path,.node polygon,.node rect{fill:var(--md-mermaid-node-bg-color);stroke:var(--md-mermaid-node-fg-color)}marker{fill:var(--md-mermaid-edge-color)!important}.edgeLabel .label rect{fill:#0000}.flowchartTitleText{fill:var(--md-mermaid-label-fg-color)}.label{color:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}.label foreignObject{line-height:normal;overflow:visible}.label div .edgeLabel{color:var(--md-mermaid-label-fg-color)}.edgeLabel,.edgeLabel p,.label div .edgeLabel{background-color:var(--md-mermaid-label-bg-color)}.edgeLabel,.edgeLabel p{fill:var(--md-mermaid-label-bg-color);color:var(--md-mermaid-edge-color)}.edgePath .path,.flowchart-link{stroke:var(--md-mermaid-edge-color)}.edgePath .arrowheadPath{fill:var(--md-mermaid-edge-color);stroke:none}.cluster rect{fill:var(--md-default-fg-color--lightest);stroke:var(--md-default-fg-color--lighter)}.cluster span{color:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}g #flowchart-circleEnd,g #flowchart-circleStart,g #flowchart-crossEnd,g #flowchart-crossStart,g #flowchart-pointEnd,g #flowchart-pointStart{stroke:none}.classDiagramTitleText{fill:var(--md-mermaid-label-fg-color)}g.classGroup line,g.classGroup rect{fill:var(--md-mermaid-node-bg-color);stroke:var(--md-mermaid-node-fg-color)}g.classGroup text{fill:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}.classLabel .box{fill:var(--md-mermaid-label-bg-color);background-color:var(--md-mermaid-label-bg-color);opacity:1}.classLabel .label{fill:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}.node .divider{stroke:var(--md-mermaid-node-fg-color)}.relation{stroke:var(--md-mermaid-edge-color)}.cardinality{fill:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}.cardinality text{fill:inherit!important}defs marker.marker.composition.class path,defs marker.marker.dependency.class path,defs marker.marker.extension.class path{fill:var(--md-mermaid-edge-color)!important;stroke:var(--md-mermaid-edge-color)!important}defs marker.marker.aggregation.class path{fill:var(--md-mermaid-label-bg-color)!important;stroke:var(--md-mermaid-edge-color)!important}.statediagramTitleText{fill:var(--md-mermaid-label-fg-color)}g.stateGroup rect{fill:var(--md-mermaid-node-bg-color);stroke:var(--md-mermaid-node-fg-color)}g.stateGroup .state-title{fill:var(--md-mermaid-label-fg-color)!important;font-family:var(--md-mermaid-font-family)}g.stateGroup .composit{fill:var(--md-mermaid-label-bg-color)}.nodeLabel,.nodeLabel p{color:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}a .nodeLabel{text-decoration:underline}.node circle.state-end,.node circle.state-start,.start-state{fill:var(--md-mermaid-edge-color);stroke:none}.end-state-inner,.end-state-outer{fill:var(--md-mermaid-edge-color)}.end-state-inner,.node circle.state-end{stroke:var(--md-mermaid-label-bg-color)}.transition{stroke:var(--md-mermaid-edge-color)}[id^=state-fork] rect,[id^=state-join] rect{fill:var(--md-mermaid-edge-color)!important;stroke:none!important}.statediagram-cluster.statediagram-cluster .inner{fill:var(--md-default-bg-color)}.statediagram-cluster rect{fill:var(--md-mermaid-node-bg-color);stroke:var(--md-mermaid-node-fg-color)}.statediagram-state rect.divider{fill:var(--md-default-fg-color--lightest);stroke:var(--md-default-fg-color--lighter)}defs #statediagram-barbEnd{stroke:var(--md-mermaid-edge-color)}[id^=entity] path,[id^=entity] rect{fill:var(--md-default-bg-color)}.relationshipLine{stroke:var(--md-mermaid-edge-color)}defs .marker.oneOrMore.er *,defs .marker.onlyOne.er *,defs .marker.zeroOrMore.er *,defs .marker.zeroOrOne.er *{stroke:var(--md-mermaid-edge-color)!important}text:not([class]):last-child{fill:var(--md-mermaid-label-fg-color)}.actor{fill:var(--md-mermaid-sequence-actor-bg-color);stroke:var(--md-mermaid-sequence-actor-border-color)}text.actor>tspan{fill:var(--md-mermaid-sequence-actor-fg-color);font-family:var(--md-mermaid-font-family)}line{stroke:var(--md-mermaid-sequence-actor-line-color)}.actor-man circle,.actor-man line{fill:var(--md-mermaid-sequence-actorman-bg-color);stroke:var(--md-mermaid-sequence-actorman-line-color)}.messageLine0,.messageLine1{stroke:var(--md-mermaid-sequence-message-line-color)}.note{fill:var(--md-mermaid-sequence-note-bg-color);stroke:var(--md-mermaid-sequence-note-border-color)}.loopText,.loopText>tspan,.messageText,.noteText>tspan{stroke:none;font-family:var(--md-mermaid-font-family)!important}.messageText{fill:var(--md-mermaid-sequence-message-fg-color)}.loopText,.loopText>tspan{fill:var(--md-mermaid-sequence-loop-fg-color)}.noteText>tspan{fill:var(--md-mermaid-sequence-note-fg-color)}#arrowhead path{fill:var(--md-mermaid-sequence-message-line-color);stroke:none}.loopLine{fill:var(--md-mermaid-sequence-loop-bg-color);stroke:var(--md-mermaid-sequence-loop-border-color)}.labelBox{fill:var(--md-mermaid-sequence-label-bg-color);stroke:none}.labelText,.labelText>span{fill:var(--md-mermaid-sequence-label-fg-color);font-family:var(--md-mermaid-font-family)}.sequenceNumber{fill:var(--md-mermaid-sequence-number-fg-color)}rect.rect{fill:var(--md-mermaid-sequence-box-bg-color);stroke:none}rect.rect+text.text{fill:var(--md-mermaid-sequence-box-fg-color)}defs #sequencenumber{fill:var(--md-mermaid-sequence-number-bg-color)!important}";var so,is=0;function as(){return typeof mermaid=="undefined"||mermaid instanceof Element?_t("https://unpkg.com/mermaid@11/dist/mermaid.min.js"):$(void 0)}function Zn(e){return e.classList.remove("mermaid"),so||(so=as().pipe(O(()=>mermaid.initialize({startOnLoad:!1,themeCSS:Xn,sequence:{actorFontSize:"16px",messageFontSize:"16px",noteFontSize:"16px"}})),m(()=>{}),Z(1))),so.subscribe(()=>go(null,null,function*(){e.classList.add("mermaid");let t=`__mermaid_${is++}`,r=x("div",{class:"mermaid"}),o=e.textContent,{svg:n,fn:i}=yield mermaid.render(t,o),s=r.attachShadow({mode:"closed"});s.innerHTML=n,e.replaceWith(r),i==null||i(s)})),so.pipe(m(()=>({ref:e})))}var ei=x("table");function ti(e){return e.replaceWith(ei),ei.replaceWith(Un(e)),$({ref:e})}function ss(e){let t=e.find(r=>r.checked)||e[0];return L(...e.map(r=>h(r,"change").pipe(m(()=>j(`label[for="${r.id}"]`))))).pipe(Q(j(`label[for="${t.id}"]`)),m(r=>({active:r})))}function ri(e,{viewport$:t,target$:r}){let o=j(".tabbed-labels",e),n=M(":scope > input",e),i=no("prev");e.append(i);let s=no("next");return e.append(s),H(()=>{let a=new T,c=a.pipe(oe(),ae(!0));z([a,Le(e),mt(e)]).pipe(W(c),$e(1,ye)).subscribe({next([{active:p},l]){let f=Be(p),{width:u}=de(p);e.style.setProperty("--md-indicator-x",`${f.x}px`),e.style.setProperty("--md-indicator-width",`${u}px`);let d=gr(o);(f.xd.x+l.width)&&o.scrollTo({left:Math.max(0,f.x-16),behavior:"smooth"})},complete(){e.style.removeProperty("--md-indicator-x"),e.style.removeProperty("--md-indicator-width")}}),z([Ge(o),Le(o)]).pipe(W(c)).subscribe(([p,l])=>{let f=At(o);i.hidden=p.x<16,s.hidden=p.x>f.width-l.width-16}),L(h(i,"click").pipe(m(()=>-1)),h(s,"click").pipe(m(()=>1))).pipe(W(c)).subscribe(p=>{let{width:l}=de(o);o.scrollBy({left:l*p,behavior:"smooth"})}),r.pipe(W(c),g(p=>n.includes(p))).subscribe(p=>p.click()),o.classList.add("tabbed-labels--linked");for(let p of n){let l=j(`label[for="${p.id}"]`);l.replaceChildren(x("a",{href:`#${l.htmlFor}`,tabIndex:-1},...Array.from(l.childNodes))),h(l.firstElementChild,"click").pipe(W(c),g(f=>!(f.metaKey||f.ctrlKey)),O(f=>{f.preventDefault(),f.stopPropagation()})).subscribe(()=>{history.replaceState({},"",`#${l.htmlFor}`),l.click()})}return V("content.tabs.link")&&a.pipe(Ie(1),te(t)).subscribe(([{active:p},{offset:l}])=>{let f=p.innerText.trim();if(p.hasAttribute("data-md-switching"))p.removeAttribute("data-md-switching");else{let u=e.offsetTop-l.y;for(let v of M("[data-tabs]"))for(let S of M(":scope > input",v)){let X=j(`label[for="${S.id}"]`);if(X!==p&&X.innerText.trim()===f){X.setAttribute("data-md-switching",""),S.click();break}}window.scrollTo({top:e.offsetTop-u});let d=__md_get("__tabs")||[];__md_set("__tabs",[...new Set([f,...d])])}}),a.pipe(W(c)).subscribe(()=>{for(let p of M("audio, video",e))p.offsetWidth&&p.autoplay?p.play().catch(()=>{}):p.pause()}),ss(n).pipe(O(p=>a.next(p)),A(()=>a.complete()),m(p=>P({ref:e},p)))}).pipe(et(pe))}function oi(e,t){let{viewport$:r,target$:o,print$:n}=t;return L(...M(".annotate:not(.highlight)",e).map(i=>zn(i,{target$:o,print$:n})),...M("pre:not(.mermaid) > code",e).map(i=>Yn(i,{target$:o,print$:n})),...M("a",e).map(i=>Jn(i,t)),...M("pre.mermaid",e).map(i=>Zn(i)),...M("table:not([class])",e).map(i=>ti(i)),...M("details",e).map(i=>Bn(i,{target$:o,print$:n})),...M("[data-tabs]",e).map(i=>ri(i,{viewport$:r,target$:o})),...M("[title]:not([data-preview])",e).filter(()=>V("content.tooltips")).map(i=>Xe(i,{viewport$:r})),...M(".footnote-ref",e).filter(()=>V("content.footnote.tooltips")).map(i=>Vt(i,{content$:new F(s=>{let a=new URL(i.href).hash.slice(1),c=Array.from(document.getElementById(a).cloneNode(!0).children),p=wr(...c);return s.next(p),document.body.append(p),()=>p.remove()}),viewport$:r})))}function cs(e,{alert$:t}){return t.pipe(b(r=>L($(!0),$(!1).pipe(nt(2e3))).pipe(m(o=>({message:r,active:o})))))}function ni(e,t){let r=j(".md-typeset",e);return H(()=>{let o=new T;return o.subscribe(({message:n,active:i})=>{e.classList.toggle("md-dialog--active",i),r.textContent=n}),cs(e,t).pipe(O(n=>o.next(n)),A(()=>o.complete()),m(n=>P({ref:e},n)))})}var ps=0;function ls(e,t){document.body.append(e);let{width:r}=de(e);e.style.setProperty("--md-tooltip-width",`${r}px`),e.remove();let o=vr(t),n=typeof o!="undefined"?Ge(o):$({x:0,y:0}),i=L(Ye(t),it(t)).pipe(Y());return z([i,n]).pipe(m(([s,a])=>{let{x:c,y:p}=Be(t),l=de(t),f=t.closest("table");return f&&t.parentElement&&(c+=f.offsetLeft+t.parentElement.offsetLeft,p+=f.offsetTop+t.parentElement.offsetTop),{active:s,offset:{x:c-a.x+l.width/2-r/2,y:p-a.y+l.height+8}}}))}function ii(e){let t=e.title;if(!t.length)return y;let r=`__tooltip_${ps++}`,o=Dt(r,"inline"),n=j(".md-typeset",o);return n.innerHTML=t,H(()=>{let i=new T;return i.subscribe({next({offset:s}){o.style.setProperty("--md-tooltip-x",`${s.x}px`),o.style.setProperty("--md-tooltip-y",`${s.y}px`)},complete(){o.style.removeProperty("--md-tooltip-x"),o.style.removeProperty("--md-tooltip-y")}}),L(i.pipe(g(({active:s})=>s)),i.pipe(Ae(250),g(({active:s})=>!s))).subscribe({next({active:s}){s?(e.insertAdjacentElement("afterend",o),e.setAttribute("aria-describedby",r),e.removeAttribute("title")):(o.remove(),e.removeAttribute("aria-describedby"),e.setAttribute("title",t))},complete(){o.remove(),e.removeAttribute("aria-describedby"),e.setAttribute("title",t)}}),i.pipe($e(16,ye)).subscribe(({active:s})=>{o.classList.toggle("md-tooltip--active",s)}),i.pipe(gt(125,ye),g(()=>!!e.offsetParent),m(()=>e.offsetParent.getBoundingClientRect()),m(({x:s})=>s)).subscribe({next(s){s?o.style.setProperty("--md-tooltip-0",`${-s}px`):o.style.removeProperty("--md-tooltip-0")},complete(){o.style.removeProperty("--md-tooltip-0")}}),ls(o,e).pipe(O(s=>i.next(s)),A(()=>i.complete()),m(s=>P({ref:e},s)))}).pipe(et(pe))}function ms({viewport$:e}){if(!V("header.autohide"))return $(!1);let t=e.pipe(m(({offset:{y:n}})=>n),ot(2,1),m(([n,i])=>[nMath.abs(i-n.y)>100),m(([,[n]])=>n),Y()),o=Je("search");return z([e,o]).pipe(m(([{offset:n},i])=>n.y>400&&!i),Y(),b(n=>n?r:$(!1)),Q(!1))}function ai(e,t){return H(()=>z([Le(e),ms(t)])).pipe(m(([{height:r},o])=>({height:r,hidden:o})),Y((r,o)=>r.height===o.height&&r.hidden===o.hidden),Z(1))}function si(e,{header$:t,main$:r}){return H(()=>{let o=new T,n=o.pipe(oe(),ae(!0));o.pipe(ne("active"),Pe(t)).subscribe(([{active:s},{hidden:a}])=>{e.classList.toggle("md-header--shadow",s&&!a),e.hidden=a});let i=fe(M("[title]",e)).pipe(g(()=>V("content.tooltips")),J(s=>ii(s)));return r.subscribe(o),t.pipe(W(n),m(s=>P({ref:e},s)),Ve(i.pipe(W(n))))})}function fs(e,{viewport$:t,header$:r}){return Er(e,{viewport$:t,header$:r}).pipe(m(({offset:{y:o}})=>{let{height:n}=de(e);return{active:n>0&&o>=n}}),ne("active"))}function ci(e,t){return H(()=>{let r=new T;r.subscribe({next({active:n}){e.classList.toggle("md-header__title--active",n)},complete(){e.classList.remove("md-header__title--active")}});let o=ue(".md-content h1");return typeof o=="undefined"?y:fs(o,t).pipe(O(n=>r.next(n)),A(()=>r.complete()),m(n=>P({ref:e},n)))})}function pi(e,{viewport$:t,header$:r}){let o=r.pipe(m(({height:i})=>i),Y()),n=o.pipe(b(()=>Le(e).pipe(m(({height:i})=>({top:e.offsetTop,bottom:e.offsetTop+i})),ne("bottom"))));return z([o,n,t]).pipe(m(([i,{top:s,bottom:a},{offset:{y:c},size:{height:p}}])=>(p=Math.max(0,p-Math.max(0,s-c,i)-Math.max(0,p+c-a)),{offset:s-i,height:p,active:s-i<=c})),Y((i,s)=>i.offset===s.offset&&i.height===s.height&&i.active===s.active))}function us(e){let t=__md_get("__palette")||{index:e.findIndex(o=>matchMedia(o.getAttribute("data-md-color-media")).matches)},r=Math.max(0,Math.min(t.index,e.length-1));return $(...e).pipe(J(o=>h(o,"change").pipe(m(()=>o))),Q(e[r]),m(o=>({index:e.indexOf(o),color:{media:o.getAttribute("data-md-color-media"),scheme:o.getAttribute("data-md-color-scheme"),primary:o.getAttribute("data-md-color-primary"),accent:o.getAttribute("data-md-color-accent")}})),Z(1))}function li(e){let t=M("input",e),r=x("meta",{name:"theme-color"});document.head.appendChild(r);let o=x("meta",{name:"color-scheme"});document.head.appendChild(o);let n=Wt("(prefers-color-scheme: light)");return H(()=>{let i=new T;return i.subscribe(s=>{if(document.body.setAttribute("data-md-color-switching",""),s.color.media==="(prefers-color-scheme)"){let a=matchMedia("(prefers-color-scheme: light)"),c=document.querySelector(a.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']");s.color.scheme=c.getAttribute("data-md-color-scheme"),s.color.primary=c.getAttribute("data-md-color-primary"),s.color.accent=c.getAttribute("data-md-color-accent")}for(let[a,c]of Object.entries(s.color))document.body.setAttribute(`data-md-color-${a}`,c);for(let a=0;as.key==="Enter"),te(i,(s,a)=>a)).subscribe(({index:s})=>{s=(s+1)%t.length,t[s].click(),t[s].focus()}),i.pipe(m(()=>{let s=Ce("header"),a=window.getComputedStyle(s);return o.content=a.colorScheme,a.backgroundColor.match(/\d+/g).map(c=>(+c).toString(16).padStart(2,"0")).join("")})).subscribe(s=>r.content=`#${s}`),i.pipe(xe(pe)).subscribe(()=>{document.body.removeAttribute("data-md-color-switching")}),us(t).pipe(W(n.pipe(Ie(1))),vt(),O(s=>i.next(s)),A(()=>i.complete()),m(s=>P({ref:e},s)))})}function mi(e,{progress$:t}){return H(()=>{let r=new T;return r.subscribe(({value:o})=>{e.style.setProperty("--md-progress-value",`${o}`)}),t.pipe(O(o=>r.next({value:o})),A(()=>r.complete()),m(o=>({ref:e,value:o})))})}function fi(e,t){return e.protocol=t.protocol,e.hostname=t.hostname,e}function ds(e,t){let r=new Map;for(let o of M("url",e)){let n=j("loc",o),i=[fi(new URL(n.textContent),t)];r.set(`${i[0]}`,i);for(let s of M("[rel=alternate]",o)){let a=s.getAttribute("href");a!=null&&i.push(fi(new URL(a),t))}}return r}function kt(e){return En(new URL("sitemap.xml",e)).pipe(m(t=>ds(t,new URL(e))),ve(()=>$(new Map)),le())}function ui({document$:e}){let t=new Map;e.pipe(b(()=>M("link[rel=alternate]")),m(r=>new URL(r.href)),g(r=>!t.has(r.toString())),J(r=>kt(r).pipe(m(o=>[r,o]),ve(()=>y)))).subscribe(([r,o])=>{t.set(r.toString().replace(/\/$/,""),o)}),h(document.body,"click").pipe(g(r=>!r.metaKey&&!r.ctrlKey),b(r=>{if(r.target instanceof Element){let o=r.target.closest("a");if(o&&!o.target){let n=[...t].find(([f])=>o.href.startsWith(`${f}/`));if(typeof n=="undefined")return y;let[i,s]=n,a=we();if(a.href.startsWith(i))return y;let c=Te(),p=a.href.replace(c.base,"");p=`${i}/${p}`;let l=s.has(p.split("#")[0])?new URL(p,c.base):new URL(i);return r.preventDefault(),$(l)}}return y})).subscribe(r=>st(r,!0))}var co=$t(ao());function hs(e){e.setAttribute("data-md-copying","");let t=e.closest("[data-copy]"),r=t?t.getAttribute("data-copy"):e.innerText;return e.removeAttribute("data-md-copying"),r.trimEnd()}function di({alert$:e}){co.default.isSupported()&&new F(t=>{new co.default("[data-clipboard-target], [data-clipboard-text]",{text:r=>r.getAttribute("data-clipboard-text")||hs(j(r.getAttribute("data-clipboard-target")))}).on("success",r=>t.next(r))}).pipe(O(t=>{t.trigger.focus()}),m(()=>Me("clipboard.copied"))).subscribe(e)}function hi(e,t){if(!(e.target instanceof Element))return y;let r=e.target.closest("a");if(r===null)return y;if(r.target||e.metaKey||e.ctrlKey)return y;let o=new URL(r.href);return o.search=o.hash="",t.has(`${o}`)?(e.preventDefault(),$(r)):y}function bi(e){let t=new Map;for(let r of M(":scope > *",e.head))t.set(r.outerHTML,r);return t}function vi(e){for(let t of M("[href], [src]",e))for(let r of["href","src"]){let o=t.getAttribute(r);if(o&&!/^(?:[a-z]+:)?\/\//i.test(o)){t[r]=t[r];break}}return $(e)}function bs(e){for(let o of["[data-md-component=announce]","[data-md-component=container]","[data-md-component=header-topic]","[data-md-component=outdated]","[data-md-component=logo]","[data-md-component=skip]",...V("navigation.tabs.sticky")?["[data-md-component=tabs]"]:[]]){let n=ue(o),i=ue(o,e);typeof n!="undefined"&&typeof i!="undefined"&&n.replaceWith(i)}let t=bi(document);for(let[o,n]of bi(e))t.has(o)?t.delete(o):document.head.appendChild(n);for(let o of t.values()){let n=o.getAttribute("name");n!=="theme-color"&&n!=="color-scheme"&&o.remove()}let r=Ce("container");return Ke(M("script",r)).pipe(b(o=>{let n=e.createElement("script");if(o.src){for(let i of o.getAttributeNames())n.setAttribute(i,o.getAttribute(i));return o.replaceWith(n),new F(i=>{n.onload=()=>i.complete()})}else return n.textContent=o.textContent,o.replaceWith(n),y}),oe(),ae(document))}function gi({sitemap$:e,location$:t,viewport$:r,progress$:o}){if(location.protocol==="file:")return y;$(document).subscribe(vi);let n=h(document.body,"click").pipe(Pe(e),b(([a,c])=>hi(a,c)),m(({href:a})=>new URL(a)),le()),i=h(window,"popstate").pipe(m(we),le());n.pipe(te(r)).subscribe(([a,{offset:c}])=>{history.replaceState(c,""),history.pushState(null,"",a)}),L(n,i).subscribe(t);let s=t.pipe(ne("pathname"),b(a=>xr(a,{progress$:o}).pipe(ve(()=>(st(a,!0),y)))),b(vi),b(bs),le());return L(s.pipe(te(t,(a,c)=>c)),s.pipe(b(()=>t),ne("hash")),t.pipe(Y((a,c)=>a.pathname===c.pathname&&a.hash===c.hash),b(()=>n),O(()=>history.back()))).subscribe(a=>{var c,p;history.state!==null||!a.hash?window.scrollTo(0,(p=(c=history.state)==null?void 0:c.y)!=null?p:0):(history.scrollRestoration="auto",gn(a.hash),history.scrollRestoration="manual")}),t.subscribe(()=>{history.scrollRestoration="manual"}),h(window,"beforeunload").subscribe(()=>{history.scrollRestoration="auto"}),r.pipe(ne("offset"),Ae(100)).subscribe(({offset:a})=>{history.replaceState(a,"")}),V("navigation.instant.prefetch")&&L(h(document.body,"mousemove"),h(document.body,"focusin")).pipe(Pe(e),b(([a,c])=>hi(a,c)),Ae(25),Qr(({href:a})=>a),hr(a=>{let c=document.createElement("link");return c.rel="prefetch",c.href=a.toString(),document.head.appendChild(c),h(c,"load").pipe(m(()=>c),Ee(1))})).subscribe(a=>a.remove()),s}var yi=$t(ro());function xi(e){let t=e.separator.split("|").map(n=>n.replace(/(\(\?[!=<][^)]+\))/g,"").length===0?"\uFFFD":n).join("|"),r=new RegExp(t,"img"),o=(n,i,s)=>`${i}${s}`;return n=>{n=n.replace(/[\s*+\-:~^]+/g," ").replace(/&/g,"&").trim();let i=new RegExp(`(^|${e.separator}|)(${n.replace(/[|\\{}()[\]^$+*?.-]/g,"\\$&").replace(r,"|")})`,"img");return s=>(0,yi.default)(s).replace(i,o).replace(/<\/mark>(\s+)]*>/img,"$1")}}function zt(e){return e.type===1}function Sr(e){return e.type===3}function Ei(e,t){let r=Mn(e);return L($(location.protocol!=="file:"),Je("search")).pipe(Re(o=>o),b(()=>t)).subscribe(({config:o,docs:n})=>r.next({type:0,data:{config:o,docs:n,options:{suggest:V("search.suggest")}}})),r}function wi(e){var l;let{selectedVersionSitemap:t,selectedVersionBaseURL:r,currentLocation:o,currentBaseURL:n}=e,i=(l=po(n))==null?void 0:l.pathname;if(i===void 0)return;let s=ys(o.pathname,i);if(s===void 0)return;let a=Es(t.keys());if(!t.has(a))return;let c=po(s,a);if(!c||!t.has(c.href))return;let p=po(s,r);if(p)return p.hash=o.hash,p.search=o.search,p}function po(e,t){try{return new URL(e,t)}catch(r){return}}function ys(e,t){if(e.startsWith(t))return e.slice(t.length)}function xs(e,t){let r=Math.min(e.length,t.length),o;for(o=0;oy)),o=r.pipe(m(n=>{let[,i]=t.base.match(/([^/]+)\/?$/);return n.find(({version:s,aliases:a})=>s===i||a.includes(i))||n[0]}));r.pipe(m(n=>new Map(n.map(i=>[`${new URL(`../${i.version}/`,t.base)}`,i]))),b(n=>h(document.body,"click").pipe(g(i=>!i.metaKey&&!i.ctrlKey),te(o),b(([i,s])=>{if(i.target instanceof Element){let a=i.target.closest("a");if(a&&!a.target&&n.has(a.href)){let c=a.href;return!i.target.closest(".md-version")&&n.get(c)===s?y:(i.preventDefault(),$(new URL(c)))}}return y}),b(i=>kt(i).pipe(m(s=>{var a;return(a=wi({selectedVersionSitemap:s,selectedVersionBaseURL:i,currentLocation:we(),currentBaseURL:t.base}))!=null?a:i})))))).subscribe(n=>st(n,!0)),z([r,o]).subscribe(([n,i])=>{j(".md-header__topic").appendChild(Wn(n,i))}),e.pipe(b(()=>o)).subscribe(n=>{var a;let i=new URL(t.base),s=__md_get("__outdated",sessionStorage,i);if(s===null){s=!0;let c=((a=t.version)==null?void 0:a.default)||"latest";Array.isArray(c)||(c=[c]);e:for(let p of c)for(let l of n.aliases.concat(n.version))if(new RegExp(p,"i").test(l)){s=!1;break e}__md_set("__outdated",s,sessionStorage,i)}if(s)for(let c of me("outdated"))c.hidden=!1})}function ws(e,{worker$:t}){let{searchParams:r}=we();r.has("q")&&(at("search",!0),e.value=r.get("q"),e.focus(),Je("search").pipe(Re(i=>!i)).subscribe(()=>{let i=we();i.searchParams.delete("q"),history.replaceState({},"",`${i}`)}));let o=Ye(e),n=L(t.pipe(Re(zt)),h(e,"keyup"),o).pipe(m(()=>e.value),Y());return z([n,o]).pipe(m(([i,s])=>({value:i,focus:s})),Z(1))}function Si(e,{worker$:t}){let r=new T,o=r.pipe(oe(),ae(!0));z([t.pipe(Re(zt)),r],(i,s)=>s).pipe(ne("value")).subscribe(({value:i})=>t.next({type:2,data:i})),r.pipe(ne("focus")).subscribe(({focus:i})=>{i&&at("search",i)}),h(e.form,"reset").pipe(W(o)).subscribe(()=>e.focus());let n=j("header [for=__search]");return h(n,"click").subscribe(()=>e.focus()),ws(e,{worker$:t}).pipe(O(i=>r.next(i)),A(()=>r.complete()),m(i=>P({ref:e},i)),Z(1))}function Oi(e,{worker$:t,query$:r}){let o=new T,n=un(e.parentElement).pipe(g(Boolean)),i=e.parentElement,s=j(":scope > :first-child",e),a=j(":scope > :last-child",e);Je("search").subscribe(l=>{a.setAttribute("role",l?"list":"presentation"),a.hidden=!l}),o.pipe(te(r),Gr(t.pipe(Re(zt)))).subscribe(([{items:l},{value:f}])=>{switch(l.length){case 0:s.textContent=f.length?Me("search.result.none"):Me("search.result.placeholder");break;case 1:s.textContent=Me("search.result.one");break;default:let u=br(l.length);s.textContent=Me("search.result.other",u)}});let c=o.pipe(O(()=>a.innerHTML=""),b(({items:l})=>L($(...l.slice(0,10)),$(...l.slice(10)).pipe(ot(4),Xr(n),b(([f])=>f)))),m(Fn),le());return c.subscribe(l=>a.appendChild(l)),c.pipe(J(l=>{let f=ue("details",l);return typeof f=="undefined"?y:h(f,"toggle").pipe(W(o),m(()=>f))})).subscribe(l=>{l.open===!1&&l.offsetTop<=i.scrollTop&&i.scrollTo({top:l.offsetTop})}),t.pipe(g(Sr),m(({data:l})=>l)).pipe(O(l=>o.next(l)),A(()=>o.complete()),m(l=>P({ref:e},l)))}function Ts(e,{query$:t}){return t.pipe(m(({value:r})=>{let o=we();return o.hash="",r=r.replace(/\s+/g,"+").replace(/&/g,"%26").replace(/=/g,"%3D"),o.search=`q=${r}`,{url:o}}))}function Li(e,t){let r=new T,o=r.pipe(oe(),ae(!0));return r.subscribe(({url:n})=>{e.setAttribute("data-clipboard-text",e.href),e.href=`${n}`}),h(e,"click").pipe(W(o)).subscribe(n=>n.preventDefault()),Ts(e,t).pipe(O(n=>r.next(n)),A(()=>r.complete()),m(n=>P({ref:e},n)))}function Mi(e,{worker$:t,keyboard$:r}){let o=new T,n=Ce("search-query"),i=L(h(n,"keydown"),h(n,"focus")).pipe(xe(pe),m(()=>n.value),Y());return o.pipe(Pe(i),m(([{suggest:a},c])=>{let p=c.split(/([\s-]+)/);if(a!=null&&a.length&&p[p.length-1]){let l=a[a.length-1];l.startsWith(p[p.length-1])&&(p[p.length-1]=l)}else p.length=0;return p})).subscribe(a=>e.innerHTML=a.join("").replace(/\s/g," ")),r.pipe(g(({mode:a})=>a==="search")).subscribe(a=>{a.type==="ArrowRight"&&e.innerText.length&&n.selectionStart===n.value.length&&(n.value=e.innerText)}),t.pipe(g(Sr),m(({data:a})=>a)).pipe(O(a=>o.next(a)),A(()=>o.complete()),m(()=>({ref:e})))}function _i(e,{index$:t,keyboard$:r}){let o=Te();try{let n=Ei(o.search,t),i=Ce("search-query",e),s=Ce("search-result",e);h(e,"click").pipe(g(({target:c})=>c instanceof Element&&!!c.closest("a"))).subscribe(()=>at("search",!1)),r.pipe(g(({mode:c})=>c==="search")).subscribe(c=>{let p=Ne();switch(c.type){case"Enter":if(p===i){let l=new Map;for(let f of M(":first-child [href]",s)){let u=f.firstElementChild;l.set(f,parseFloat(u.getAttribute("data-md-score")))}if(l.size){let[[f]]=[...l].sort(([,u],[,d])=>d-u);f.click()}c.claim()}break;case"Escape":case"Tab":at("search",!1),i.blur();break;case"ArrowUp":case"ArrowDown":if(typeof p=="undefined")i.focus();else{let l=[i,...M(":not(details) > [href], summary, details[open] [href]",s)],f=Math.max(0,(Math.max(0,l.indexOf(p))+l.length+(c.type==="ArrowUp"?-1:1))%l.length);l[f].focus()}c.claim();break;default:i!==Ne()&&i.focus()}}),r.pipe(g(({mode:c})=>c==="global")).subscribe(c=>{switch(c.type){case"f":case"s":case"/":i.focus(),i.select(),c.claim();break}});let a=Si(i,{worker$:n});return L(a,Oi(s,{worker$:n,query$:a})).pipe(Ve(...me("search-share",e).map(c=>Li(c,{query$:a})),...me("search-suggest",e).map(c=>Mi(c,{worker$:n,keyboard$:r}))))}catch(n){return e.hidden=!0,tt}}function Ai(e,{index$:t,location$:r}){return z([t,r.pipe(Q(we()),g(o=>!!o.searchParams.get("h")))]).pipe(m(([o,n])=>xi(o.config)(n.searchParams.get("h"))),m(o=>{var s;let n=new Map,i=document.createNodeIterator(e,NodeFilter.SHOW_TEXT);for(let a=i.nextNode();a;a=i.nextNode())if((s=a.parentElement)!=null&&s.offsetHeight){let c=a.textContent,p=o(c);p.length>c.length&&n.set(a,p)}for(let[a,c]of n){let{childNodes:p}=x("span",null,c);a.replaceWith(...Array.from(p))}return{ref:e,nodes:n}}))}function Ss(e,{viewport$:t,main$:r}){let o=e.closest(".md-grid"),n=o.offsetTop-o.parentElement.offsetTop;return z([r,t]).pipe(m(([{offset:i,height:s},{offset:{y:a}}])=>(s=s+Math.min(n,Math.max(0,a-i))-n,{height:s,locked:a>=i+n})),Y((i,s)=>i.height===s.height&&i.locked===s.locked))}function lo(e,o){var n=o,{header$:t}=n,r=vo(n,["header$"]);let i=j(".md-sidebar__scrollwrap",e),{y:s}=Be(i);return H(()=>{let a=new T,c=a.pipe(oe(),ae(!0)),p=a.pipe($e(0,ye));return p.pipe(te(t)).subscribe({next([{height:l},{height:f}]){i.style.height=`${l-2*s}px`,e.style.top=`${f}px`},complete(){i.style.height="",e.style.top=""}}),p.pipe(Re()).subscribe(()=>{for(let l of M(".md-nav__link--active[href]",e)){if(!l.clientHeight)continue;let f=l.closest(".md-sidebar__scrollwrap");if(typeof f!="undefined"){let u=l.offsetTop-f.offsetTop,{height:d}=de(f);f.scrollTo({top:u-d/2})}}}),fe(M("label[tabindex]",e)).pipe(J(l=>h(l,"click").pipe(xe(pe),m(()=>l),W(c)))).subscribe(l=>{let f=j(`[id="${l.htmlFor}"]`);j(`[aria-labelledby="${l.id}"]`).setAttribute("aria-expanded",`${f.checked}`)}),V("content.tooltips")&&fe(M("abbr[title]",e)).pipe(J(l=>Xe(l,{viewport$})),W(c)).subscribe(),Ss(e,r).pipe(O(l=>a.next(l)),A(()=>a.complete()),m(l=>P({ref:e},l)))})}function Ci(e,t){if(typeof t!="undefined"){let r=`https://api.github.com/repos/${e}/${t}`;return rt(ze(`${r}/releases/latest`).pipe(ve(()=>y),m(o=>({version:o.tag_name})),Qe({})),ze(r).pipe(ve(()=>y),m(o=>({stars:o.stargazers_count,forks:o.forks_count})),Qe({}))).pipe(m(([o,n])=>P(P({},o),n)))}else{let r=`https://api.github.com/users/${e}`;return ze(r).pipe(m(o=>({repositories:o.public_repos})),Qe({}))}}function ki(e,t){let r=`https://${e}/api/v4/projects/${encodeURIComponent(t)}`;return rt(ze(`${r}/releases/permalink/latest`).pipe(ve(()=>y),m(({tag_name:o})=>({version:o})),Qe({})),ze(r).pipe(ve(()=>y),m(({star_count:o,forks_count:n})=>({stars:o,forks:n})),Qe({}))).pipe(m(([o,n])=>P(P({},o),n)))}function Hi(e){let t=e.match(/^.+github\.com\/([^/]+)\/?([^/]+)?/i);if(t){let[,r,o]=t;return Ci(r,o)}if(t=e.match(/^.+?([^/]*gitlab[^/]+)\/(.+?)\/?$/i),t){let[,r,o]=t;return ki(r,o)}return y}var Os;function Ls(e){return Os||(Os=H(()=>{let t=__md_get("__source",sessionStorage);if(t)return $(t);if(me("consent").length){let o=__md_get("__consent");if(!(o&&o.github))return y}return Hi(e.href).pipe(O(o=>__md_set("__source",o,sessionStorage)))}).pipe(ve(()=>y),g(t=>Object.keys(t).length>0),m(t=>({facts:t})),Z(1)))}function $i(e){let t=j(":scope > :last-child",e);return H(()=>{let r=new T;return r.subscribe(({facts:o})=>{t.appendChild(jn(o)),t.classList.add("md-source__repository--active")}),Ls(e).pipe(O(o=>r.next(o)),A(()=>r.complete()),m(o=>P({ref:e},o)))})}function Ms(e,{viewport$:t,header$:r}){return Le(document.body).pipe(b(()=>Er(e,{header$:r,viewport$:t})),m(({offset:{y:o}})=>({hidden:o>=10})),ne("hidden"))}function Pi(e,t){return H(()=>{let r=new T;return r.subscribe({next({hidden:o}){e.hidden=o},complete(){e.hidden=!1}}),(V("navigation.tabs.sticky")?$({hidden:!1}):Ms(e,t)).pipe(O(o=>r.next(o)),A(()=>r.complete()),m(o=>P({ref:e},o)))})}function _s(e,{viewport$:t,header$:r}){let o=new Map,n=M(".md-nav__link",e);for(let a of n){let c=decodeURIComponent(a.hash.substring(1)),p=ue(`[id="${c}"]`);typeof p!="undefined"&&o.set(a,p)}let i=r.pipe(ne("height"),m(({height:a})=>{let c=Ce("main"),p=j(":scope > :first-child",c);return a+.8*(p.offsetTop-c.offsetTop)}),le());return Le(document.body).pipe(ne("height"),b(a=>H(()=>{let c=[];return $([...o].reduce((p,[l,f])=>{for(;c.length&&o.get(c[c.length-1]).tagName>=f.tagName;)c.pop();let u=f.offsetTop;for(;!u&&f.parentElement;)f=f.parentElement,u=f.offsetTop;let d=f.offsetParent;for(;d;d=d.offsetParent)u+=d.offsetTop;return p.set([...c=[...c,l]].reverse(),u)},new Map))}).pipe(m(c=>new Map([...c].sort(([,p],[,l])=>p-l))),Pe(i),b(([c,p])=>t.pipe(Ut(([l,f],{offset:{y:u},size:d})=>{let v=u+d.height>=Math.floor(a.height);for(;f.length;){let[,S]=f[0];if(S-p=u&&!v)f=[l.pop(),...f];else break}return[l,f]},[[],[...c]]),Y((l,f)=>l[0]===f[0]&&l[1]===f[1])))))).pipe(m(([a,c])=>({prev:a.map(([p])=>p),next:c.map(([p])=>p)})),Q({prev:[],next:[]}),ot(2,1),m(([a,c])=>a.prev.length{let i=new T,s=i.pipe(oe(),ae(!0));if(i.subscribe(({prev:a,next:c})=>{for(let[p]of c)p.classList.remove("md-nav__link--passed"),p.classList.remove("md-nav__link--active");for(let[p,[l]]of a.entries())l.classList.add("md-nav__link--passed"),l.classList.toggle("md-nav__link--active",p===a.length-1)}),V("toc.follow")){let a=L(t.pipe(Ae(1),m(()=>{})),t.pipe(Ae(250),m(()=>"smooth")));i.pipe(g(({prev:c})=>c.length>0),Pe(o.pipe(xe(pe))),te(a)).subscribe(([[{prev:c}],p])=>{let[l]=c[c.length-1];if(l.offsetHeight){let f=vr(l);if(typeof f!="undefined"){let u=l.offsetTop-f.offsetTop,{height:d}=de(f);f.scrollTo({top:u-d/2,behavior:p})}}})}return V("navigation.tracking")&&t.pipe(W(s),ne("offset"),Ae(250),Ie(1),W(n.pipe(Ie(1))),vt({delay:250}),te(i)).subscribe(([,{prev:a}])=>{let c=we(),p=a[a.length-1];if(p&&p.length){let[l]=p,{hash:f}=new URL(l.href);c.hash!==f&&(c.hash=f,history.replaceState({},"",`${c}`))}else c.hash="",history.replaceState({},"",`${c}`)}),_s(e,{viewport$:t,header$:r}).pipe(O(a=>i.next(a)),A(()=>i.complete()),m(a=>P({ref:e},a)))})}function As(e,{viewport$:t,main$:r,target$:o}){let n=t.pipe(m(({offset:{y:s}})=>s),ot(2,1),m(([s,a])=>s>a&&a>0),Y()),i=r.pipe(m(({active:s})=>s));return z([i,n]).pipe(m(([s,a])=>!(s&&a)),Y(),W(o.pipe(Ie(1))),ae(!0),vt({delay:250}),m(s=>({hidden:s})))}function Ii(e,{viewport$:t,header$:r,main$:o,target$:n}){let i=new T,s=i.pipe(oe(),ae(!0));return i.subscribe({next({hidden:a}){e.hidden=a,a?(e.setAttribute("tabindex","-1"),e.blur()):e.removeAttribute("tabindex")},complete(){e.style.top="",e.hidden=!0,e.removeAttribute("tabindex")}}),r.pipe(W(s),ne("height")).subscribe(({height:a})=>{e.style.top=`${a+16}px`}),h(e,"click").subscribe(a=>{a.preventDefault(),window.scrollTo({top:0})}),As(e,{viewport$:t,main$:o,target$:n}).pipe(O(a=>i.next(a)),A(()=>i.complete()),m(a=>P({ref:e},a)))}function Fi({document$:e,viewport$:t}){e.pipe(b(()=>M(".md-ellipsis")),J(r=>mt(r).pipe(W(e.pipe(Ie(1))),g(o=>o),m(()=>r),Ee(1))),g(r=>r.offsetWidth{let o=r.innerText,n=r.closest("a")||r;return n.title=o,V("content.tooltips")?Xe(n,{viewport$:t}).pipe(W(e.pipe(Ie(1))),A(()=>n.removeAttribute("title"))):y})).subscribe(),V("content.tooltips")&&e.pipe(b(()=>M(".md-status")),J(r=>Xe(r,{viewport$:t}))).subscribe()}function ji({document$:e,tablet$:t}){e.pipe(b(()=>M(".md-toggle--indeterminate")),O(r=>{r.indeterminate=!0,r.checked=!1}),J(r=>h(r,"change").pipe(Jr(()=>r.classList.contains("md-toggle--indeterminate")),m(()=>r))),te(t)).subscribe(([r,o])=>{r.classList.remove("md-toggle--indeterminate"),o&&(r.checked=!1)})}function Cs(){return/(iPad|iPhone|iPod)/.test(navigator.userAgent)}function Ui({document$:e}){e.pipe(b(()=>M("[data-md-scrollfix]")),O(t=>t.removeAttribute("data-md-scrollfix")),g(Cs),J(t=>h(t,"touchstart").pipe(m(()=>t)))).subscribe(t=>{let r=t.scrollTop;r===0?t.scrollTop=1:r+t.offsetHeight===t.scrollHeight&&(t.scrollTop=r-1)})}function Wi({viewport$:e,tablet$:t}){z([Je("search"),t]).pipe(m(([r,o])=>r&&!o),b(r=>$(r).pipe(nt(r?400:100))),te(e)).subscribe(([r,{offset:{y:o}}])=>{if(r)document.body.setAttribute("data-md-scrolllock",""),document.body.style.top=`-${o}px`;else{let n=-1*parseInt(document.body.style.top,10);document.body.removeAttribute("data-md-scrolllock"),document.body.style.top="",n&&window.scrollTo(0,n)}})}Object.entries||(Object.entries=function(e){let t=[];for(let r of Object.keys(e))t.push([r,e[r]]);return t});Object.values||(Object.values=function(e){let t=[];for(let r of Object.keys(e))t.push(e[r]);return t});typeof Element!="undefined"&&(Element.prototype.scrollTo||(Element.prototype.scrollTo=function(e,t){typeof e=="object"?(this.scrollLeft=e.left,this.scrollTop=e.top):(this.scrollLeft=e,this.scrollTop=t)}),Element.prototype.replaceWith||(Element.prototype.replaceWith=function(...e){let t=this.parentNode;if(t){e.length===0&&t.removeChild(this);for(let r=e.length-1;r>=0;r--){let o=e[r];typeof o=="string"?o=document.createTextNode(o):o.parentNode&&o.parentNode.removeChild(o),r?t.insertBefore(this.previousSibling,o):t.replaceChild(o,this)}}}));function ks(){return location.protocol==="file:"?_t(`${new URL("search/search_index.js",Or.base)}`).pipe(m(()=>__index),Z(1)):ze(new URL("search/search_index.json",Or.base))}document.documentElement.classList.remove("no-js");document.documentElement.classList.add("js");var ct=an(),Kt=bn(),Ht=yn(Kt),mo=hn(),ke=Ln(),Lr=Wt("(min-width: 60em)"),Vi=Wt("(min-width: 76.25em)"),Ni=xn(),Or=Te(),zi=document.forms.namedItem("search")?ks():tt,fo=new T;di({alert$:fo});ui({document$:ct});var uo=new T,qi=kt(Or.base);V("navigation.instant")&&gi({sitemap$:qi,location$:Kt,viewport$:ke,progress$:uo}).subscribe(ct);var Di;((Di=Or.version)==null?void 0:Di.provider)==="mike"&&Ti({document$:ct});L(Kt,Ht).pipe(nt(125)).subscribe(()=>{at("drawer",!1),at("search",!1)});mo.pipe(g(({mode:e})=>e==="global")).subscribe(e=>{switch(e.type){case"p":case",":let t=ue("link[rel=prev]");typeof t!="undefined"&&st(t);break;case"n":case".":let r=ue("link[rel=next]");typeof r!="undefined"&&st(r);break;case"Enter":let o=Ne();o instanceof HTMLLabelElement&&o.click()}});Fi({viewport$:ke,document$:ct});ji({document$:ct,tablet$:Lr});Ui({document$:ct});Wi({viewport$:ke,tablet$:Lr});var ft=ai(Ce("header"),{viewport$:ke}),qt=ct.pipe(m(()=>Ce("main")),b(e=>pi(e,{viewport$:ke,header$:ft})),Z(1)),Hs=L(...me("consent").map(e=>An(e,{target$:Ht})),...me("dialog").map(e=>ni(e,{alert$:fo})),...me("palette").map(e=>li(e)),...me("progress").map(e=>mi(e,{progress$:uo})),...me("search").map(e=>_i(e,{index$:zi,keyboard$:mo})),...me("source").map(e=>$i(e))),$s=H(()=>L(...me("announce").map(e=>_n(e)),...me("content").map(e=>oi(e,{sitemap$:qi,viewport$:ke,target$:Ht,print$:Ni})),...me("content").map(e=>V("search.highlight")?Ai(e,{index$:zi,location$:Kt}):y),...me("header").map(e=>si(e,{viewport$:ke,header$:ft,main$:qt})),...me("header-title").map(e=>ci(e,{viewport$:ke,header$:ft})),...me("sidebar").map(e=>e.getAttribute("data-md-type")==="navigation"?eo(Vi,()=>lo(e,{viewport$:ke,header$:ft,main$:qt})):eo(Lr,()=>lo(e,{viewport$:ke,header$:ft,main$:qt}))),...me("tabs").map(e=>Pi(e,{viewport$:ke,header$:ft})),...me("toc").map(e=>Ri(e,{viewport$:ke,header$:ft,main$:qt,target$:Ht})),...me("top").map(e=>Ii(e,{viewport$:ke,header$:ft,main$:qt,target$:Ht})))),Ki=ct.pipe(b(()=>$s),Ve(Hs),Z(1));Ki.subscribe();window.document$=ct;window.location$=Kt;window.target$=Ht;window.keyboard$=mo;window.viewport$=ke;window.tablet$=Lr;window.screen$=Vi;window.print$=Ni;window.alert$=fo;window.progress$=uo;window.component$=Ki;})(); +//# sourceMappingURL=bundle.79ae519e.min.js.map + diff --git a/assets/javascripts/bundle.79ae519e.min.js.map b/assets/javascripts/bundle.79ae519e.min.js.map new file mode 100644 index 0000000..5cf0289 --- /dev/null +++ b/assets/javascripts/bundle.79ae519e.min.js.map @@ -0,0 +1,7 @@ +{ + "version": 3, + "sources": ["node_modules/focus-visible/dist/focus-visible.js", "node_modules/escape-html/index.js", "node_modules/clipboard/dist/clipboard.js", "src/templates/assets/javascripts/bundle.ts", "node_modules/tslib/tslib.es6.mjs", "node_modules/rxjs/src/internal/util/isFunction.ts", "node_modules/rxjs/src/internal/util/createErrorClass.ts", "node_modules/rxjs/src/internal/util/UnsubscriptionError.ts", "node_modules/rxjs/src/internal/util/arrRemove.ts", "node_modules/rxjs/src/internal/Subscription.ts", "node_modules/rxjs/src/internal/config.ts", "node_modules/rxjs/src/internal/scheduler/timeoutProvider.ts", "node_modules/rxjs/src/internal/util/reportUnhandledError.ts", "node_modules/rxjs/src/internal/util/noop.ts", "node_modules/rxjs/src/internal/NotificationFactories.ts", "node_modules/rxjs/src/internal/util/errorContext.ts", "node_modules/rxjs/src/internal/Subscriber.ts", "node_modules/rxjs/src/internal/symbol/observable.ts", "node_modules/rxjs/src/internal/util/identity.ts", "node_modules/rxjs/src/internal/util/pipe.ts", "node_modules/rxjs/src/internal/Observable.ts", "node_modules/rxjs/src/internal/util/lift.ts", "node_modules/rxjs/src/internal/operators/OperatorSubscriber.ts", "node_modules/rxjs/src/internal/scheduler/animationFrameProvider.ts", "node_modules/rxjs/src/internal/util/ObjectUnsubscribedError.ts", "node_modules/rxjs/src/internal/Subject.ts", "node_modules/rxjs/src/internal/BehaviorSubject.ts", "node_modules/rxjs/src/internal/scheduler/dateTimestampProvider.ts", "node_modules/rxjs/src/internal/ReplaySubject.ts", "node_modules/rxjs/src/internal/scheduler/Action.ts", "node_modules/rxjs/src/internal/scheduler/intervalProvider.ts", "node_modules/rxjs/src/internal/scheduler/AsyncAction.ts", "node_modules/rxjs/src/internal/Scheduler.ts", "node_modules/rxjs/src/internal/scheduler/AsyncScheduler.ts", "node_modules/rxjs/src/internal/scheduler/async.ts", "node_modules/rxjs/src/internal/scheduler/QueueAction.ts", "node_modules/rxjs/src/internal/scheduler/QueueScheduler.ts", "node_modules/rxjs/src/internal/scheduler/queue.ts", "node_modules/rxjs/src/internal/scheduler/AnimationFrameAction.ts", "node_modules/rxjs/src/internal/scheduler/AnimationFrameScheduler.ts", "node_modules/rxjs/src/internal/scheduler/animationFrame.ts", "node_modules/rxjs/src/internal/observable/empty.ts", "node_modules/rxjs/src/internal/util/isScheduler.ts", "node_modules/rxjs/src/internal/util/args.ts", "node_modules/rxjs/src/internal/util/isArrayLike.ts", "node_modules/rxjs/src/internal/util/isPromise.ts", "node_modules/rxjs/src/internal/util/isInteropObservable.ts", "node_modules/rxjs/src/internal/util/isAsyncIterable.ts", "node_modules/rxjs/src/internal/util/throwUnobservableError.ts", "node_modules/rxjs/src/internal/symbol/iterator.ts", "node_modules/rxjs/src/internal/util/isIterable.ts", "node_modules/rxjs/src/internal/util/isReadableStreamLike.ts", "node_modules/rxjs/src/internal/observable/innerFrom.ts", "node_modules/rxjs/src/internal/util/executeSchedule.ts", "node_modules/rxjs/src/internal/operators/observeOn.ts", "node_modules/rxjs/src/internal/operators/subscribeOn.ts", "node_modules/rxjs/src/internal/scheduled/scheduleObservable.ts", "node_modules/rxjs/src/internal/scheduled/schedulePromise.ts", "node_modules/rxjs/src/internal/scheduled/scheduleArray.ts", "node_modules/rxjs/src/internal/scheduled/scheduleIterable.ts", "node_modules/rxjs/src/internal/scheduled/scheduleAsyncIterable.ts", "node_modules/rxjs/src/internal/scheduled/scheduleReadableStreamLike.ts", "node_modules/rxjs/src/internal/scheduled/scheduled.ts", "node_modules/rxjs/src/internal/observable/from.ts", "node_modules/rxjs/src/internal/observable/of.ts", "node_modules/rxjs/src/internal/observable/throwError.ts", "node_modules/rxjs/src/internal/util/EmptyError.ts", "node_modules/rxjs/src/internal/util/isDate.ts", "node_modules/rxjs/src/internal/operators/map.ts", "node_modules/rxjs/src/internal/util/mapOneOrManyArgs.ts", "node_modules/rxjs/src/internal/util/argsArgArrayOrObject.ts", "node_modules/rxjs/src/internal/util/createObject.ts", "node_modules/rxjs/src/internal/observable/combineLatest.ts", "node_modules/rxjs/src/internal/operators/mergeInternals.ts", "node_modules/rxjs/src/internal/operators/mergeMap.ts", "node_modules/rxjs/src/internal/operators/mergeAll.ts", "node_modules/rxjs/src/internal/operators/concatAll.ts", "node_modules/rxjs/src/internal/observable/concat.ts", "node_modules/rxjs/src/internal/observable/defer.ts", "node_modules/rxjs/src/internal/observable/fromEvent.ts", "node_modules/rxjs/src/internal/observable/fromEventPattern.ts", "node_modules/rxjs/src/internal/observable/timer.ts", "node_modules/rxjs/src/internal/observable/merge.ts", "node_modules/rxjs/src/internal/observable/never.ts", "node_modules/rxjs/src/internal/util/argsOrArgArray.ts", "node_modules/rxjs/src/internal/operators/filter.ts", "node_modules/rxjs/src/internal/observable/zip.ts", "node_modules/rxjs/src/internal/operators/audit.ts", "node_modules/rxjs/src/internal/operators/auditTime.ts", "node_modules/rxjs/src/internal/operators/bufferCount.ts", "node_modules/rxjs/src/internal/operators/catchError.ts", "node_modules/rxjs/src/internal/operators/scanInternals.ts", "node_modules/rxjs/src/internal/operators/combineLatest.ts", "node_modules/rxjs/src/internal/operators/combineLatestWith.ts", "node_modules/rxjs/src/internal/operators/debounce.ts", "node_modules/rxjs/src/internal/operators/debounceTime.ts", "node_modules/rxjs/src/internal/operators/defaultIfEmpty.ts", "node_modules/rxjs/src/internal/operators/take.ts", "node_modules/rxjs/src/internal/operators/ignoreElements.ts", "node_modules/rxjs/src/internal/operators/mapTo.ts", "node_modules/rxjs/src/internal/operators/delayWhen.ts", "node_modules/rxjs/src/internal/operators/delay.ts", "node_modules/rxjs/src/internal/operators/distinct.ts", "node_modules/rxjs/src/internal/operators/distinctUntilChanged.ts", "node_modules/rxjs/src/internal/operators/distinctUntilKeyChanged.ts", "node_modules/rxjs/src/internal/operators/throwIfEmpty.ts", "node_modules/rxjs/src/internal/operators/endWith.ts", "node_modules/rxjs/src/internal/operators/exhaustMap.ts", "node_modules/rxjs/src/internal/operators/finalize.ts", "node_modules/rxjs/src/internal/operators/first.ts", "node_modules/rxjs/src/internal/operators/takeLast.ts", "node_modules/rxjs/src/internal/operators/merge.ts", "node_modules/rxjs/src/internal/operators/mergeWith.ts", "node_modules/rxjs/src/internal/operators/repeat.ts", "node_modules/rxjs/src/internal/operators/scan.ts", "node_modules/rxjs/src/internal/operators/share.ts", "node_modules/rxjs/src/internal/operators/shareReplay.ts", "node_modules/rxjs/src/internal/operators/skip.ts", "node_modules/rxjs/src/internal/operators/skipUntil.ts", "node_modules/rxjs/src/internal/operators/startWith.ts", "node_modules/rxjs/src/internal/operators/switchMap.ts", "node_modules/rxjs/src/internal/operators/takeUntil.ts", "node_modules/rxjs/src/internal/operators/takeWhile.ts", "node_modules/rxjs/src/internal/operators/tap.ts", "node_modules/rxjs/src/internal/operators/throttle.ts", "node_modules/rxjs/src/internal/operators/throttleTime.ts", "node_modules/rxjs/src/internal/operators/withLatestFrom.ts", "node_modules/rxjs/src/internal/operators/zip.ts", "node_modules/rxjs/src/internal/operators/zipWith.ts", "src/templates/assets/javascripts/browser/document/index.ts", "src/templates/assets/javascripts/browser/element/_/index.ts", "src/templates/assets/javascripts/browser/element/focus/index.ts", "src/templates/assets/javascripts/browser/element/hover/index.ts", "src/templates/assets/javascripts/utilities/h/index.ts", "src/templates/assets/javascripts/utilities/round/index.ts", "src/templates/assets/javascripts/browser/script/index.ts", "src/templates/assets/javascripts/browser/element/size/_/index.ts", "src/templates/assets/javascripts/browser/element/size/content/index.ts", "src/templates/assets/javascripts/browser/element/offset/_/index.ts", "src/templates/assets/javascripts/browser/element/offset/content/index.ts", "src/templates/assets/javascripts/browser/element/visibility/index.ts", "src/templates/assets/javascripts/browser/toggle/index.ts", "src/templates/assets/javascripts/browser/keyboard/index.ts", "src/templates/assets/javascripts/browser/location/_/index.ts", "src/templates/assets/javascripts/browser/location/hash/index.ts", "src/templates/assets/javascripts/browser/media/index.ts", "src/templates/assets/javascripts/browser/request/index.ts", "src/templates/assets/javascripts/browser/viewport/offset/index.ts", "src/templates/assets/javascripts/browser/viewport/size/index.ts", "src/templates/assets/javascripts/browser/viewport/_/index.ts", "src/templates/assets/javascripts/browser/viewport/at/index.ts", "src/templates/assets/javascripts/browser/worker/index.ts", "src/templates/assets/javascripts/_/index.ts", "src/templates/assets/javascripts/components/_/index.ts", "src/templates/assets/javascripts/components/announce/index.ts", "src/templates/assets/javascripts/components/consent/index.ts", "src/templates/assets/javascripts/templates/tooltip/index.tsx", "src/templates/assets/javascripts/templates/annotation/index.tsx", "src/templates/assets/javascripts/templates/clipboard/index.tsx", "src/templates/assets/javascripts/templates/search/index.tsx", "src/templates/assets/javascripts/templates/source/index.tsx", "src/templates/assets/javascripts/templates/tabbed/index.tsx", "src/templates/assets/javascripts/templates/table/index.tsx", "src/templates/assets/javascripts/templates/version/index.tsx", "src/templates/assets/javascripts/components/tooltip2/index.ts", "src/templates/assets/javascripts/components/content/annotation/_/index.ts", "src/templates/assets/javascripts/components/content/annotation/list/index.ts", "src/templates/assets/javascripts/components/content/annotation/block/index.ts", "src/templates/assets/javascripts/components/content/code/_/index.ts", "src/templates/assets/javascripts/components/content/details/index.ts", "src/templates/assets/javascripts/components/content/link/index.ts", "src/templates/assets/javascripts/components/content/mermaid/index.css", "src/templates/assets/javascripts/components/content/mermaid/index.ts", "src/templates/assets/javascripts/components/content/table/index.ts", "src/templates/assets/javascripts/components/content/tabs/index.ts", "src/templates/assets/javascripts/components/content/_/index.ts", "src/templates/assets/javascripts/components/dialog/index.ts", "src/templates/assets/javascripts/components/tooltip/index.ts", "src/templates/assets/javascripts/components/header/_/index.ts", "src/templates/assets/javascripts/components/header/title/index.ts", "src/templates/assets/javascripts/components/main/index.ts", "src/templates/assets/javascripts/components/palette/index.ts", "src/templates/assets/javascripts/components/progress/index.ts", "src/templates/assets/javascripts/integrations/sitemap/index.ts", "src/templates/assets/javascripts/integrations/alternate/index.ts", "src/templates/assets/javascripts/integrations/clipboard/index.ts", "src/templates/assets/javascripts/integrations/instant/index.ts", "src/templates/assets/javascripts/integrations/search/highlighter/index.ts", "src/templates/assets/javascripts/integrations/search/worker/message/index.ts", "src/templates/assets/javascripts/integrations/search/worker/_/index.ts", "src/templates/assets/javascripts/integrations/version/findurl/index.ts", "src/templates/assets/javascripts/integrations/version/index.ts", "src/templates/assets/javascripts/components/search/query/index.ts", "src/templates/assets/javascripts/components/search/result/index.ts", "src/templates/assets/javascripts/components/search/share/index.ts", "src/templates/assets/javascripts/components/search/suggest/index.ts", "src/templates/assets/javascripts/components/search/_/index.ts", "src/templates/assets/javascripts/components/search/highlight/index.ts", "src/templates/assets/javascripts/components/sidebar/index.ts", "src/templates/assets/javascripts/components/source/facts/github/index.ts", "src/templates/assets/javascripts/components/source/facts/gitlab/index.ts", "src/templates/assets/javascripts/components/source/facts/_/index.ts", "src/templates/assets/javascripts/components/source/_/index.ts", "src/templates/assets/javascripts/components/tabs/index.ts", "src/templates/assets/javascripts/components/toc/index.ts", "src/templates/assets/javascripts/components/top/index.ts", "src/templates/assets/javascripts/patches/ellipsis/index.ts", "src/templates/assets/javascripts/patches/indeterminate/index.ts", "src/templates/assets/javascripts/patches/scrollfix/index.ts", "src/templates/assets/javascripts/patches/scrolllock/index.ts", "src/templates/assets/javascripts/polyfills/index.ts"], + "sourcesContent": ["(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? factory() :\n typeof define === 'function' && define.amd ? define(factory) :\n (factory());\n}(this, (function () { 'use strict';\n\n /**\n * Applies the :focus-visible polyfill at the given scope.\n * A scope in this case is either the top-level Document or a Shadow Root.\n *\n * @param {(Document|ShadowRoot)} scope\n * @see https://github.com/WICG/focus-visible\n */\n function applyFocusVisiblePolyfill(scope) {\n var hadKeyboardEvent = true;\n var hadFocusVisibleRecently = false;\n var hadFocusVisibleRecentlyTimeout = null;\n\n var inputTypesAllowlist = {\n text: true,\n search: true,\n url: true,\n tel: true,\n email: true,\n password: true,\n number: true,\n date: true,\n month: true,\n week: true,\n time: true,\n datetime: true,\n 'datetime-local': true\n };\n\n /**\n * Helper function for legacy browsers and iframes which sometimes focus\n * elements like document, body, and non-interactive SVG.\n * @param {Element} el\n */\n function isValidFocusTarget(el) {\n if (\n el &&\n el !== document &&\n el.nodeName !== 'HTML' &&\n el.nodeName !== 'BODY' &&\n 'classList' in el &&\n 'contains' in el.classList\n ) {\n return true;\n }\n return false;\n }\n\n /**\n * Computes whether the given element should automatically trigger the\n * `focus-visible` class being added, i.e. whether it should always match\n * `:focus-visible` when focused.\n * @param {Element} el\n * @return {boolean}\n */\n function focusTriggersKeyboardModality(el) {\n var type = el.type;\n var tagName = el.tagName;\n\n if (tagName === 'INPUT' && inputTypesAllowlist[type] && !el.readOnly) {\n return true;\n }\n\n if (tagName === 'TEXTAREA' && !el.readOnly) {\n return true;\n }\n\n if (el.isContentEditable) {\n return true;\n }\n\n return false;\n }\n\n /**\n * Add the `focus-visible` class to the given element if it was not added by\n * the author.\n * @param {Element} el\n */\n function addFocusVisibleClass(el) {\n if (el.classList.contains('focus-visible')) {\n return;\n }\n el.classList.add('focus-visible');\n el.setAttribute('data-focus-visible-added', '');\n }\n\n /**\n * Remove the `focus-visible` class from the given element if it was not\n * originally added by the author.\n * @param {Element} el\n */\n function removeFocusVisibleClass(el) {\n if (!el.hasAttribute('data-focus-visible-added')) {\n return;\n }\n el.classList.remove('focus-visible');\n el.removeAttribute('data-focus-visible-added');\n }\n\n /**\n * If the most recent user interaction was via the keyboard;\n * and the key press did not include a meta, alt/option, or control key;\n * then the modality is keyboard. Otherwise, the modality is not keyboard.\n * Apply `focus-visible` to any current active element and keep track\n * of our keyboard modality state with `hadKeyboardEvent`.\n * @param {KeyboardEvent} e\n */\n function onKeyDown(e) {\n if (e.metaKey || e.altKey || e.ctrlKey) {\n return;\n }\n\n if (isValidFocusTarget(scope.activeElement)) {\n addFocusVisibleClass(scope.activeElement);\n }\n\n hadKeyboardEvent = true;\n }\n\n /**\n * If at any point a user clicks with a pointing device, ensure that we change\n * the modality away from keyboard.\n * This avoids the situation where a user presses a key on an already focused\n * element, and then clicks on a different element, focusing it with a\n * pointing device, while we still think we're in keyboard modality.\n * @param {Event} e\n */\n function onPointerDown(e) {\n hadKeyboardEvent = false;\n }\n\n /**\n * On `focus`, add the `focus-visible` class to the target if:\n * - the target received focus as a result of keyboard navigation, or\n * - the event target is an element that will likely require interaction\n * via the keyboard (e.g. a text box)\n * @param {Event} e\n */\n function onFocus(e) {\n // Prevent IE from focusing the document or HTML element.\n if (!isValidFocusTarget(e.target)) {\n return;\n }\n\n if (hadKeyboardEvent || focusTriggersKeyboardModality(e.target)) {\n addFocusVisibleClass(e.target);\n }\n }\n\n /**\n * On `blur`, remove the `focus-visible` class from the target.\n * @param {Event} e\n */\n function onBlur(e) {\n if (!isValidFocusTarget(e.target)) {\n return;\n }\n\n if (\n e.target.classList.contains('focus-visible') ||\n e.target.hasAttribute('data-focus-visible-added')\n ) {\n // To detect a tab/window switch, we look for a blur event followed\n // rapidly by a visibility change.\n // If we don't see a visibility change within 100ms, it's probably a\n // regular focus change.\n hadFocusVisibleRecently = true;\n window.clearTimeout(hadFocusVisibleRecentlyTimeout);\n hadFocusVisibleRecentlyTimeout = window.setTimeout(function() {\n hadFocusVisibleRecently = false;\n }, 100);\n removeFocusVisibleClass(e.target);\n }\n }\n\n /**\n * If the user changes tabs, keep track of whether or not the previously\n * focused element had .focus-visible.\n * @param {Event} e\n */\n function onVisibilityChange(e) {\n if (document.visibilityState === 'hidden') {\n // If the tab becomes active again, the browser will handle calling focus\n // on the element (Safari actually calls it twice).\n // If this tab change caused a blur on an element with focus-visible,\n // re-apply the class when the user switches back to the tab.\n if (hadFocusVisibleRecently) {\n hadKeyboardEvent = true;\n }\n addInitialPointerMoveListeners();\n }\n }\n\n /**\n * Add a group of listeners to detect usage of any pointing devices.\n * These listeners will be added when the polyfill first loads, and anytime\n * the window is blurred, so that they are active when the window regains\n * focus.\n */\n function addInitialPointerMoveListeners() {\n document.addEventListener('mousemove', onInitialPointerMove);\n document.addEventListener('mousedown', onInitialPointerMove);\n document.addEventListener('mouseup', onInitialPointerMove);\n document.addEventListener('pointermove', onInitialPointerMove);\n document.addEventListener('pointerdown', onInitialPointerMove);\n document.addEventListener('pointerup', onInitialPointerMove);\n document.addEventListener('touchmove', onInitialPointerMove);\n document.addEventListener('touchstart', onInitialPointerMove);\n document.addEventListener('touchend', onInitialPointerMove);\n }\n\n function removeInitialPointerMoveListeners() {\n document.removeEventListener('mousemove', onInitialPointerMove);\n document.removeEventListener('mousedown', onInitialPointerMove);\n document.removeEventListener('mouseup', onInitialPointerMove);\n document.removeEventListener('pointermove', onInitialPointerMove);\n document.removeEventListener('pointerdown', onInitialPointerMove);\n document.removeEventListener('pointerup', onInitialPointerMove);\n document.removeEventListener('touchmove', onInitialPointerMove);\n document.removeEventListener('touchstart', onInitialPointerMove);\n document.removeEventListener('touchend', onInitialPointerMove);\n }\n\n /**\n * When the polfyill first loads, assume the user is in keyboard modality.\n * If any event is received from a pointing device (e.g. mouse, pointer,\n * touch), turn off keyboard modality.\n * This accounts for situations where focus enters the page from the URL bar.\n * @param {Event} e\n */\n function onInitialPointerMove(e) {\n // Work around a Safari quirk that fires a mousemove on whenever the\n // window blurs, even if you're tabbing out of the page. \u00AF\\_(\u30C4)_/\u00AF\n if (e.target.nodeName && e.target.nodeName.toLowerCase() === 'html') {\n return;\n }\n\n hadKeyboardEvent = false;\n removeInitialPointerMoveListeners();\n }\n\n // For some kinds of state, we are interested in changes at the global scope\n // only. For example, global pointer input, global key presses and global\n // visibility change should affect the state at every scope:\n document.addEventListener('keydown', onKeyDown, true);\n document.addEventListener('mousedown', onPointerDown, true);\n document.addEventListener('pointerdown', onPointerDown, true);\n document.addEventListener('touchstart', onPointerDown, true);\n document.addEventListener('visibilitychange', onVisibilityChange, true);\n\n addInitialPointerMoveListeners();\n\n // For focus and blur, we specifically care about state changes in the local\n // scope. This is because focus / blur events that originate from within a\n // shadow root are not re-dispatched from the host element if it was already\n // the active element in its own scope:\n scope.addEventListener('focus', onFocus, true);\n scope.addEventListener('blur', onBlur, true);\n\n // We detect that a node is a ShadowRoot by ensuring that it is a\n // DocumentFragment and also has a host property. This check covers native\n // implementation and polyfill implementation transparently. If we only cared\n // about the native implementation, we could just check if the scope was\n // an instance of a ShadowRoot.\n if (scope.nodeType === Node.DOCUMENT_FRAGMENT_NODE && scope.host) {\n // Since a ShadowRoot is a special kind of DocumentFragment, it does not\n // have a root element to add a class to. So, we add this attribute to the\n // host element instead:\n scope.host.setAttribute('data-js-focus-visible', '');\n } else if (scope.nodeType === Node.DOCUMENT_NODE) {\n document.documentElement.classList.add('js-focus-visible');\n document.documentElement.setAttribute('data-js-focus-visible', '');\n }\n }\n\n // It is important to wrap all references to global window and document in\n // these checks to support server-side rendering use cases\n // @see https://github.com/WICG/focus-visible/issues/199\n if (typeof window !== 'undefined' && typeof document !== 'undefined') {\n // Make the polyfill helper globally available. This can be used as a signal\n // to interested libraries that wish to coordinate with the polyfill for e.g.,\n // applying the polyfill to a shadow root:\n window.applyFocusVisiblePolyfill = applyFocusVisiblePolyfill;\n\n // Notify interested libraries of the polyfill's presence, in case the\n // polyfill was loaded lazily:\n var event;\n\n try {\n event = new CustomEvent('focus-visible-polyfill-ready');\n } catch (error) {\n // IE11 does not support using CustomEvent as a constructor directly:\n event = document.createEvent('CustomEvent');\n event.initCustomEvent('focus-visible-polyfill-ready', false, false, {});\n }\n\n window.dispatchEvent(event);\n }\n\n if (typeof document !== 'undefined') {\n // Apply the polyfill to the global document, so that no JavaScript\n // coordination is required to use the polyfill in the top-level document:\n applyFocusVisiblePolyfill(document);\n }\n\n})));\n", "/*!\n * escape-html\n * Copyright(c) 2012-2013 TJ Holowaychuk\n * Copyright(c) 2015 Andreas Lubbe\n * Copyright(c) 2015 Tiancheng \"Timothy\" Gu\n * MIT Licensed\n */\n\n'use strict';\n\n/**\n * Module variables.\n * @private\n */\n\nvar matchHtmlRegExp = /[\"'&<>]/;\n\n/**\n * Module exports.\n * @public\n */\n\nmodule.exports = escapeHtml;\n\n/**\n * Escape special characters in the given string of html.\n *\n * @param {string} string The string to escape for inserting into HTML\n * @return {string}\n * @public\n */\n\nfunction escapeHtml(string) {\n var str = '' + string;\n var match = matchHtmlRegExp.exec(str);\n\n if (!match) {\n return str;\n }\n\n var escape;\n var html = '';\n var index = 0;\n var lastIndex = 0;\n\n for (index = match.index; index < str.length; index++) {\n switch (str.charCodeAt(index)) {\n case 34: // \"\n escape = '"';\n break;\n case 38: // &\n escape = '&';\n break;\n case 39: // '\n escape = ''';\n break;\n case 60: // <\n escape = '<';\n break;\n case 62: // >\n escape = '>';\n break;\n default:\n continue;\n }\n\n if (lastIndex !== index) {\n html += str.substring(lastIndex, index);\n }\n\n lastIndex = index + 1;\n html += escape;\n }\n\n return lastIndex !== index\n ? html + str.substring(lastIndex, index)\n : html;\n}\n", "/*!\n * clipboard.js v2.0.11\n * https://clipboardjs.com/\n *\n * Licensed MIT \u00A9 Zeno Rocha\n */\n(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"ClipboardJS\"] = factory();\n\telse\n\t\troot[\"ClipboardJS\"] = factory();\n})(this, function() {\nreturn /******/ (function() { // webpackBootstrap\n/******/ \tvar __webpack_modules__ = ({\n\n/***/ 686:\n/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n\n// EXPORTS\n__webpack_require__.d(__webpack_exports__, {\n \"default\": function() { return /* binding */ clipboard; }\n});\n\n// EXTERNAL MODULE: ./node_modules/tiny-emitter/index.js\nvar tiny_emitter = __webpack_require__(279);\nvar tiny_emitter_default = /*#__PURE__*/__webpack_require__.n(tiny_emitter);\n// EXTERNAL MODULE: ./node_modules/good-listener/src/listen.js\nvar listen = __webpack_require__(370);\nvar listen_default = /*#__PURE__*/__webpack_require__.n(listen);\n// EXTERNAL MODULE: ./node_modules/select/src/select.js\nvar src_select = __webpack_require__(817);\nvar select_default = /*#__PURE__*/__webpack_require__.n(src_select);\n;// CONCATENATED MODULE: ./src/common/command.js\n/**\n * Executes a given operation type.\n * @param {String} type\n * @return {Boolean}\n */\nfunction command(type) {\n try {\n return document.execCommand(type);\n } catch (err) {\n return false;\n }\n}\n;// CONCATENATED MODULE: ./src/actions/cut.js\n\n\n/**\n * Cut action wrapper.\n * @param {String|HTMLElement} target\n * @return {String}\n */\n\nvar ClipboardActionCut = function ClipboardActionCut(target) {\n var selectedText = select_default()(target);\n command('cut');\n return selectedText;\n};\n\n/* harmony default export */ var actions_cut = (ClipboardActionCut);\n;// CONCATENATED MODULE: ./src/common/create-fake-element.js\n/**\n * Creates a fake textarea element with a value.\n * @param {String} value\n * @return {HTMLElement}\n */\nfunction createFakeElement(value) {\n var isRTL = document.documentElement.getAttribute('dir') === 'rtl';\n var fakeElement = document.createElement('textarea'); // Prevent zooming on iOS\n\n fakeElement.style.fontSize = '12pt'; // Reset box model\n\n fakeElement.style.border = '0';\n fakeElement.style.padding = '0';\n fakeElement.style.margin = '0'; // Move element out of screen horizontally\n\n fakeElement.style.position = 'absolute';\n fakeElement.style[isRTL ? 'right' : 'left'] = '-9999px'; // Move element to the same position vertically\n\n var yPosition = window.pageYOffset || document.documentElement.scrollTop;\n fakeElement.style.top = \"\".concat(yPosition, \"px\");\n fakeElement.setAttribute('readonly', '');\n fakeElement.value = value;\n return fakeElement;\n}\n;// CONCATENATED MODULE: ./src/actions/copy.js\n\n\n\n/**\n * Create fake copy action wrapper using a fake element.\n * @param {String} target\n * @param {Object} options\n * @return {String}\n */\n\nvar fakeCopyAction = function fakeCopyAction(value, options) {\n var fakeElement = createFakeElement(value);\n options.container.appendChild(fakeElement);\n var selectedText = select_default()(fakeElement);\n command('copy');\n fakeElement.remove();\n return selectedText;\n};\n/**\n * Copy action wrapper.\n * @param {String|HTMLElement} target\n * @param {Object} options\n * @return {String}\n */\n\n\nvar ClipboardActionCopy = function ClipboardActionCopy(target) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {\n container: document.body\n };\n var selectedText = '';\n\n if (typeof target === 'string') {\n selectedText = fakeCopyAction(target, options);\n } else if (target instanceof HTMLInputElement && !['text', 'search', 'url', 'tel', 'password'].includes(target === null || target === void 0 ? void 0 : target.type)) {\n // If input type doesn't support `setSelectionRange`. Simulate it. https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/setSelectionRange\n selectedText = fakeCopyAction(target.value, options);\n } else {\n selectedText = select_default()(target);\n command('copy');\n }\n\n return selectedText;\n};\n\n/* harmony default export */ var actions_copy = (ClipboardActionCopy);\n;// CONCATENATED MODULE: ./src/actions/default.js\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\n\n\n/**\n * Inner function which performs selection from either `text` or `target`\n * properties and then executes copy or cut operations.\n * @param {Object} options\n */\n\nvar ClipboardActionDefault = function ClipboardActionDefault() {\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n // Defines base properties passed from constructor.\n var _options$action = options.action,\n action = _options$action === void 0 ? 'copy' : _options$action,\n container = options.container,\n target = options.target,\n text = options.text; // Sets the `action` to be performed which can be either 'copy' or 'cut'.\n\n if (action !== 'copy' && action !== 'cut') {\n throw new Error('Invalid \"action\" value, use either \"copy\" or \"cut\"');\n } // Sets the `target` property using an element that will be have its content copied.\n\n\n if (target !== undefined) {\n if (target && _typeof(target) === 'object' && target.nodeType === 1) {\n if (action === 'copy' && target.hasAttribute('disabled')) {\n throw new Error('Invalid \"target\" attribute. Please use \"readonly\" instead of \"disabled\" attribute');\n }\n\n if (action === 'cut' && (target.hasAttribute('readonly') || target.hasAttribute('disabled'))) {\n throw new Error('Invalid \"target\" attribute. You can\\'t cut text from elements with \"readonly\" or \"disabled\" attributes');\n }\n } else {\n throw new Error('Invalid \"target\" value, use a valid Element');\n }\n } // Define selection strategy based on `text` property.\n\n\n if (text) {\n return actions_copy(text, {\n container: container\n });\n } // Defines which selection strategy based on `target` property.\n\n\n if (target) {\n return action === 'cut' ? actions_cut(target) : actions_copy(target, {\n container: container\n });\n }\n};\n\n/* harmony default export */ var actions_default = (ClipboardActionDefault);\n;// CONCATENATED MODULE: ./src/clipboard.js\nfunction clipboard_typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { clipboard_typeof = function _typeof(obj) { return typeof obj; }; } else { clipboard_typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return clipboard_typeof(obj); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (clipboard_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n\n\n\n\n\n/**\n * Helper function to retrieve attribute value.\n * @param {String} suffix\n * @param {Element} element\n */\n\nfunction getAttributeValue(suffix, element) {\n var attribute = \"data-clipboard-\".concat(suffix);\n\n if (!element.hasAttribute(attribute)) {\n return;\n }\n\n return element.getAttribute(attribute);\n}\n/**\n * Base class which takes one or more elements, adds event listeners to them,\n * and instantiates a new `ClipboardAction` on each click.\n */\n\n\nvar Clipboard = /*#__PURE__*/function (_Emitter) {\n _inherits(Clipboard, _Emitter);\n\n var _super = _createSuper(Clipboard);\n\n /**\n * @param {String|HTMLElement|HTMLCollection|NodeList} trigger\n * @param {Object} options\n */\n function Clipboard(trigger, options) {\n var _this;\n\n _classCallCheck(this, Clipboard);\n\n _this = _super.call(this);\n\n _this.resolveOptions(options);\n\n _this.listenClick(trigger);\n\n return _this;\n }\n /**\n * Defines if attributes would be resolved using internal setter functions\n * or custom functions that were passed in the constructor.\n * @param {Object} options\n */\n\n\n _createClass(Clipboard, [{\n key: \"resolveOptions\",\n value: function resolveOptions() {\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n this.action = typeof options.action === 'function' ? options.action : this.defaultAction;\n this.target = typeof options.target === 'function' ? options.target : this.defaultTarget;\n this.text = typeof options.text === 'function' ? options.text : this.defaultText;\n this.container = clipboard_typeof(options.container) === 'object' ? options.container : document.body;\n }\n /**\n * Adds a click event listener to the passed trigger.\n * @param {String|HTMLElement|HTMLCollection|NodeList} trigger\n */\n\n }, {\n key: \"listenClick\",\n value: function listenClick(trigger) {\n var _this2 = this;\n\n this.listener = listen_default()(trigger, 'click', function (e) {\n return _this2.onClick(e);\n });\n }\n /**\n * Defines a new `ClipboardAction` on each click event.\n * @param {Event} e\n */\n\n }, {\n key: \"onClick\",\n value: function onClick(e) {\n var trigger = e.delegateTarget || e.currentTarget;\n var action = this.action(trigger) || 'copy';\n var text = actions_default({\n action: action,\n container: this.container,\n target: this.target(trigger),\n text: this.text(trigger)\n }); // Fires an event based on the copy operation result.\n\n this.emit(text ? 'success' : 'error', {\n action: action,\n text: text,\n trigger: trigger,\n clearSelection: function clearSelection() {\n if (trigger) {\n trigger.focus();\n }\n\n window.getSelection().removeAllRanges();\n }\n });\n }\n /**\n * Default `action` lookup function.\n * @param {Element} trigger\n */\n\n }, {\n key: \"defaultAction\",\n value: function defaultAction(trigger) {\n return getAttributeValue('action', trigger);\n }\n /**\n * Default `target` lookup function.\n * @param {Element} trigger\n */\n\n }, {\n key: \"defaultTarget\",\n value: function defaultTarget(trigger) {\n var selector = getAttributeValue('target', trigger);\n\n if (selector) {\n return document.querySelector(selector);\n }\n }\n /**\n * Allow fire programmatically a copy action\n * @param {String|HTMLElement} target\n * @param {Object} options\n * @returns Text copied.\n */\n\n }, {\n key: \"defaultText\",\n\n /**\n * Default `text` lookup function.\n * @param {Element} trigger\n */\n value: function defaultText(trigger) {\n return getAttributeValue('text', trigger);\n }\n /**\n * Destroy lifecycle.\n */\n\n }, {\n key: \"destroy\",\n value: function destroy() {\n this.listener.destroy();\n }\n }], [{\n key: \"copy\",\n value: function copy(target) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {\n container: document.body\n };\n return actions_copy(target, options);\n }\n /**\n * Allow fire programmatically a cut action\n * @param {String|HTMLElement} target\n * @returns Text cutted.\n */\n\n }, {\n key: \"cut\",\n value: function cut(target) {\n return actions_cut(target);\n }\n /**\n * Returns the support of the given action, or all actions if no action is\n * given.\n * @param {String} [action]\n */\n\n }, {\n key: \"isSupported\",\n value: function isSupported() {\n var action = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ['copy', 'cut'];\n var actions = typeof action === 'string' ? [action] : action;\n var support = !!document.queryCommandSupported;\n actions.forEach(function (action) {\n support = support && !!document.queryCommandSupported(action);\n });\n return support;\n }\n }]);\n\n return Clipboard;\n}((tiny_emitter_default()));\n\n/* harmony default export */ var clipboard = (Clipboard);\n\n/***/ }),\n\n/***/ 828:\n/***/ (function(module) {\n\nvar DOCUMENT_NODE_TYPE = 9;\n\n/**\n * A polyfill for Element.matches()\n */\nif (typeof Element !== 'undefined' && !Element.prototype.matches) {\n var proto = Element.prototype;\n\n proto.matches = proto.matchesSelector ||\n proto.mozMatchesSelector ||\n proto.msMatchesSelector ||\n proto.oMatchesSelector ||\n proto.webkitMatchesSelector;\n}\n\n/**\n * Finds the closest parent that matches a selector.\n *\n * @param {Element} element\n * @param {String} selector\n * @return {Function}\n */\nfunction closest (element, selector) {\n while (element && element.nodeType !== DOCUMENT_NODE_TYPE) {\n if (typeof element.matches === 'function' &&\n element.matches(selector)) {\n return element;\n }\n element = element.parentNode;\n }\n}\n\nmodule.exports = closest;\n\n\n/***/ }),\n\n/***/ 438:\n/***/ (function(module, __unused_webpack_exports, __webpack_require__) {\n\nvar closest = __webpack_require__(828);\n\n/**\n * Delegates event to a selector.\n *\n * @param {Element} element\n * @param {String} selector\n * @param {String} type\n * @param {Function} callback\n * @param {Boolean} useCapture\n * @return {Object}\n */\nfunction _delegate(element, selector, type, callback, useCapture) {\n var listenerFn = listener.apply(this, arguments);\n\n element.addEventListener(type, listenerFn, useCapture);\n\n return {\n destroy: function() {\n element.removeEventListener(type, listenerFn, useCapture);\n }\n }\n}\n\n/**\n * Delegates event to a selector.\n *\n * @param {Element|String|Array} [elements]\n * @param {String} selector\n * @param {String} type\n * @param {Function} callback\n * @param {Boolean} useCapture\n * @return {Object}\n */\nfunction delegate(elements, selector, type, callback, useCapture) {\n // Handle the regular Element usage\n if (typeof elements.addEventListener === 'function') {\n return _delegate.apply(null, arguments);\n }\n\n // Handle Element-less usage, it defaults to global delegation\n if (typeof type === 'function') {\n // Use `document` as the first parameter, then apply arguments\n // This is a short way to .unshift `arguments` without running into deoptimizations\n return _delegate.bind(null, document).apply(null, arguments);\n }\n\n // Handle Selector-based usage\n if (typeof elements === 'string') {\n elements = document.querySelectorAll(elements);\n }\n\n // Handle Array-like based usage\n return Array.prototype.map.call(elements, function (element) {\n return _delegate(element, selector, type, callback, useCapture);\n });\n}\n\n/**\n * Finds closest match and invokes callback.\n *\n * @param {Element} element\n * @param {String} selector\n * @param {String} type\n * @param {Function} callback\n * @return {Function}\n */\nfunction listener(element, selector, type, callback) {\n return function(e) {\n e.delegateTarget = closest(e.target, selector);\n\n if (e.delegateTarget) {\n callback.call(element, e);\n }\n }\n}\n\nmodule.exports = delegate;\n\n\n/***/ }),\n\n/***/ 879:\n/***/ (function(__unused_webpack_module, exports) {\n\n/**\n * Check if argument is a HTML element.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nexports.node = function(value) {\n return value !== undefined\n && value instanceof HTMLElement\n && value.nodeType === 1;\n};\n\n/**\n * Check if argument is a list of HTML elements.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nexports.nodeList = function(value) {\n var type = Object.prototype.toString.call(value);\n\n return value !== undefined\n && (type === '[object NodeList]' || type === '[object HTMLCollection]')\n && ('length' in value)\n && (value.length === 0 || exports.node(value[0]));\n};\n\n/**\n * Check if argument is a string.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nexports.string = function(value) {\n return typeof value === 'string'\n || value instanceof String;\n};\n\n/**\n * Check if argument is a function.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nexports.fn = function(value) {\n var type = Object.prototype.toString.call(value);\n\n return type === '[object Function]';\n};\n\n\n/***/ }),\n\n/***/ 370:\n/***/ (function(module, __unused_webpack_exports, __webpack_require__) {\n\nvar is = __webpack_require__(879);\nvar delegate = __webpack_require__(438);\n\n/**\n * Validates all params and calls the right\n * listener function based on its target type.\n *\n * @param {String|HTMLElement|HTMLCollection|NodeList} target\n * @param {String} type\n * @param {Function} callback\n * @return {Object}\n */\nfunction listen(target, type, callback) {\n if (!target && !type && !callback) {\n throw new Error('Missing required arguments');\n }\n\n if (!is.string(type)) {\n throw new TypeError('Second argument must be a String');\n }\n\n if (!is.fn(callback)) {\n throw new TypeError('Third argument must be a Function');\n }\n\n if (is.node(target)) {\n return listenNode(target, type, callback);\n }\n else if (is.nodeList(target)) {\n return listenNodeList(target, type, callback);\n }\n else if (is.string(target)) {\n return listenSelector(target, type, callback);\n }\n else {\n throw new TypeError('First argument must be a String, HTMLElement, HTMLCollection, or NodeList');\n }\n}\n\n/**\n * Adds an event listener to a HTML element\n * and returns a remove listener function.\n *\n * @param {HTMLElement} node\n * @param {String} type\n * @param {Function} callback\n * @return {Object}\n */\nfunction listenNode(node, type, callback) {\n node.addEventListener(type, callback);\n\n return {\n destroy: function() {\n node.removeEventListener(type, callback);\n }\n }\n}\n\n/**\n * Add an event listener to a list of HTML elements\n * and returns a remove listener function.\n *\n * @param {NodeList|HTMLCollection} nodeList\n * @param {String} type\n * @param {Function} callback\n * @return {Object}\n */\nfunction listenNodeList(nodeList, type, callback) {\n Array.prototype.forEach.call(nodeList, function(node) {\n node.addEventListener(type, callback);\n });\n\n return {\n destroy: function() {\n Array.prototype.forEach.call(nodeList, function(node) {\n node.removeEventListener(type, callback);\n });\n }\n }\n}\n\n/**\n * Add an event listener to a selector\n * and returns a remove listener function.\n *\n * @param {String} selector\n * @param {String} type\n * @param {Function} callback\n * @return {Object}\n */\nfunction listenSelector(selector, type, callback) {\n return delegate(document.body, selector, type, callback);\n}\n\nmodule.exports = listen;\n\n\n/***/ }),\n\n/***/ 817:\n/***/ (function(module) {\n\nfunction select(element) {\n var selectedText;\n\n if (element.nodeName === 'SELECT') {\n element.focus();\n\n selectedText = element.value;\n }\n else if (element.nodeName === 'INPUT' || element.nodeName === 'TEXTAREA') {\n var isReadOnly = element.hasAttribute('readonly');\n\n if (!isReadOnly) {\n element.setAttribute('readonly', '');\n }\n\n element.select();\n element.setSelectionRange(0, element.value.length);\n\n if (!isReadOnly) {\n element.removeAttribute('readonly');\n }\n\n selectedText = element.value;\n }\n else {\n if (element.hasAttribute('contenteditable')) {\n element.focus();\n }\n\n var selection = window.getSelection();\n var range = document.createRange();\n\n range.selectNodeContents(element);\n selection.removeAllRanges();\n selection.addRange(range);\n\n selectedText = selection.toString();\n }\n\n return selectedText;\n}\n\nmodule.exports = select;\n\n\n/***/ }),\n\n/***/ 279:\n/***/ (function(module) {\n\nfunction E () {\n // Keep this empty so it's easier to inherit from\n // (via https://github.com/lipsmack from https://github.com/scottcorgan/tiny-emitter/issues/3)\n}\n\nE.prototype = {\n on: function (name, callback, ctx) {\n var e = this.e || (this.e = {});\n\n (e[name] || (e[name] = [])).push({\n fn: callback,\n ctx: ctx\n });\n\n return this;\n },\n\n once: function (name, callback, ctx) {\n var self = this;\n function listener () {\n self.off(name, listener);\n callback.apply(ctx, arguments);\n };\n\n listener._ = callback\n return this.on(name, listener, ctx);\n },\n\n emit: function (name) {\n var data = [].slice.call(arguments, 1);\n var evtArr = ((this.e || (this.e = {}))[name] || []).slice();\n var i = 0;\n var len = evtArr.length;\n\n for (i; i < len; i++) {\n evtArr[i].fn.apply(evtArr[i].ctx, data);\n }\n\n return this;\n },\n\n off: function (name, callback) {\n var e = this.e || (this.e = {});\n var evts = e[name];\n var liveEvents = [];\n\n if (evts && callback) {\n for (var i = 0, len = evts.length; i < len; i++) {\n if (evts[i].fn !== callback && evts[i].fn._ !== callback)\n liveEvents.push(evts[i]);\n }\n }\n\n // Remove event from queue to prevent memory leak\n // Suggested by https://github.com/lazd\n // Ref: https://github.com/scottcorgan/tiny-emitter/commit/c6ebfaa9bc973b33d110a84a307742b7cf94c953#commitcomment-5024910\n\n (liveEvents.length)\n ? e[name] = liveEvents\n : delete e[name];\n\n return this;\n }\n};\n\nmodule.exports = E;\nmodule.exports.TinyEmitter = E;\n\n\n/***/ })\n\n/******/ \t});\n/************************************************************************/\n/******/ \t// The module cache\n/******/ \tvar __webpack_module_cache__ = {};\n/******/ \t\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n/******/ \t\t// Check if module is in cache\n/******/ \t\tif(__webpack_module_cache__[moduleId]) {\n/******/ \t\t\treturn __webpack_module_cache__[moduleId].exports;\n/******/ \t\t}\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = __webpack_module_cache__[moduleId] = {\n/******/ \t\t\t// no module.id needed\n/******/ \t\t\t// no module.loaded needed\n/******/ \t\t\texports: {}\n/******/ \t\t};\n/******/ \t\n/******/ \t\t// Execute the module function\n/******/ \t\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n/******/ \t\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n/******/ \t\n/************************************************************************/\n/******/ \t/* webpack/runtime/compat get default export */\n/******/ \t!function() {\n/******/ \t\t// getDefaultExport function for compatibility with non-harmony modules\n/******/ \t\t__webpack_require__.n = function(module) {\n/******/ \t\t\tvar getter = module && module.__esModule ?\n/******/ \t\t\t\tfunction() { return module['default']; } :\n/******/ \t\t\t\tfunction() { return module; };\n/******/ \t\t\t__webpack_require__.d(getter, { a: getter });\n/******/ \t\t\treturn getter;\n/******/ \t\t};\n/******/ \t}();\n/******/ \t\n/******/ \t/* webpack/runtime/define property getters */\n/******/ \t!function() {\n/******/ \t\t// define getter functions for harmony exports\n/******/ \t\t__webpack_require__.d = function(exports, definition) {\n/******/ \t\t\tfor(var key in definition) {\n/******/ \t\t\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n/******/ \t\t\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n/******/ \t\t\t\t}\n/******/ \t\t\t}\n/******/ \t\t};\n/******/ \t}();\n/******/ \t\n/******/ \t/* webpack/runtime/hasOwnProperty shorthand */\n/******/ \t!function() {\n/******/ \t\t__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }\n/******/ \t}();\n/******/ \t\n/************************************************************************/\n/******/ \t// module exports must be returned from runtime so entry inlining is disabled\n/******/ \t// startup\n/******/ \t// Load entry module and return exports\n/******/ \treturn __webpack_require__(686);\n/******/ })()\n.default;\n});", "/*\n * Copyright (c) 2016-2025 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport \"focus-visible\"\n\nimport {\n EMPTY,\n NEVER,\n Observable,\n Subject,\n defer,\n delay,\n filter,\n map,\n merge,\n mergeWith,\n shareReplay,\n switchMap\n} from \"rxjs\"\n\nimport { configuration, feature } from \"./_\"\nimport {\n at,\n getActiveElement,\n getOptionalElement,\n requestJSON,\n setLocation,\n setToggle,\n watchDocument,\n watchKeyboard,\n watchLocation,\n watchLocationTarget,\n watchMedia,\n watchPrint,\n watchScript,\n watchViewport\n} from \"./browser\"\nimport {\n getComponentElement,\n getComponentElements,\n mountAnnounce,\n mountBackToTop,\n mountConsent,\n mountContent,\n mountDialog,\n mountHeader,\n mountHeaderTitle,\n mountPalette,\n mountProgress,\n mountSearch,\n mountSearchHiglight,\n mountSidebar,\n mountSource,\n mountTableOfContents,\n mountTabs,\n watchHeader,\n watchMain\n} from \"./components\"\nimport {\n SearchIndex,\n fetchSitemap,\n setupAlternate,\n setupClipboardJS,\n setupInstantNavigation,\n setupVersionSelector\n} from \"./integrations\"\nimport {\n patchEllipsis,\n patchIndeterminate,\n patchScrollfix,\n patchScrolllock\n} from \"./patches\"\nimport \"./polyfills\"\n\n/* ----------------------------------------------------------------------------\n * Functions - @todo refactor\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch search index\n *\n * @returns Search index observable\n */\nfunction fetchSearchIndex(): Observable {\n if (location.protocol === \"file:\") {\n return watchScript(\n `${new URL(\"search/search_index.js\", config.base)}`\n )\n .pipe(\n // @ts-ignore - @todo fix typings\n map(() => __index),\n shareReplay(1)\n )\n } else {\n return requestJSON(\n new URL(\"search/search_index.json\", config.base)\n )\n }\n}\n\n/* ----------------------------------------------------------------------------\n * Application\n * ------------------------------------------------------------------------- */\n\n/* Yay, JavaScript is available */\ndocument.documentElement.classList.remove(\"no-js\")\ndocument.documentElement.classList.add(\"js\")\n\n/* Set up navigation observables and subjects */\nconst document$ = watchDocument()\nconst location$ = watchLocation()\nconst target$ = watchLocationTarget(location$)\nconst keyboard$ = watchKeyboard()\n\n/* Set up media observables */\nconst viewport$ = watchViewport()\nconst tablet$ = watchMedia(\"(min-width: 60em)\")\nconst screen$ = watchMedia(\"(min-width: 76.25em)\")\nconst print$ = watchPrint()\n\n/* Retrieve search index, if search is enabled */\nconst config = configuration()\nconst index$ = document.forms.namedItem(\"search\")\n ? fetchSearchIndex()\n : NEVER\n\n/* Set up Clipboard.js integration */\nconst alert$ = new Subject()\nsetupClipboardJS({ alert$ })\n\n/* Set up language selector */\nsetupAlternate({ document$ })\n\n/* Set up progress indicator */\nconst progress$ = new Subject()\n\n/* Set up sitemap for instant navigation and previews */\nconst sitemap$ = fetchSitemap(config.base)\n\n/* Set up instant navigation, if enabled */\nif (feature(\"navigation.instant\"))\n setupInstantNavigation({ sitemap$, location$, viewport$, progress$ })\n .subscribe(document$)\n\n/* Set up version selector */\nif (config.version?.provider === \"mike\")\n setupVersionSelector({ document$ })\n\n/* Always close drawer and search on navigation */\nmerge(location$, target$)\n .pipe(\n delay(125)\n )\n .subscribe(() => {\n setToggle(\"drawer\", false)\n setToggle(\"search\", false)\n })\n\n/* Set up global keyboard handlers */\nkeyboard$\n .pipe(\n filter(({ mode }) => mode === \"global\")\n )\n .subscribe(key => {\n switch (key.type) {\n\n /* Go to previous page */\n case \"p\":\n case \",\":\n const prev = getOptionalElement(\"link[rel=prev]\")\n if (typeof prev !== \"undefined\")\n setLocation(prev)\n break\n\n /* Go to next page */\n case \"n\":\n case \".\":\n const next = getOptionalElement(\"link[rel=next]\")\n if (typeof next !== \"undefined\")\n setLocation(next)\n break\n\n /* Expand navigation, see https://bit.ly/3ZjG5io */\n case \"Enter\":\n const active = getActiveElement()\n if (active instanceof HTMLLabelElement)\n active.click()\n }\n })\n\n/* Set up patches */\npatchEllipsis({ viewport$, document$ })\npatchIndeterminate({ document$, tablet$ })\npatchScrollfix({ document$ })\npatchScrolllock({ viewport$, tablet$ })\n\n/* Set up header and main area observable */\nconst header$ = watchHeader(getComponentElement(\"header\"), { viewport$ })\nconst main$ = document$\n .pipe(\n map(() => getComponentElement(\"main\")),\n switchMap(el => watchMain(el, { viewport$, header$ })),\n shareReplay(1)\n )\n\n/* Set up control component observables */\nconst control$ = merge(\n\n /* Consent */\n ...getComponentElements(\"consent\")\n .map(el => mountConsent(el, { target$ })),\n\n /* Dialog */\n ...getComponentElements(\"dialog\")\n .map(el => mountDialog(el, { alert$ })),\n\n /* Color palette */\n ...getComponentElements(\"palette\")\n .map(el => mountPalette(el)),\n\n /* Progress bar */\n ...getComponentElements(\"progress\")\n .map(el => mountProgress(el, { progress$ })),\n\n /* Search */\n ...getComponentElements(\"search\")\n .map(el => mountSearch(el, { index$, keyboard$ })),\n\n /* Repository information */\n ...getComponentElements(\"source\")\n .map(el => mountSource(el))\n)\n\n/* Set up content component observables */\nconst content$ = defer(() => merge(\n\n /* Announcement bar */\n ...getComponentElements(\"announce\")\n .map(el => mountAnnounce(el)),\n\n /* Content */\n ...getComponentElements(\"content\")\n .map(el => mountContent(el, { sitemap$, viewport$, target$, print$ })),\n\n /* Search highlighting */\n ...getComponentElements(\"content\")\n .map(el => feature(\"search.highlight\")\n ? mountSearchHiglight(el, { index$, location$ })\n : EMPTY\n ),\n\n /* Header */\n ...getComponentElements(\"header\")\n .map(el => mountHeader(el, { viewport$, header$, main$ })),\n\n /* Header title */\n ...getComponentElements(\"header-title\")\n .map(el => mountHeaderTitle(el, { viewport$, header$ })),\n\n /* Sidebar */\n ...getComponentElements(\"sidebar\")\n .map(el => el.getAttribute(\"data-md-type\") === \"navigation\"\n ? at(screen$, () => mountSidebar(el, { viewport$, header$, main$ }))\n : at(tablet$, () => mountSidebar(el, { viewport$, header$, main$ }))\n ),\n\n /* Navigation tabs */\n ...getComponentElements(\"tabs\")\n .map(el => mountTabs(el, { viewport$, header$ })),\n\n /* Table of contents */\n ...getComponentElements(\"toc\")\n .map(el => mountTableOfContents(el, {\n viewport$, header$, main$, target$\n })),\n\n /* Back-to-top button */\n ...getComponentElements(\"top\")\n .map(el => mountBackToTop(el, { viewport$, header$, main$, target$ }))\n))\n\n/* Set up component observables */\nconst component$ = document$\n .pipe(\n switchMap(() => content$),\n mergeWith(control$),\n shareReplay(1)\n )\n\n/* Subscribe to all components */\ncomponent$.subscribe()\n\n/* ----------------------------------------------------------------------------\n * Exports\n * ------------------------------------------------------------------------- */\n\nwindow.document$ = document$ /* Document observable */\nwindow.location$ = location$ /* Location subject */\nwindow.target$ = target$ /* Location target observable */\nwindow.keyboard$ = keyboard$ /* Keyboard observable */\nwindow.viewport$ = viewport$ /* Viewport observable */\nwindow.tablet$ = tablet$ /* Media tablet observable */\nwindow.screen$ = screen$ /* Media screen observable */\nwindow.print$ = print$ /* Media print observable */\nwindow.alert$ = alert$ /* Alert subject */\nwindow.progress$ = progress$ /* Progress indicator subject */\nwindow.component$ = component$ /* Component observable */\n", "/******************************************************************************\nCopyright (c) Microsoft Corporation.\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n***************************************************************************** */\n/* global Reflect, Promise, SuppressedError, Symbol, Iterator */\n\nvar extendStatics = function(d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n};\n\nexport function __extends(d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n}\n\nexport var __assign = function() {\n __assign = Object.assign || function __assign(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\n }\n return t;\n }\n return __assign.apply(this, arguments);\n}\n\nexport function __rest(s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n}\n\nexport function __decorate(decorators, target, key, desc) {\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\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;\n return c > 3 && r && Object.defineProperty(target, key, r), r;\n}\n\nexport function __param(paramIndex, decorator) {\n return function (target, key) { decorator(target, key, paramIndex); }\n}\n\nexport function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\n var _, done = false;\n for (var i = decorators.length - 1; i >= 0; i--) {\n var context = {};\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\n if (kind === \"accessor\") {\n if (result === void 0) continue;\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\n if (_ = accept(result.get)) descriptor.get = _;\n if (_ = accept(result.set)) descriptor.set = _;\n if (_ = accept(result.init)) initializers.unshift(_);\n }\n else if (_ = accept(result)) {\n if (kind === \"field\") initializers.unshift(_);\n else descriptor[key] = _;\n }\n }\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\n done = true;\n};\n\nexport function __runInitializers(thisArg, initializers, value) {\n var useValue = arguments.length > 2;\n for (var i = 0; i < initializers.length; i++) {\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\n }\n return useValue ? value : void 0;\n};\n\nexport function __propKey(x) {\n return typeof x === \"symbol\" ? x : \"\".concat(x);\n};\n\nexport function __setFunctionName(f, name, prefix) {\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\n};\n\nexport function __metadata(metadataKey, metadataValue) {\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\n}\n\nexport function __awaiter(thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n}\n\nexport function __generator(thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === \"function\" ? Iterator : Object).prototype);\n return g.next = verb(0), g[\"throw\"] = verb(1), g[\"return\"] = verb(2), typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n}\n\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n});\n\nexport function __exportStar(m, o) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\n}\n\nexport function __values(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n}\n\nexport function __read(o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n}\n\n/** @deprecated */\nexport function __spread() {\n for (var ar = [], i = 0; i < arguments.length; i++)\n ar = ar.concat(__read(arguments[i]));\n return ar;\n}\n\n/** @deprecated */\nexport function __spreadArrays() {\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\n r[k] = a[j];\n return r;\n}\n\nexport function __spreadArray(to, from, pack) {\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\n if (ar || !(i in from)) {\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\n ar[i] = from[i];\n }\n }\n return to.concat(ar || Array.prototype.slice.call(from));\n}\n\nexport function __await(v) {\n return this instanceof __await ? (this.v = v, this) : new __await(v);\n}\n\nexport function __asyncGenerator(thisArg, _arguments, generator) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\n return i = Object.create((typeof AsyncIterator === \"function\" ? AsyncIterator : Object).prototype), verb(\"next\"), verb(\"throw\"), verb(\"return\", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i;\n function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; }\n function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } }\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\n function fulfill(value) { resume(\"next\", value); }\n function reject(value) { resume(\"throw\", value); }\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\n}\n\nexport function __asyncDelegator(o) {\n var i, p;\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\n}\n\nexport function __asyncValues(o) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var m = o[Symbol.asyncIterator], i;\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);\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); }); }; }\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\n}\n\nexport function __makeTemplateObject(cooked, raw) {\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\n return cooked;\n};\n\nvar __setModuleDefault = Object.create ? (function(o, v) {\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n}) : function(o, v) {\n o[\"default\"] = v;\n};\n\nexport function __importStar(mod) {\n if (mod && mod.__esModule) return mod;\n var result = {};\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n __setModuleDefault(result, mod);\n return result;\n}\n\nexport function __importDefault(mod) {\n return (mod && mod.__esModule) ? mod : { default: mod };\n}\n\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\n}\n\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\n}\n\nexport function __classPrivateFieldIn(state, receiver) {\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\n}\n\nexport function __addDisposableResource(env, value, async) {\n if (value !== null && value !== void 0) {\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\n var dispose, inner;\n if (async) {\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\n dispose = value[Symbol.asyncDispose];\n }\n if (dispose === void 0) {\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\n dispose = value[Symbol.dispose];\n if (async) inner = dispose;\n }\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\n if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };\n env.stack.push({ value: value, dispose: dispose, async: async });\n }\n else if (async) {\n env.stack.push({ async: true });\n }\n return value;\n}\n\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\n var e = new Error(message);\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\n};\n\nexport function __disposeResources(env) {\n function fail(e) {\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\n env.hasError = true;\n }\n var r, s = 0;\n function next() {\n while (r = env.stack.pop()) {\n try {\n if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);\n if (r.dispose) {\n var result = r.dispose.call(r.value);\n if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\n }\n else s |= 1;\n }\n catch (e) {\n fail(e);\n }\n }\n if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();\n if (env.hasError) throw env.error;\n }\n return next();\n}\n\nexport default {\n __extends,\n __assign,\n __rest,\n __decorate,\n __param,\n __metadata,\n __awaiter,\n __generator,\n __createBinding,\n __exportStar,\n __values,\n __read,\n __spread,\n __spreadArrays,\n __spreadArray,\n __await,\n __asyncGenerator,\n __asyncDelegator,\n __asyncValues,\n __makeTemplateObject,\n __importStar,\n __importDefault,\n __classPrivateFieldGet,\n __classPrivateFieldSet,\n __classPrivateFieldIn,\n __addDisposableResource,\n __disposeResources,\n};\n", "/**\n * Returns true if the object is a function.\n * @param value The value to check\n */\nexport function isFunction(value: any): value is (...args: any[]) => any {\n return typeof value === 'function';\n}\n", "/**\n * Used to create Error subclasses until the community moves away from ES5.\n *\n * This is because compiling from TypeScript down to ES5 has issues with subclassing Errors\n * as well as other built-in types: https://github.com/Microsoft/TypeScript/issues/12123\n *\n * @param createImpl A factory function to create the actual constructor implementation. The returned\n * function should be a named function that calls `_super` internally.\n */\nexport function createErrorClass(createImpl: (_super: any) => any): T {\n const _super = (instance: any) => {\n Error.call(instance);\n instance.stack = new Error().stack;\n };\n\n const ctorFunc = createImpl(_super);\n ctorFunc.prototype = Object.create(Error.prototype);\n ctorFunc.prototype.constructor = ctorFunc;\n return ctorFunc;\n}\n", "import { createErrorClass } from './createErrorClass';\n\nexport interface UnsubscriptionError extends Error {\n readonly errors: any[];\n}\n\nexport interface UnsubscriptionErrorCtor {\n /**\n * @deprecated Internal implementation detail. Do not construct error instances.\n * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n */\n new (errors: any[]): UnsubscriptionError;\n}\n\n/**\n * An error thrown when one or more errors have occurred during the\n * `unsubscribe` of a {@link Subscription}.\n */\nexport const UnsubscriptionError: UnsubscriptionErrorCtor = createErrorClass(\n (_super) =>\n function UnsubscriptionErrorImpl(this: any, errors: (Error | string)[]) {\n _super(this);\n this.message = errors\n ? `${errors.length} errors occurred during unsubscription:\n${errors.map((err, i) => `${i + 1}) ${err.toString()}`).join('\\n ')}`\n : '';\n this.name = 'UnsubscriptionError';\n this.errors = errors;\n }\n);\n", "/**\n * Removes an item from an array, mutating it.\n * @param arr The array to remove the item from\n * @param item The item to remove\n */\nexport function arrRemove(arr: T[] | undefined | null, item: T) {\n if (arr) {\n const index = arr.indexOf(item);\n 0 <= index && arr.splice(index, 1);\n }\n}\n", "import { isFunction } from './util/isFunction';\nimport { UnsubscriptionError } from './util/UnsubscriptionError';\nimport { SubscriptionLike, TeardownLogic, Unsubscribable } from './types';\nimport { arrRemove } from './util/arrRemove';\n\n/**\n * Represents a disposable resource, such as the execution of an Observable. A\n * Subscription has one important method, `unsubscribe`, that takes no argument\n * and just disposes the resource held by the subscription.\n *\n * Additionally, subscriptions may be grouped together through the `add()`\n * method, which will attach a child Subscription to the current Subscription.\n * When a Subscription is unsubscribed, all its children (and its grandchildren)\n * will be unsubscribed as well.\n */\nexport class Subscription implements SubscriptionLike {\n public static EMPTY = (() => {\n const empty = new Subscription();\n empty.closed = true;\n return empty;\n })();\n\n /**\n * A flag to indicate whether this Subscription has already been unsubscribed.\n */\n public closed = false;\n\n private _parentage: Subscription[] | Subscription | null = null;\n\n /**\n * The list of registered finalizers to execute upon unsubscription. Adding and removing from this\n * list occurs in the {@link #add} and {@link #remove} methods.\n */\n private _finalizers: Exclude[] | null = null;\n\n /**\n * @param initialTeardown A function executed first as part of the finalization\n * process that is kicked off when {@link #unsubscribe} is called.\n */\n constructor(private initialTeardown?: () => void) {}\n\n /**\n * Disposes the resources held by the subscription. May, for instance, cancel\n * an ongoing Observable execution or cancel any other type of work that\n * started when the Subscription was created.\n */\n unsubscribe(): void {\n let errors: any[] | undefined;\n\n if (!this.closed) {\n this.closed = true;\n\n // Remove this from it's parents.\n const { _parentage } = this;\n if (_parentage) {\n this._parentage = null;\n if (Array.isArray(_parentage)) {\n for (const parent of _parentage) {\n parent.remove(this);\n }\n } else {\n _parentage.remove(this);\n }\n }\n\n const { initialTeardown: initialFinalizer } = this;\n if (isFunction(initialFinalizer)) {\n try {\n initialFinalizer();\n } catch (e) {\n errors = e instanceof UnsubscriptionError ? e.errors : [e];\n }\n }\n\n const { _finalizers } = this;\n if (_finalizers) {\n this._finalizers = null;\n for (const finalizer of _finalizers) {\n try {\n execFinalizer(finalizer);\n } catch (err) {\n errors = errors ?? [];\n if (err instanceof UnsubscriptionError) {\n errors = [...errors, ...err.errors];\n } else {\n errors.push(err);\n }\n }\n }\n }\n\n if (errors) {\n throw new UnsubscriptionError(errors);\n }\n }\n }\n\n /**\n * Adds a finalizer to this subscription, so that finalization will be unsubscribed/called\n * when this subscription is unsubscribed. If this subscription is already {@link #closed},\n * because it has already been unsubscribed, then whatever finalizer is passed to it\n * will automatically be executed (unless the finalizer itself is also a closed subscription).\n *\n * Closed Subscriptions cannot be added as finalizers to any subscription. Adding a closed\n * subscription to a any subscription will result in no operation. (A noop).\n *\n * Adding a subscription to itself, or adding `null` or `undefined` will not perform any\n * operation at all. (A noop).\n *\n * `Subscription` instances that are added to this instance will automatically remove themselves\n * if they are unsubscribed. Functions and {@link Unsubscribable} objects that you wish to remove\n * will need to be removed manually with {@link #remove}\n *\n * @param teardown The finalization logic to add to this subscription.\n */\n add(teardown: TeardownLogic): void {\n // Only add the finalizer if it's not undefined\n // and don't add a subscription to itself.\n if (teardown && teardown !== this) {\n if (this.closed) {\n // If this subscription is already closed,\n // execute whatever finalizer is handed to it automatically.\n execFinalizer(teardown);\n } else {\n if (teardown instanceof Subscription) {\n // We don't add closed subscriptions, and we don't add the same subscription\n // twice. Subscription unsubscribe is idempotent.\n if (teardown.closed || teardown._hasParent(this)) {\n return;\n }\n teardown._addParent(this);\n }\n (this._finalizers = this._finalizers ?? []).push(teardown);\n }\n }\n }\n\n /**\n * Checks to see if a this subscription already has a particular parent.\n * This will signal that this subscription has already been added to the parent in question.\n * @param parent the parent to check for\n */\n private _hasParent(parent: Subscription) {\n const { _parentage } = this;\n return _parentage === parent || (Array.isArray(_parentage) && _parentage.includes(parent));\n }\n\n /**\n * Adds a parent to this subscription so it can be removed from the parent if it\n * unsubscribes on it's own.\n *\n * NOTE: THIS ASSUMES THAT {@link _hasParent} HAS ALREADY BEEN CHECKED.\n * @param parent The parent subscription to add\n */\n private _addParent(parent: Subscription) {\n const { _parentage } = this;\n this._parentage = Array.isArray(_parentage) ? (_parentage.push(parent), _parentage) : _parentage ? [_parentage, parent] : parent;\n }\n\n /**\n * Called on a child when it is removed via {@link #remove}.\n * @param parent The parent to remove\n */\n private _removeParent(parent: Subscription) {\n const { _parentage } = this;\n if (_parentage === parent) {\n this._parentage = null;\n } else if (Array.isArray(_parentage)) {\n arrRemove(_parentage, parent);\n }\n }\n\n /**\n * Removes a finalizer from this subscription that was previously added with the {@link #add} method.\n *\n * Note that `Subscription` instances, when unsubscribed, will automatically remove themselves\n * from every other `Subscription` they have been added to. This means that using the `remove` method\n * is not a common thing and should be used thoughtfully.\n *\n * If you add the same finalizer instance of a function or an unsubscribable object to a `Subscription` instance\n * more than once, you will need to call `remove` the same number of times to remove all instances.\n *\n * All finalizer instances are removed to free up memory upon unsubscription.\n *\n * @param teardown The finalizer to remove from this subscription\n */\n remove(teardown: Exclude): void {\n const { _finalizers } = this;\n _finalizers && arrRemove(_finalizers, teardown);\n\n if (teardown instanceof Subscription) {\n teardown._removeParent(this);\n }\n }\n}\n\nexport const EMPTY_SUBSCRIPTION = Subscription.EMPTY;\n\nexport function isSubscription(value: any): value is Subscription {\n return (\n value instanceof Subscription ||\n (value && 'closed' in value && isFunction(value.remove) && isFunction(value.add) && isFunction(value.unsubscribe))\n );\n}\n\nfunction execFinalizer(finalizer: Unsubscribable | (() => void)) {\n if (isFunction(finalizer)) {\n finalizer();\n } else {\n finalizer.unsubscribe();\n }\n}\n", "import { Subscriber } from './Subscriber';\nimport { ObservableNotification } from './types';\n\n/**\n * The {@link GlobalConfig} object for RxJS. It is used to configure things\n * like how to react on unhandled errors.\n */\nexport const config: GlobalConfig = {\n onUnhandledError: null,\n onStoppedNotification: null,\n Promise: undefined,\n useDeprecatedSynchronousErrorHandling: false,\n useDeprecatedNextContext: false,\n};\n\n/**\n * The global configuration object for RxJS, used to configure things\n * like how to react on unhandled errors. Accessible via {@link config}\n * object.\n */\nexport interface GlobalConfig {\n /**\n * A registration point for unhandled errors from RxJS. These are errors that\n * cannot were not handled by consuming code in the usual subscription path. For\n * example, if you have this configured, and you subscribe to an observable without\n * providing an error handler, errors from that subscription will end up here. This\n * will _always_ be called asynchronously on another job in the runtime. This is because\n * we do not want errors thrown in this user-configured handler to interfere with the\n * behavior of the library.\n */\n onUnhandledError: ((err: any) => void) | null;\n\n /**\n * A registration point for notifications that cannot be sent to subscribers because they\n * have completed, errored or have been explicitly unsubscribed. By default, next, complete\n * and error notifications sent to stopped subscribers are noops. However, sometimes callers\n * might want a different behavior. For example, with sources that attempt to report errors\n * to stopped subscribers, a caller can configure RxJS to throw an unhandled error instead.\n * This will _always_ be called asynchronously on another job in the runtime. This is because\n * we do not want errors thrown in this user-configured handler to interfere with the\n * behavior of the library.\n */\n onStoppedNotification: ((notification: ObservableNotification, subscriber: Subscriber) => void) | null;\n\n /**\n * The promise constructor used by default for {@link Observable#toPromise toPromise} and {@link Observable#forEach forEach}\n * methods.\n *\n * @deprecated As of version 8, RxJS will no longer support this sort of injection of a\n * Promise constructor. If you need a Promise implementation other than native promises,\n * please polyfill/patch Promise as you see appropriate. Will be removed in v8.\n */\n Promise?: PromiseConstructorLike;\n\n /**\n * If true, turns on synchronous error rethrowing, which is a deprecated behavior\n * in v6 and higher. This behavior enables bad patterns like wrapping a subscribe\n * call in a try/catch block. It also enables producer interference, a nasty bug\n * where a multicast can be broken for all observers by a downstream consumer with\n * an unhandled error. DO NOT USE THIS FLAG UNLESS IT'S NEEDED TO BUY TIME\n * FOR MIGRATION REASONS.\n *\n * @deprecated As of version 8, RxJS will no longer support synchronous throwing\n * of unhandled errors. All errors will be thrown on a separate call stack to prevent bad\n * behaviors described above. Will be removed in v8.\n */\n useDeprecatedSynchronousErrorHandling: boolean;\n\n /**\n * If true, enables an as-of-yet undocumented feature from v5: The ability to access\n * `unsubscribe()` via `this` context in `next` functions created in observers passed\n * to `subscribe`.\n *\n * This is being removed because the performance was severely problematic, and it could also cause\n * issues when types other than POJOs are passed to subscribe as subscribers, as they will likely have\n * their `this` context overwritten.\n *\n * @deprecated As of version 8, RxJS will no longer support altering the\n * context of next functions provided as part of an observer to Subscribe. Instead,\n * you will have access to a subscription or a signal or token that will allow you to do things like\n * unsubscribe and test closed status. Will be removed in v8.\n */\n useDeprecatedNextContext: boolean;\n}\n", "import type { TimerHandle } from './timerHandle';\ntype SetTimeoutFunction = (handler: () => void, timeout?: number, ...args: any[]) => TimerHandle;\ntype ClearTimeoutFunction = (handle: TimerHandle) => void;\n\ninterface TimeoutProvider {\n setTimeout: SetTimeoutFunction;\n clearTimeout: ClearTimeoutFunction;\n delegate:\n | {\n setTimeout: SetTimeoutFunction;\n clearTimeout: ClearTimeoutFunction;\n }\n | undefined;\n}\n\nexport const timeoutProvider: TimeoutProvider = {\n // When accessing the delegate, use the variable rather than `this` so that\n // the functions can be called without being bound to the provider.\n setTimeout(handler: () => void, timeout?: number, ...args) {\n const { delegate } = timeoutProvider;\n if (delegate?.setTimeout) {\n return delegate.setTimeout(handler, timeout, ...args);\n }\n return setTimeout(handler, timeout, ...args);\n },\n clearTimeout(handle) {\n const { delegate } = timeoutProvider;\n return (delegate?.clearTimeout || clearTimeout)(handle as any);\n },\n delegate: undefined,\n};\n", "import { config } from '../config';\nimport { timeoutProvider } from '../scheduler/timeoutProvider';\n\n/**\n * Handles an error on another job either with the user-configured {@link onUnhandledError},\n * or by throwing it on that new job so it can be picked up by `window.onerror`, `process.on('error')`, etc.\n *\n * This should be called whenever there is an error that is out-of-band with the subscription\n * or when an error hits a terminal boundary of the subscription and no error handler was provided.\n *\n * @param err the error to report\n */\nexport function reportUnhandledError(err: any) {\n timeoutProvider.setTimeout(() => {\n const { onUnhandledError } = config;\n if (onUnhandledError) {\n // Execute the user-configured error handler.\n onUnhandledError(err);\n } else {\n // Throw so it is picked up by the runtime's uncaught error mechanism.\n throw err;\n }\n });\n}\n", "/* tslint:disable:no-empty */\nexport function noop() { }\n", "import { CompleteNotification, NextNotification, ErrorNotification } from './types';\n\n/**\n * A completion object optimized for memory use and created to be the\n * same \"shape\" as other notifications in v8.\n * @internal\n */\nexport const COMPLETE_NOTIFICATION = (() => createNotification('C', undefined, undefined) as CompleteNotification)();\n\n/**\n * Internal use only. Creates an optimized error notification that is the same \"shape\"\n * as other notifications.\n * @internal\n */\nexport function errorNotification(error: any): ErrorNotification {\n return createNotification('E', undefined, error) as any;\n}\n\n/**\n * Internal use only. Creates an optimized next notification that is the same \"shape\"\n * as other notifications.\n * @internal\n */\nexport function nextNotification(value: T) {\n return createNotification('N', value, undefined) as NextNotification;\n}\n\n/**\n * Ensures that all notifications created internally have the same \"shape\" in v8.\n *\n * TODO: This is only exported to support a crazy legacy test in `groupBy`.\n * @internal\n */\nexport function createNotification(kind: 'N' | 'E' | 'C', value: any, error: any) {\n return {\n kind,\n value,\n error,\n };\n}\n", "import { config } from '../config';\n\nlet context: { errorThrown: boolean; error: any } | null = null;\n\n/**\n * Handles dealing with errors for super-gross mode. Creates a context, in which\n * any synchronously thrown errors will be passed to {@link captureError}. Which\n * will record the error such that it will be rethrown after the call back is complete.\n * TODO: Remove in v8\n * @param cb An immediately executed function.\n */\nexport function errorContext(cb: () => void) {\n if (config.useDeprecatedSynchronousErrorHandling) {\n const isRoot = !context;\n if (isRoot) {\n context = { errorThrown: false, error: null };\n }\n cb();\n if (isRoot) {\n const { errorThrown, error } = context!;\n context = null;\n if (errorThrown) {\n throw error;\n }\n }\n } else {\n // This is the general non-deprecated path for everyone that\n // isn't crazy enough to use super-gross mode (useDeprecatedSynchronousErrorHandling)\n cb();\n }\n}\n\n/**\n * Captures errors only in super-gross mode.\n * @param err the error to capture\n */\nexport function captureError(err: any) {\n if (config.useDeprecatedSynchronousErrorHandling && context) {\n context.errorThrown = true;\n context.error = err;\n }\n}\n", "import { isFunction } from './util/isFunction';\nimport { Observer, ObservableNotification } from './types';\nimport { isSubscription, Subscription } from './Subscription';\nimport { config } from './config';\nimport { reportUnhandledError } from './util/reportUnhandledError';\nimport { noop } from './util/noop';\nimport { nextNotification, errorNotification, COMPLETE_NOTIFICATION } from './NotificationFactories';\nimport { timeoutProvider } from './scheduler/timeoutProvider';\nimport { captureError } from './util/errorContext';\n\n/**\n * Implements the {@link Observer} interface and extends the\n * {@link Subscription} class. While the {@link Observer} is the public API for\n * consuming the values of an {@link Observable}, all Observers get converted to\n * a Subscriber, in order to provide Subscription-like capabilities such as\n * `unsubscribe`. Subscriber is a common type in RxJS, and crucial for\n * implementing operators, but it is rarely used as a public API.\n */\nexport class Subscriber extends Subscription implements Observer {\n /**\n * A static factory for a Subscriber, given a (potentially partial) definition\n * of an Observer.\n * @param next The `next` callback of an Observer.\n * @param error The `error` callback of an\n * Observer.\n * @param complete The `complete` callback of an\n * Observer.\n * @return A Subscriber wrapping the (partially defined)\n * Observer represented by the given arguments.\n * @deprecated Do not use. Will be removed in v8. There is no replacement for this\n * method, and there is no reason to be creating instances of `Subscriber` directly.\n * If you have a specific use case, please file an issue.\n */\n static create(next?: (x?: T) => void, error?: (e?: any) => void, complete?: () => void): Subscriber {\n return new SafeSubscriber(next, error, complete);\n }\n\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n protected isStopped: boolean = false;\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n protected destination: Subscriber | Observer; // this `any` is the escape hatch to erase extra type param (e.g. R)\n\n /**\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n * There is no reason to directly create an instance of Subscriber. This type is exported for typings reasons.\n */\n constructor(destination?: Subscriber | Observer) {\n super();\n if (destination) {\n this.destination = destination;\n // Automatically chain subscriptions together here.\n // if destination is a Subscription, then it is a Subscriber.\n if (isSubscription(destination)) {\n destination.add(this);\n }\n } else {\n this.destination = EMPTY_OBSERVER;\n }\n }\n\n /**\n * The {@link Observer} callback to receive notifications of type `next` from\n * the Observable, with a value. The Observable may call this method 0 or more\n * times.\n * @param value The `next` value.\n */\n next(value: T): void {\n if (this.isStopped) {\n handleStoppedNotification(nextNotification(value), this);\n } else {\n this._next(value!);\n }\n }\n\n /**\n * The {@link Observer} callback to receive notifications of type `error` from\n * the Observable, with an attached `Error`. Notifies the Observer that\n * the Observable has experienced an error condition.\n * @param err The `error` exception.\n */\n error(err?: any): void {\n if (this.isStopped) {\n handleStoppedNotification(errorNotification(err), this);\n } else {\n this.isStopped = true;\n this._error(err);\n }\n }\n\n /**\n * The {@link Observer} callback to receive a valueless notification of type\n * `complete` from the Observable. Notifies the Observer that the Observable\n * has finished sending push-based notifications.\n */\n complete(): void {\n if (this.isStopped) {\n handleStoppedNotification(COMPLETE_NOTIFICATION, this);\n } else {\n this.isStopped = true;\n this._complete();\n }\n }\n\n unsubscribe(): void {\n if (!this.closed) {\n this.isStopped = true;\n super.unsubscribe();\n this.destination = null!;\n }\n }\n\n protected _next(value: T): void {\n this.destination.next(value);\n }\n\n protected _error(err: any): void {\n try {\n this.destination.error(err);\n } finally {\n this.unsubscribe();\n }\n }\n\n protected _complete(): void {\n try {\n this.destination.complete();\n } finally {\n this.unsubscribe();\n }\n }\n}\n\n/**\n * This bind is captured here because we want to be able to have\n * compatibility with monoid libraries that tend to use a method named\n * `bind`. In particular, a library called Monio requires this.\n */\nconst _bind = Function.prototype.bind;\n\nfunction bind any>(fn: Fn, thisArg: any): Fn {\n return _bind.call(fn, thisArg);\n}\n\n/**\n * Internal optimization only, DO NOT EXPOSE.\n * @internal\n */\nclass ConsumerObserver implements Observer {\n constructor(private partialObserver: Partial>) {}\n\n next(value: T): void {\n const { partialObserver } = this;\n if (partialObserver.next) {\n try {\n partialObserver.next(value);\n } catch (error) {\n handleUnhandledError(error);\n }\n }\n }\n\n error(err: any): void {\n const { partialObserver } = this;\n if (partialObserver.error) {\n try {\n partialObserver.error(err);\n } catch (error) {\n handleUnhandledError(error);\n }\n } else {\n handleUnhandledError(err);\n }\n }\n\n complete(): void {\n const { partialObserver } = this;\n if (partialObserver.complete) {\n try {\n partialObserver.complete();\n } catch (error) {\n handleUnhandledError(error);\n }\n }\n }\n}\n\nexport class SafeSubscriber extends Subscriber {\n constructor(\n observerOrNext?: Partial> | ((value: T) => void) | null,\n error?: ((e?: any) => void) | null,\n complete?: (() => void) | null\n ) {\n super();\n\n let partialObserver: Partial>;\n if (isFunction(observerOrNext) || !observerOrNext) {\n // The first argument is a function, not an observer. The next\n // two arguments *could* be observers, or they could be empty.\n partialObserver = {\n next: (observerOrNext ?? undefined) as ((value: T) => void) | undefined,\n error: error ?? undefined,\n complete: complete ?? undefined,\n };\n } else {\n // The first argument is a partial observer.\n let context: any;\n if (this && config.useDeprecatedNextContext) {\n // This is a deprecated path that made `this.unsubscribe()` available in\n // next handler functions passed to subscribe. This only exists behind a flag\n // now, as it is *very* slow.\n context = Object.create(observerOrNext);\n context.unsubscribe = () => this.unsubscribe();\n partialObserver = {\n next: observerOrNext.next && bind(observerOrNext.next, context),\n error: observerOrNext.error && bind(observerOrNext.error, context),\n complete: observerOrNext.complete && bind(observerOrNext.complete, context),\n };\n } else {\n // The \"normal\" path. Just use the partial observer directly.\n partialObserver = observerOrNext;\n }\n }\n\n // Wrap the partial observer to ensure it's a full observer, and\n // make sure proper error handling is accounted for.\n this.destination = new ConsumerObserver(partialObserver);\n }\n}\n\nfunction handleUnhandledError(error: any) {\n if (config.useDeprecatedSynchronousErrorHandling) {\n captureError(error);\n } else {\n // Ideal path, we report this as an unhandled error,\n // which is thrown on a new call stack.\n reportUnhandledError(error);\n }\n}\n\n/**\n * An error handler used when no error handler was supplied\n * to the SafeSubscriber -- meaning no error handler was supplied\n * do the `subscribe` call on our observable.\n * @param err The error to handle\n */\nfunction defaultErrorHandler(err: any) {\n throw err;\n}\n\n/**\n * A handler for notifications that cannot be sent to a stopped subscriber.\n * @param notification The notification being sent.\n * @param subscriber The stopped subscriber.\n */\nfunction handleStoppedNotification(notification: ObservableNotification, subscriber: Subscriber) {\n const { onStoppedNotification } = config;\n onStoppedNotification && timeoutProvider.setTimeout(() => onStoppedNotification(notification, subscriber));\n}\n\n/**\n * The observer used as a stub for subscriptions where the user did not\n * pass any arguments to `subscribe`. Comes with the default error handling\n * behavior.\n */\nexport const EMPTY_OBSERVER: Readonly> & { closed: true } = {\n closed: true,\n next: noop,\n error: defaultErrorHandler,\n complete: noop,\n};\n", "/**\n * Symbol.observable or a string \"@@observable\". Used for interop\n *\n * @deprecated We will no longer be exporting this symbol in upcoming versions of RxJS.\n * Instead polyfill and use Symbol.observable directly *or* use https://www.npmjs.com/package/symbol-observable\n */\nexport const observable: string | symbol = (() => (typeof Symbol === 'function' && Symbol.observable) || '@@observable')();\n", "/**\n * This function takes one parameter and just returns it. Simply put,\n * this is like `(x: T): T => x`.\n *\n * ## Examples\n *\n * This is useful in some cases when using things like `mergeMap`\n *\n * ```ts\n * import { interval, take, map, range, mergeMap, identity } from 'rxjs';\n *\n * const source$ = interval(1000).pipe(take(5));\n *\n * const result$ = source$.pipe(\n * map(i => range(i)),\n * mergeMap(identity) // same as mergeMap(x => x)\n * );\n *\n * result$.subscribe({\n * next: console.log\n * });\n * ```\n *\n * Or when you want to selectively apply an operator\n *\n * ```ts\n * import { interval, take, identity } from 'rxjs';\n *\n * const shouldLimit = () => Math.random() < 0.5;\n *\n * const source$ = interval(1000);\n *\n * const result$ = source$.pipe(shouldLimit() ? take(5) : identity);\n *\n * result$.subscribe({\n * next: console.log\n * });\n * ```\n *\n * @param x Any value that is returned by this function\n * @returns The value passed as the first parameter to this function\n */\nexport function identity(x: T): T {\n return x;\n}\n", "import { identity } from './identity';\nimport { UnaryFunction } from '../types';\n\nexport function pipe(): typeof identity;\nexport function pipe(fn1: UnaryFunction): UnaryFunction;\nexport function pipe(fn1: UnaryFunction, fn2: UnaryFunction): UnaryFunction;\nexport function pipe(fn1: UnaryFunction, fn2: UnaryFunction, fn3: UnaryFunction): UnaryFunction;\nexport function pipe(\n fn1: UnaryFunction,\n fn2: UnaryFunction,\n fn3: UnaryFunction,\n fn4: UnaryFunction\n): UnaryFunction;\nexport function pipe(\n fn1: UnaryFunction,\n fn2: UnaryFunction,\n fn3: UnaryFunction,\n fn4: UnaryFunction,\n fn5: UnaryFunction\n): UnaryFunction;\nexport function pipe(\n fn1: UnaryFunction,\n fn2: UnaryFunction,\n fn3: UnaryFunction,\n fn4: UnaryFunction,\n fn5: UnaryFunction,\n fn6: UnaryFunction\n): UnaryFunction;\nexport function pipe(\n fn1: UnaryFunction,\n fn2: UnaryFunction,\n fn3: UnaryFunction,\n fn4: UnaryFunction,\n fn5: UnaryFunction,\n fn6: UnaryFunction,\n fn7: UnaryFunction\n): UnaryFunction;\nexport function pipe(\n fn1: UnaryFunction,\n fn2: UnaryFunction,\n fn3: UnaryFunction,\n fn4: UnaryFunction,\n fn5: UnaryFunction,\n fn6: UnaryFunction,\n fn7: UnaryFunction,\n fn8: UnaryFunction\n): UnaryFunction;\nexport function pipe(\n fn1: UnaryFunction,\n fn2: UnaryFunction,\n fn3: UnaryFunction,\n fn4: UnaryFunction,\n fn5: UnaryFunction,\n fn6: UnaryFunction,\n fn7: UnaryFunction,\n fn8: UnaryFunction,\n fn9: UnaryFunction\n): UnaryFunction;\nexport function pipe(\n fn1: UnaryFunction,\n fn2: UnaryFunction,\n fn3: UnaryFunction,\n fn4: UnaryFunction,\n fn5: UnaryFunction,\n fn6: UnaryFunction,\n fn7: UnaryFunction,\n fn8: UnaryFunction,\n fn9: UnaryFunction,\n ...fns: UnaryFunction[]\n): UnaryFunction;\n\n/**\n * pipe() can be called on one or more functions, each of which can take one argument (\"UnaryFunction\")\n * and uses it to return a value.\n * It returns a function that takes one argument, passes it to the first UnaryFunction, and then\n * passes the result to the next one, passes that result to the next one, and so on. \n */\nexport function pipe(...fns: Array>): UnaryFunction {\n return pipeFromArray(fns);\n}\n\n/** @internal */\nexport function pipeFromArray(fns: Array>): UnaryFunction {\n if (fns.length === 0) {\n return identity as UnaryFunction;\n }\n\n if (fns.length === 1) {\n return fns[0];\n }\n\n return function piped(input: T): R {\n return fns.reduce((prev: any, fn: UnaryFunction) => fn(prev), input as any);\n };\n}\n", "import { Operator } from './Operator';\nimport { SafeSubscriber, Subscriber } from './Subscriber';\nimport { isSubscription, Subscription } from './Subscription';\nimport { TeardownLogic, OperatorFunction, Subscribable, Observer } from './types';\nimport { observable as Symbol_observable } from './symbol/observable';\nimport { pipeFromArray } from './util/pipe';\nimport { config } from './config';\nimport { isFunction } from './util/isFunction';\nimport { errorContext } from './util/errorContext';\n\n/**\n * A representation of any set of values over any amount of time. This is the most basic building block\n * of RxJS.\n */\nexport class Observable implements Subscribable {\n /**\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n */\n source: Observable | undefined;\n\n /**\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n */\n operator: Operator | undefined;\n\n /**\n * @param subscribe The function that is called when the Observable is\n * initially subscribed to. This function is given a Subscriber, to which new values\n * can be `next`ed, or an `error` method can be called to raise an error, or\n * `complete` can be called to notify of a successful completion.\n */\n constructor(subscribe?: (this: Observable, subscriber: Subscriber) => TeardownLogic) {\n if (subscribe) {\n this._subscribe = subscribe;\n }\n }\n\n // HACK: Since TypeScript inherits static properties too, we have to\n // fight against TypeScript here so Subject can have a different static create signature\n /**\n * Creates a new Observable by calling the Observable constructor\n * @param subscribe the subscriber function to be passed to the Observable constructor\n * @return A new observable.\n * @deprecated Use `new Observable()` instead. Will be removed in v8.\n */\n static create: (...args: any[]) => any = (subscribe?: (subscriber: Subscriber) => TeardownLogic) => {\n return new Observable(subscribe);\n };\n\n /**\n * Creates a new Observable, with this Observable instance as the source, and the passed\n * operator defined as the new observable's operator.\n * @param operator the operator defining the operation to take on the observable\n * @return A new observable with the Operator applied.\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n * If you have implemented an operator using `lift`, it is recommended that you create an\n * operator by simply returning `new Observable()` directly. See \"Creating new operators from\n * scratch\" section here: https://rxjs.dev/guide/operators\n */\n lift(operator?: Operator): Observable {\n const observable = new Observable();\n observable.source = this;\n observable.operator = operator;\n return observable;\n }\n\n subscribe(observerOrNext?: Partial> | ((value: T) => void)): Subscription;\n /** @deprecated Instead of passing separate callback arguments, use an observer argument. Signatures taking separate callback arguments will be removed in v8. Details: https://rxjs.dev/deprecations/subscribe-arguments */\n subscribe(next?: ((value: T) => void) | null, error?: ((error: any) => void) | null, complete?: (() => void) | null): Subscription;\n /**\n * Invokes an execution of an Observable and registers Observer handlers for notifications it will emit.\n *\n * Use it when you have all these Observables, but still nothing is happening.\n *\n * `subscribe` is not a regular operator, but a method that calls Observable's internal `subscribe` function. It\n * might be for example a function that you passed to Observable's constructor, but most of the time it is\n * a library implementation, which defines what will be emitted by an Observable, and when it be will emitted. This means\n * that calling `subscribe` is actually the moment when Observable starts its work, not when it is created, as it is often\n * the thought.\n *\n * Apart from starting the execution of an Observable, this method allows you to listen for values\n * that an Observable emits, as well as for when it completes or errors. You can achieve this in two\n * of the following ways.\n *\n * The first way is creating an object that implements {@link Observer} interface. It should have methods\n * defined by that interface, but note that it should be just a regular JavaScript object, which you can create\n * yourself in any way you want (ES6 class, classic function constructor, object literal etc.). In particular, do\n * not attempt to use any RxJS implementation details to create Observers - you don't need them. Remember also\n * that your object does not have to implement all methods. If you find yourself creating a method that doesn't\n * do anything, you can simply omit it. Note however, if the `error` method is not provided and an error happens,\n * it will be thrown asynchronously. Errors thrown asynchronously cannot be caught using `try`/`catch`. Instead,\n * use the {@link onUnhandledError} configuration option or use a runtime handler (like `window.onerror` or\n * `process.on('error)`) to be notified of unhandled errors. Because of this, it's recommended that you provide\n * an `error` method to avoid missing thrown errors.\n *\n * The second way is to give up on Observer object altogether and simply provide callback functions in place of its methods.\n * This means you can provide three functions as arguments to `subscribe`, where the first function is equivalent\n * of a `next` method, the second of an `error` method and the third of a `complete` method. Just as in case of an Observer,\n * if you do not need to listen for something, you can omit a function by passing `undefined` or `null`,\n * since `subscribe` recognizes these functions by where they were placed in function call. When it comes\n * to the `error` function, as with an Observer, if not provided, errors emitted by an Observable will be thrown asynchronously.\n *\n * You can, however, subscribe with no parameters at all. This may be the case where you're not interested in terminal events\n * and you also handled emissions internally by using operators (e.g. using `tap`).\n *\n * Whichever style of calling `subscribe` you use, in both cases it returns a Subscription object.\n * This object allows you to call `unsubscribe` on it, which in turn will stop the work that an Observable does and will clean\n * up all resources that an Observable used. Note that cancelling a subscription will not call `complete` callback\n * provided to `subscribe` function, which is reserved for a regular completion signal that comes from an Observable.\n *\n * Remember that callbacks provided to `subscribe` are not guaranteed to be called asynchronously.\n * It is an Observable itself that decides when these functions will be called. For example {@link of}\n * by default emits all its values synchronously. Always check documentation for how given Observable\n * will behave when subscribed and if its default behavior can be modified with a `scheduler`.\n *\n * #### Examples\n *\n * Subscribe with an {@link guide/observer Observer}\n *\n * ```ts\n * import { of } from 'rxjs';\n *\n * const sumObserver = {\n * sum: 0,\n * next(value) {\n * console.log('Adding: ' + value);\n * this.sum = this.sum + value;\n * },\n * error() {\n * // We actually could just remove this method,\n * // since we do not really care about errors right now.\n * },\n * complete() {\n * console.log('Sum equals: ' + this.sum);\n * }\n * };\n *\n * of(1, 2, 3) // Synchronously emits 1, 2, 3 and then completes.\n * .subscribe(sumObserver);\n *\n * // Logs:\n * // 'Adding: 1'\n * // 'Adding: 2'\n * // 'Adding: 3'\n * // 'Sum equals: 6'\n * ```\n *\n * Subscribe with functions ({@link deprecations/subscribe-arguments deprecated})\n *\n * ```ts\n * import { of } from 'rxjs'\n *\n * let sum = 0;\n *\n * of(1, 2, 3).subscribe(\n * value => {\n * console.log('Adding: ' + value);\n * sum = sum + value;\n * },\n * undefined,\n * () => console.log('Sum equals: ' + sum)\n * );\n *\n * // Logs:\n * // 'Adding: 1'\n * // 'Adding: 2'\n * // 'Adding: 3'\n * // 'Sum equals: 6'\n * ```\n *\n * Cancel a subscription\n *\n * ```ts\n * import { interval } from 'rxjs';\n *\n * const subscription = interval(1000).subscribe({\n * next(num) {\n * console.log(num)\n * },\n * complete() {\n * // Will not be called, even when cancelling subscription.\n * console.log('completed!');\n * }\n * });\n *\n * setTimeout(() => {\n * subscription.unsubscribe();\n * console.log('unsubscribed!');\n * }, 2500);\n *\n * // Logs:\n * // 0 after 1s\n * // 1 after 2s\n * // 'unsubscribed!' after 2.5s\n * ```\n *\n * @param observerOrNext Either an {@link Observer} with some or all callback methods,\n * or the `next` handler that is called for each value emitted from the subscribed Observable.\n * @param error A handler for a terminal event resulting from an error. If no error handler is provided,\n * the error will be thrown asynchronously as unhandled.\n * @param complete A handler for a terminal event resulting from successful completion.\n * @return A subscription reference to the registered handlers.\n */\n subscribe(\n observerOrNext?: Partial> | ((value: T) => void) | null,\n error?: ((error: any) => void) | null,\n complete?: (() => void) | null\n ): Subscription {\n const subscriber = isSubscriber(observerOrNext) ? observerOrNext : new SafeSubscriber(observerOrNext, error, complete);\n\n errorContext(() => {\n const { operator, source } = this;\n subscriber.add(\n operator\n ? // We're dealing with a subscription in the\n // operator chain to one of our lifted operators.\n operator.call(subscriber, source)\n : source\n ? // If `source` has a value, but `operator` does not, something that\n // had intimate knowledge of our API, like our `Subject`, must have\n // set it. We're going to just call `_subscribe` directly.\n this._subscribe(subscriber)\n : // In all other cases, we're likely wrapping a user-provided initializer\n // function, so we need to catch errors and handle them appropriately.\n this._trySubscribe(subscriber)\n );\n });\n\n return subscriber;\n }\n\n /** @internal */\n protected _trySubscribe(sink: Subscriber): TeardownLogic {\n try {\n return this._subscribe(sink);\n } catch (err) {\n // We don't need to return anything in this case,\n // because it's just going to try to `add()` to a subscription\n // above.\n sink.error(err);\n }\n }\n\n /**\n * Used as a NON-CANCELLABLE means of subscribing to an observable, for use with\n * APIs that expect promises, like `async/await`. You cannot unsubscribe from this.\n *\n * **WARNING**: Only use this with observables you *know* will complete. If the source\n * observable does not complete, you will end up with a promise that is hung up, and\n * potentially all of the state of an async function hanging out in memory. To avoid\n * this situation, look into adding something like {@link timeout}, {@link take},\n * {@link takeWhile}, or {@link takeUntil} amongst others.\n *\n * #### Example\n *\n * ```ts\n * import { interval, take } from 'rxjs';\n *\n * const source$ = interval(1000).pipe(take(4));\n *\n * async function getTotal() {\n * let total = 0;\n *\n * await source$.forEach(value => {\n * total += value;\n * console.log('observable -> ' + value);\n * });\n *\n * return total;\n * }\n *\n * getTotal().then(\n * total => console.log('Total: ' + total)\n * );\n *\n * // Expected:\n * // 'observable -> 0'\n * // 'observable -> 1'\n * // 'observable -> 2'\n * // 'observable -> 3'\n * // 'Total: 6'\n * ```\n *\n * @param next A handler for each value emitted by the observable.\n * @return A promise that either resolves on observable completion or\n * rejects with the handled error.\n */\n forEach(next: (value: T) => void): Promise;\n\n /**\n * @param next a handler for each value emitted by the observable\n * @param promiseCtor a constructor function used to instantiate the Promise\n * @return a promise that either resolves on observable completion or\n * rejects with the handled error\n * @deprecated Passing a Promise constructor will no longer be available\n * in upcoming versions of RxJS. This is because it adds weight to the library, for very\n * little benefit. If you need this functionality, it is recommended that you either\n * polyfill Promise, or you create an adapter to convert the returned native promise\n * to whatever promise implementation you wanted. Will be removed in v8.\n */\n forEach(next: (value: T) => void, promiseCtor: PromiseConstructorLike): Promise;\n\n forEach(next: (value: T) => void, promiseCtor?: PromiseConstructorLike): Promise {\n promiseCtor = getPromiseCtor(promiseCtor);\n\n return new promiseCtor((resolve, reject) => {\n const subscriber = new SafeSubscriber({\n next: (value) => {\n try {\n next(value);\n } catch (err) {\n reject(err);\n subscriber.unsubscribe();\n }\n },\n error: reject,\n complete: resolve,\n });\n this.subscribe(subscriber);\n }) as Promise;\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber): TeardownLogic {\n return this.source?.subscribe(subscriber);\n }\n\n /**\n * An interop point defined by the es7-observable spec https://github.com/zenparsing/es-observable\n * @return This instance of the observable.\n */\n [Symbol_observable]() {\n return this;\n }\n\n /* tslint:disable:max-line-length */\n pipe(): Observable;\n pipe(op1: OperatorFunction): Observable;\n pipe(op1: OperatorFunction, op2: OperatorFunction): Observable;\n pipe(op1: OperatorFunction, op2: OperatorFunction, op3: OperatorFunction): Observable;\n pipe(\n op1: OperatorFunction,\n op2: OperatorFunction,\n op3: OperatorFunction,\n op4: OperatorFunction\n ): Observable;\n pipe(\n op1: OperatorFunction,\n op2: OperatorFunction,\n op3: OperatorFunction,\n op4: OperatorFunction,\n op5: OperatorFunction\n ): Observable;\n pipe(\n op1: OperatorFunction,\n op2: OperatorFunction,\n op3: OperatorFunction,\n op4: OperatorFunction,\n op5: OperatorFunction,\n op6: OperatorFunction\n ): Observable;\n pipe(\n op1: OperatorFunction,\n op2: OperatorFunction,\n op3: OperatorFunction,\n op4: OperatorFunction,\n op5: OperatorFunction,\n op6: OperatorFunction,\n op7: OperatorFunction\n ): Observable;\n pipe(\n op1: OperatorFunction,\n op2: OperatorFunction,\n op3: OperatorFunction,\n op4: OperatorFunction,\n op5: OperatorFunction,\n op6: OperatorFunction,\n op7: OperatorFunction,\n op8: OperatorFunction\n ): Observable;\n pipe(\n op1: OperatorFunction,\n op2: OperatorFunction,\n op3: OperatorFunction,\n op4: OperatorFunction,\n op5: OperatorFunction,\n op6: OperatorFunction,\n op7: OperatorFunction,\n op8: OperatorFunction,\n op9: OperatorFunction\n ): Observable;\n pipe(\n op1: OperatorFunction,\n op2: OperatorFunction,\n op3: OperatorFunction,\n op4: OperatorFunction,\n op5: OperatorFunction,\n op6: OperatorFunction,\n op7: OperatorFunction,\n op8: OperatorFunction,\n op9: OperatorFunction,\n ...operations: OperatorFunction[]\n ): Observable;\n /* tslint:enable:max-line-length */\n\n /**\n * Used to stitch together functional operators into a chain.\n *\n * ## Example\n *\n * ```ts\n * import { interval, filter, map, scan } from 'rxjs';\n *\n * interval(1000)\n * .pipe(\n * filter(x => x % 2 === 0),\n * map(x => x + x),\n * scan((acc, x) => acc + x)\n * )\n * .subscribe(x => console.log(x));\n * ```\n *\n * @return The Observable result of all the operators having been called\n * in the order they were passed in.\n */\n pipe(...operations: OperatorFunction[]): Observable {\n return pipeFromArray(operations)(this);\n }\n\n /* tslint:disable:max-line-length */\n /** @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise */\n toPromise(): Promise;\n /** @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise */\n toPromise(PromiseCtor: typeof Promise): Promise;\n /** @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise */\n toPromise(PromiseCtor: PromiseConstructorLike): Promise;\n /* tslint:enable:max-line-length */\n\n /**\n * Subscribe to this Observable and get a Promise resolving on\n * `complete` with the last emission (if any).\n *\n * **WARNING**: Only use this with observables you *know* will complete. If the source\n * observable does not complete, you will end up with a promise that is hung up, and\n * potentially all of the state of an async function hanging out in memory. To avoid\n * this situation, look into adding something like {@link timeout}, {@link take},\n * {@link takeWhile}, or {@link takeUntil} amongst others.\n *\n * @param [promiseCtor] a constructor function used to instantiate\n * the Promise\n * @return A Promise that resolves with the last value emit, or\n * rejects on an error. If there were no emissions, Promise\n * resolves with undefined.\n * @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise\n */\n toPromise(promiseCtor?: PromiseConstructorLike): Promise {\n promiseCtor = getPromiseCtor(promiseCtor);\n\n return new promiseCtor((resolve, reject) => {\n let value: T | undefined;\n this.subscribe(\n (x: T) => (value = x),\n (err: any) => reject(err),\n () => resolve(value)\n );\n }) as Promise;\n }\n}\n\n/**\n * Decides between a passed promise constructor from consuming code,\n * A default configured promise constructor, and the native promise\n * constructor and returns it. If nothing can be found, it will throw\n * an error.\n * @param promiseCtor The optional promise constructor to passed by consuming code\n */\nfunction getPromiseCtor(promiseCtor: PromiseConstructorLike | undefined) {\n return promiseCtor ?? config.Promise ?? Promise;\n}\n\nfunction isObserver(value: any): value is Observer {\n return value && isFunction(value.next) && isFunction(value.error) && isFunction(value.complete);\n}\n\nfunction isSubscriber(value: any): value is Subscriber {\n return (value && value instanceof Subscriber) || (isObserver(value) && isSubscription(value));\n}\n", "import { Observable } from '../Observable';\nimport { Subscriber } from '../Subscriber';\nimport { OperatorFunction } from '../types';\nimport { isFunction } from './isFunction';\n\n/**\n * Used to determine if an object is an Observable with a lift function.\n */\nexport function hasLift(source: any): source is { lift: InstanceType['lift'] } {\n return isFunction(source?.lift);\n}\n\n/**\n * Creates an `OperatorFunction`. Used to define operators throughout the library in a concise way.\n * @param init The logic to connect the liftedSource to the subscriber at the moment of subscription.\n */\nexport function operate(\n init: (liftedSource: Observable, subscriber: Subscriber) => (() => void) | void\n): OperatorFunction {\n return (source: Observable) => {\n if (hasLift(source)) {\n return source.lift(function (this: Subscriber, liftedSource: Observable) {\n try {\n return init(liftedSource, this);\n } catch (err) {\n this.error(err);\n }\n });\n }\n throw new TypeError('Unable to lift unknown Observable type');\n };\n}\n", "import { Subscriber } from '../Subscriber';\n\n/**\n * Creates an instance of an `OperatorSubscriber`.\n * @param destination The downstream subscriber.\n * @param onNext Handles next values, only called if this subscriber is not stopped or closed. Any\n * error that occurs in this function is caught and sent to the `error` method of this subscriber.\n * @param onError Handles errors from the subscription, any errors that occur in this handler are caught\n * and send to the `destination` error handler.\n * @param onComplete Handles completion notification from the subscription. Any errors that occur in\n * this handler are sent to the `destination` error handler.\n * @param onFinalize Additional teardown logic here. This will only be called on teardown if the\n * subscriber itself is not already closed. This is called after all other teardown logic is executed.\n */\nexport function createOperatorSubscriber(\n destination: Subscriber,\n onNext?: (value: T) => void,\n onComplete?: () => void,\n onError?: (err: any) => void,\n onFinalize?: () => void\n): Subscriber {\n return new OperatorSubscriber(destination, onNext, onComplete, onError, onFinalize);\n}\n\n/**\n * A generic helper for allowing operators to be created with a Subscriber and\n * use closures to capture necessary state from the operator function itself.\n */\nexport class OperatorSubscriber extends Subscriber {\n /**\n * Creates an instance of an `OperatorSubscriber`.\n * @param destination The downstream subscriber.\n * @param onNext Handles next values, only called if this subscriber is not stopped or closed. Any\n * error that occurs in this function is caught and sent to the `error` method of this subscriber.\n * @param onError Handles errors from the subscription, any errors that occur in this handler are caught\n * and send to the `destination` error handler.\n * @param onComplete Handles completion notification from the subscription. Any errors that occur in\n * this handler are sent to the `destination` error handler.\n * @param onFinalize Additional finalization logic here. This will only be called on finalization if the\n * subscriber itself is not already closed. This is called after all other finalization logic is executed.\n * @param shouldUnsubscribe An optional check to see if an unsubscribe call should truly unsubscribe.\n * NOTE: This currently **ONLY** exists to support the strange behavior of {@link groupBy}, where unsubscription\n * to the resulting observable does not actually disconnect from the source if there are active subscriptions\n * to any grouped observable. (DO NOT EXPOSE OR USE EXTERNALLY!!!)\n */\n constructor(\n destination: Subscriber,\n onNext?: (value: T) => void,\n onComplete?: () => void,\n onError?: (err: any) => void,\n private onFinalize?: () => void,\n private shouldUnsubscribe?: () => boolean\n ) {\n // It's important - for performance reasons - that all of this class's\n // members are initialized and that they are always initialized in the same\n // order. This will ensure that all OperatorSubscriber instances have the\n // same hidden class in V8. This, in turn, will help keep the number of\n // hidden classes involved in property accesses within the base class as\n // low as possible. If the number of hidden classes involved exceeds four,\n // the property accesses will become megamorphic and performance penalties\n // will be incurred - i.e. inline caches won't be used.\n //\n // The reasons for ensuring all instances have the same hidden class are\n // further discussed in this blog post from Benedikt Meurer:\n // https://benediktmeurer.de/2018/03/23/impact-of-polymorphism-on-component-based-frameworks-like-react/\n super(destination);\n this._next = onNext\n ? function (this: OperatorSubscriber, value: T) {\n try {\n onNext(value);\n } catch (err) {\n destination.error(err);\n }\n }\n : super._next;\n this._error = onError\n ? function (this: OperatorSubscriber, err: any) {\n try {\n onError(err);\n } catch (err) {\n // Send any errors that occur down stream.\n destination.error(err);\n } finally {\n // Ensure finalization.\n this.unsubscribe();\n }\n }\n : super._error;\n this._complete = onComplete\n ? function (this: OperatorSubscriber) {\n try {\n onComplete();\n } catch (err) {\n // Send any errors that occur down stream.\n destination.error(err);\n } finally {\n // Ensure finalization.\n this.unsubscribe();\n }\n }\n : super._complete;\n }\n\n unsubscribe() {\n if (!this.shouldUnsubscribe || this.shouldUnsubscribe()) {\n const { closed } = this;\n super.unsubscribe();\n // Execute additional teardown if we have any and we didn't already do so.\n !closed && this.onFinalize?.();\n }\n }\n}\n", "import { Subscription } from '../Subscription';\n\ninterface AnimationFrameProvider {\n schedule(callback: FrameRequestCallback): Subscription;\n requestAnimationFrame: typeof requestAnimationFrame;\n cancelAnimationFrame: typeof cancelAnimationFrame;\n delegate:\n | {\n requestAnimationFrame: typeof requestAnimationFrame;\n cancelAnimationFrame: typeof cancelAnimationFrame;\n }\n | undefined;\n}\n\nexport const animationFrameProvider: AnimationFrameProvider = {\n // When accessing the delegate, use the variable rather than `this` so that\n // the functions can be called without being bound to the provider.\n schedule(callback) {\n let request = requestAnimationFrame;\n let cancel: typeof cancelAnimationFrame | undefined = cancelAnimationFrame;\n const { delegate } = animationFrameProvider;\n if (delegate) {\n request = delegate.requestAnimationFrame;\n cancel = delegate.cancelAnimationFrame;\n }\n const handle = request((timestamp) => {\n // Clear the cancel function. The request has been fulfilled, so\n // attempting to cancel the request upon unsubscription would be\n // pointless.\n cancel = undefined;\n callback(timestamp);\n });\n return new Subscription(() => cancel?.(handle));\n },\n requestAnimationFrame(...args) {\n const { delegate } = animationFrameProvider;\n return (delegate?.requestAnimationFrame || requestAnimationFrame)(...args);\n },\n cancelAnimationFrame(...args) {\n const { delegate } = animationFrameProvider;\n return (delegate?.cancelAnimationFrame || cancelAnimationFrame)(...args);\n },\n delegate: undefined,\n};\n", "import { createErrorClass } from './createErrorClass';\n\nexport interface ObjectUnsubscribedError extends Error {}\n\nexport interface ObjectUnsubscribedErrorCtor {\n /**\n * @deprecated Internal implementation detail. Do not construct error instances.\n * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n */\n new (): ObjectUnsubscribedError;\n}\n\n/**\n * An error thrown when an action is invalid because the object has been\n * unsubscribed.\n *\n * @see {@link Subject}\n * @see {@link BehaviorSubject}\n *\n * @class ObjectUnsubscribedError\n */\nexport const ObjectUnsubscribedError: ObjectUnsubscribedErrorCtor = createErrorClass(\n (_super) =>\n function ObjectUnsubscribedErrorImpl(this: any) {\n _super(this);\n this.name = 'ObjectUnsubscribedError';\n this.message = 'object unsubscribed';\n }\n);\n", "import { Operator } from './Operator';\nimport { Observable } from './Observable';\nimport { Subscriber } from './Subscriber';\nimport { Subscription, EMPTY_SUBSCRIPTION } from './Subscription';\nimport { Observer, SubscriptionLike, TeardownLogic } from './types';\nimport { ObjectUnsubscribedError } from './util/ObjectUnsubscribedError';\nimport { arrRemove } from './util/arrRemove';\nimport { errorContext } from './util/errorContext';\n\n/**\n * A Subject is a special type of Observable that allows values to be\n * multicasted to many Observers. Subjects are like EventEmitters.\n *\n * Every Subject is an Observable and an Observer. You can subscribe to a\n * Subject, and you can call next to feed values as well as error and complete.\n */\nexport class Subject extends Observable implements SubscriptionLike {\n closed = false;\n\n private currentObservers: Observer[] | null = null;\n\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n observers: Observer[] = [];\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n isStopped = false;\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n hasError = false;\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n thrownError: any = null;\n\n /**\n * Creates a \"subject\" by basically gluing an observer to an observable.\n *\n * @deprecated Recommended you do not use. Will be removed at some point in the future. Plans for replacement still under discussion.\n */\n static create: (...args: any[]) => any = (destination: Observer, source: Observable): AnonymousSubject => {\n return new AnonymousSubject(destination, source);\n };\n\n constructor() {\n // NOTE: This must be here to obscure Observable's constructor.\n super();\n }\n\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n lift(operator: Operator): Observable {\n const subject = new AnonymousSubject(this, this);\n subject.operator = operator as any;\n return subject as any;\n }\n\n /** @internal */\n protected _throwIfClosed() {\n if (this.closed) {\n throw new ObjectUnsubscribedError();\n }\n }\n\n next(value: T) {\n errorContext(() => {\n this._throwIfClosed();\n if (!this.isStopped) {\n if (!this.currentObservers) {\n this.currentObservers = Array.from(this.observers);\n }\n for (const observer of this.currentObservers) {\n observer.next(value);\n }\n }\n });\n }\n\n error(err: any) {\n errorContext(() => {\n this._throwIfClosed();\n if (!this.isStopped) {\n this.hasError = this.isStopped = true;\n this.thrownError = err;\n const { observers } = this;\n while (observers.length) {\n observers.shift()!.error(err);\n }\n }\n });\n }\n\n complete() {\n errorContext(() => {\n this._throwIfClosed();\n if (!this.isStopped) {\n this.isStopped = true;\n const { observers } = this;\n while (observers.length) {\n observers.shift()!.complete();\n }\n }\n });\n }\n\n unsubscribe() {\n this.isStopped = this.closed = true;\n this.observers = this.currentObservers = null!;\n }\n\n get observed() {\n return this.observers?.length > 0;\n }\n\n /** @internal */\n protected _trySubscribe(subscriber: Subscriber): TeardownLogic {\n this._throwIfClosed();\n return super._trySubscribe(subscriber);\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber): Subscription {\n this._throwIfClosed();\n this._checkFinalizedStatuses(subscriber);\n return this._innerSubscribe(subscriber);\n }\n\n /** @internal */\n protected _innerSubscribe(subscriber: Subscriber) {\n const { hasError, isStopped, observers } = this;\n if (hasError || isStopped) {\n return EMPTY_SUBSCRIPTION;\n }\n this.currentObservers = null;\n observers.push(subscriber);\n return new Subscription(() => {\n this.currentObservers = null;\n arrRemove(observers, subscriber);\n });\n }\n\n /** @internal */\n protected _checkFinalizedStatuses(subscriber: Subscriber) {\n const { hasError, thrownError, isStopped } = this;\n if (hasError) {\n subscriber.error(thrownError);\n } else if (isStopped) {\n subscriber.complete();\n }\n }\n\n /**\n * Creates a new Observable with this Subject as the source. You can do this\n * to create custom Observer-side logic of the Subject and conceal it from\n * code that uses the Observable.\n * @return Observable that this Subject casts to.\n */\n asObservable(): Observable {\n const observable: any = new Observable();\n observable.source = this;\n return observable;\n }\n}\n\nexport class AnonymousSubject extends Subject {\n constructor(\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n public destination?: Observer,\n source?: Observable\n ) {\n super();\n this.source = source;\n }\n\n next(value: T) {\n this.destination?.next?.(value);\n }\n\n error(err: any) {\n this.destination?.error?.(err);\n }\n\n complete() {\n this.destination?.complete?.();\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber): Subscription {\n return this.source?.subscribe(subscriber) ?? EMPTY_SUBSCRIPTION;\n }\n}\n", "import { Subject } from './Subject';\nimport { Subscriber } from './Subscriber';\nimport { Subscription } from './Subscription';\n\n/**\n * A variant of Subject that requires an initial value and emits its current\n * value whenever it is subscribed to.\n */\nexport class BehaviorSubject extends Subject {\n constructor(private _value: T) {\n super();\n }\n\n get value(): T {\n return this.getValue();\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber): Subscription {\n const subscription = super._subscribe(subscriber);\n !subscription.closed && subscriber.next(this._value);\n return subscription;\n }\n\n getValue(): T {\n const { hasError, thrownError, _value } = this;\n if (hasError) {\n throw thrownError;\n }\n this._throwIfClosed();\n return _value;\n }\n\n next(value: T): void {\n super.next((this._value = value));\n }\n}\n", "import { TimestampProvider } from '../types';\n\ninterface DateTimestampProvider extends TimestampProvider {\n delegate: TimestampProvider | undefined;\n}\n\nexport const dateTimestampProvider: DateTimestampProvider = {\n now() {\n // Use the variable rather than `this` so that the function can be called\n // without being bound to the provider.\n return (dateTimestampProvider.delegate || Date).now();\n },\n delegate: undefined,\n};\n", "import { Subject } from './Subject';\nimport { TimestampProvider } from './types';\nimport { Subscriber } from './Subscriber';\nimport { Subscription } from './Subscription';\nimport { dateTimestampProvider } from './scheduler/dateTimestampProvider';\n\n/**\n * A variant of {@link Subject} that \"replays\" old values to new subscribers by emitting them when they first subscribe.\n *\n * `ReplaySubject` has an internal buffer that will store a specified number of values that it has observed. Like `Subject`,\n * `ReplaySubject` \"observes\" values by having them passed to its `next` method. When it observes a value, it will store that\n * value for a time determined by the configuration of the `ReplaySubject`, as passed to its constructor.\n *\n * When a new subscriber subscribes to the `ReplaySubject` instance, it will synchronously emit all values in its buffer in\n * a First-In-First-Out (FIFO) manner. The `ReplaySubject` will also complete, if it has observed completion; and it will\n * error if it has observed an error.\n *\n * There are two main configuration items to be concerned with:\n *\n * 1. `bufferSize` - This will determine how many items are stored in the buffer, defaults to infinite.\n * 2. `windowTime` - The amount of time to hold a value in the buffer before removing it from the buffer.\n *\n * Both configurations may exist simultaneously. So if you would like to buffer a maximum of 3 values, as long as the values\n * are less than 2 seconds old, you could do so with a `new ReplaySubject(3, 2000)`.\n *\n * ### Differences with BehaviorSubject\n *\n * `BehaviorSubject` is similar to `new ReplaySubject(1)`, with a couple of exceptions:\n *\n * 1. `BehaviorSubject` comes \"primed\" with a single value upon construction.\n * 2. `ReplaySubject` will replay values, even after observing an error, where `BehaviorSubject` will not.\n *\n * @see {@link Subject}\n * @see {@link BehaviorSubject}\n * @see {@link shareReplay}\n */\nexport class ReplaySubject extends Subject {\n private _buffer: (T | number)[] = [];\n private _infiniteTimeWindow = true;\n\n /**\n * @param _bufferSize The size of the buffer to replay on subscription\n * @param _windowTime The amount of time the buffered items will stay buffered\n * @param _timestampProvider An object with a `now()` method that provides the current timestamp. This is used to\n * calculate the amount of time something has been buffered.\n */\n constructor(\n private _bufferSize = Infinity,\n private _windowTime = Infinity,\n private _timestampProvider: TimestampProvider = dateTimestampProvider\n ) {\n super();\n this._infiniteTimeWindow = _windowTime === Infinity;\n this._bufferSize = Math.max(1, _bufferSize);\n this._windowTime = Math.max(1, _windowTime);\n }\n\n next(value: T): void {\n const { isStopped, _buffer, _infiniteTimeWindow, _timestampProvider, _windowTime } = this;\n if (!isStopped) {\n _buffer.push(value);\n !_infiniteTimeWindow && _buffer.push(_timestampProvider.now() + _windowTime);\n }\n this._trimBuffer();\n super.next(value);\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber): Subscription {\n this._throwIfClosed();\n this._trimBuffer();\n\n const subscription = this._innerSubscribe(subscriber);\n\n const { _infiniteTimeWindow, _buffer } = this;\n // We use a copy here, so reentrant code does not mutate our array while we're\n // emitting it to a new subscriber.\n const copy = _buffer.slice();\n for (let i = 0; i < copy.length && !subscriber.closed; i += _infiniteTimeWindow ? 1 : 2) {\n subscriber.next(copy[i] as T);\n }\n\n this._checkFinalizedStatuses(subscriber);\n\n return subscription;\n }\n\n private _trimBuffer() {\n const { _bufferSize, _timestampProvider, _buffer, _infiniteTimeWindow } = this;\n // If we don't have an infinite buffer size, and we're over the length,\n // use splice to truncate the old buffer values off. Note that we have to\n // double the size for instances where we're not using an infinite time window\n // because we're storing the values and the timestamps in the same array.\n const adjustedBufferSize = (_infiniteTimeWindow ? 1 : 2) * _bufferSize;\n _bufferSize < Infinity && adjustedBufferSize < _buffer.length && _buffer.splice(0, _buffer.length - adjustedBufferSize);\n\n // Now, if we're not in an infinite time window, remove all values where the time is\n // older than what is allowed.\n if (!_infiniteTimeWindow) {\n const now = _timestampProvider.now();\n let last = 0;\n // Search the array for the first timestamp that isn't expired and\n // truncate the buffer up to that point.\n for (let i = 1; i < _buffer.length && (_buffer[i] as number) <= now; i += 2) {\n last = i;\n }\n last && _buffer.splice(0, last + 1);\n }\n }\n}\n", "import { Scheduler } from '../Scheduler';\nimport { Subscription } from '../Subscription';\nimport { SchedulerAction } from '../types';\n\n/**\n * A unit of work to be executed in a `scheduler`. An action is typically\n * created from within a {@link SchedulerLike} and an RxJS user does not need to concern\n * themselves about creating and manipulating an Action.\n *\n * ```ts\n * class Action extends Subscription {\n * new (scheduler: Scheduler, work: (state?: T) => void);\n * schedule(state?: T, delay: number = 0): Subscription;\n * }\n * ```\n */\nexport class Action extends Subscription {\n constructor(scheduler: Scheduler, work: (this: SchedulerAction, state?: T) => void) {\n super();\n }\n /**\n * Schedules this action on its parent {@link SchedulerLike} for execution. May be passed\n * some context object, `state`. May happen at some point in the future,\n * according to the `delay` parameter, if specified.\n * @param state Some contextual data that the `work` function uses when called by the\n * Scheduler.\n * @param delay Time to wait before executing the work, where the time unit is implicit\n * and defined by the Scheduler.\n * @return A subscription in order to be able to unsubscribe the scheduled work.\n */\n public schedule(state?: T, delay: number = 0): Subscription {\n return this;\n }\n}\n", "import type { TimerHandle } from './timerHandle';\ntype SetIntervalFunction = (handler: () => void, timeout?: number, ...args: any[]) => TimerHandle;\ntype ClearIntervalFunction = (handle: TimerHandle) => void;\n\ninterface IntervalProvider {\n setInterval: SetIntervalFunction;\n clearInterval: ClearIntervalFunction;\n delegate:\n | {\n setInterval: SetIntervalFunction;\n clearInterval: ClearIntervalFunction;\n }\n | undefined;\n}\n\nexport const intervalProvider: IntervalProvider = {\n // When accessing the delegate, use the variable rather than `this` so that\n // the functions can be called without being bound to the provider.\n setInterval(handler: () => void, timeout?: number, ...args) {\n const { delegate } = intervalProvider;\n if (delegate?.setInterval) {\n return delegate.setInterval(handler, timeout, ...args);\n }\n return setInterval(handler, timeout, ...args);\n },\n clearInterval(handle) {\n const { delegate } = intervalProvider;\n return (delegate?.clearInterval || clearInterval)(handle as any);\n },\n delegate: undefined,\n};\n", "import { Action } from './Action';\nimport { SchedulerAction } from '../types';\nimport { Subscription } from '../Subscription';\nimport { AsyncScheduler } from './AsyncScheduler';\nimport { intervalProvider } from './intervalProvider';\nimport { arrRemove } from '../util/arrRemove';\nimport { TimerHandle } from './timerHandle';\n\nexport class AsyncAction extends Action {\n public id: TimerHandle | undefined;\n public state?: T;\n // @ts-ignore: Property has no initializer and is not definitely assigned\n public delay: number;\n protected pending: boolean = false;\n\n constructor(protected scheduler: AsyncScheduler, protected work: (this: SchedulerAction, state?: T) => void) {\n super(scheduler, work);\n }\n\n public schedule(state?: T, delay: number = 0): Subscription {\n if (this.closed) {\n return this;\n }\n\n // Always replace the current state with the new state.\n this.state = state;\n\n const id = this.id;\n const scheduler = this.scheduler;\n\n //\n // Important implementation note:\n //\n // Actions only execute once by default, unless rescheduled from within the\n // scheduled callback. This allows us to implement single and repeat\n // actions via the same code path, without adding API surface area, as well\n // as mimic traditional recursion but across asynchronous boundaries.\n //\n // However, JS runtimes and timers distinguish between intervals achieved by\n // serial `setTimeout` calls vs. a single `setInterval` call. An interval of\n // serial `setTimeout` calls can be individually delayed, which delays\n // scheduling the next `setTimeout`, and so on. `setInterval` attempts to\n // guarantee the interval callback will be invoked more precisely to the\n // interval period, regardless of load.\n //\n // Therefore, we use `setInterval` to schedule single and repeat actions.\n // If the action reschedules itself with the same delay, the interval is not\n // canceled. If the action doesn't reschedule, or reschedules with a\n // different delay, the interval will be canceled after scheduled callback\n // execution.\n //\n if (id != null) {\n this.id = this.recycleAsyncId(scheduler, id, delay);\n }\n\n // Set the pending flag indicating that this action has been scheduled, or\n // has recursively rescheduled itself.\n this.pending = true;\n\n this.delay = delay;\n // If this action has already an async Id, don't request a new one.\n this.id = this.id ?? this.requestAsyncId(scheduler, this.id, delay);\n\n return this;\n }\n\n protected requestAsyncId(scheduler: AsyncScheduler, _id?: TimerHandle, delay: number = 0): TimerHandle {\n return intervalProvider.setInterval(scheduler.flush.bind(scheduler, this), delay);\n }\n\n protected recycleAsyncId(_scheduler: AsyncScheduler, id?: TimerHandle, delay: number | null = 0): TimerHandle | undefined {\n // If this action is rescheduled with the same delay time, don't clear the interval id.\n if (delay != null && this.delay === delay && this.pending === false) {\n return id;\n }\n // Otherwise, if the action's delay time is different from the current delay,\n // or the action has been rescheduled before it's executed, clear the interval id\n if (id != null) {\n intervalProvider.clearInterval(id);\n }\n\n return undefined;\n }\n\n /**\n * Immediately executes this action and the `work` it contains.\n */\n public execute(state: T, delay: number): any {\n if (this.closed) {\n return new Error('executing a cancelled action');\n }\n\n this.pending = false;\n const error = this._execute(state, delay);\n if (error) {\n return error;\n } else if (this.pending === false && this.id != null) {\n // Dequeue if the action didn't reschedule itself. Don't call\n // unsubscribe(), because the action could reschedule later.\n // For example:\n // ```\n // scheduler.schedule(function doWork(counter) {\n // /* ... I'm a busy worker bee ... */\n // var originalAction = this;\n // /* wait 100ms before rescheduling the action */\n // setTimeout(function () {\n // originalAction.schedule(counter + 1);\n // }, 100);\n // }, 1000);\n // ```\n this.id = this.recycleAsyncId(this.scheduler, this.id, null);\n }\n }\n\n protected _execute(state: T, _delay: number): any {\n let errored: boolean = false;\n let errorValue: any;\n try {\n this.work(state);\n } catch (e) {\n errored = true;\n // HACK: Since code elsewhere is relying on the \"truthiness\" of the\n // return here, we can't have it return \"\" or 0 or false.\n // TODO: Clean this up when we refactor schedulers mid-version-8 or so.\n errorValue = e ? e : new Error('Scheduled action threw falsy error');\n }\n if (errored) {\n this.unsubscribe();\n return errorValue;\n }\n }\n\n unsubscribe() {\n if (!this.closed) {\n const { id, scheduler } = this;\n const { actions } = scheduler;\n\n this.work = this.state = this.scheduler = null!;\n this.pending = false;\n\n arrRemove(actions, this);\n if (id != null) {\n this.id = this.recycleAsyncId(scheduler, id, null);\n }\n\n this.delay = null!;\n super.unsubscribe();\n }\n }\n}\n", "import { Action } from './scheduler/Action';\nimport { Subscription } from './Subscription';\nimport { SchedulerLike, SchedulerAction } from './types';\nimport { dateTimestampProvider } from './scheduler/dateTimestampProvider';\n\n/**\n * An execution context and a data structure to order tasks and schedule their\n * execution. Provides a notion of (potentially virtual) time, through the\n * `now()` getter method.\n *\n * Each unit of work in a Scheduler is called an `Action`.\n *\n * ```ts\n * class Scheduler {\n * now(): number;\n * schedule(work, delay?, state?): Subscription;\n * }\n * ```\n *\n * @deprecated Scheduler is an internal implementation detail of RxJS, and\n * should not be used directly. Rather, create your own class and implement\n * {@link SchedulerLike}. Will be made internal in v8.\n */\nexport class Scheduler implements SchedulerLike {\n public static now: () => number = dateTimestampProvider.now;\n\n constructor(private schedulerActionCtor: typeof Action, now: () => number = Scheduler.now) {\n this.now = now;\n }\n\n /**\n * A getter method that returns a number representing the current time\n * (at the time this function was called) according to the scheduler's own\n * internal clock.\n * @return A number that represents the current time. May or may not\n * have a relation to wall-clock time. May or may not refer to a time unit\n * (e.g. milliseconds).\n */\n public now: () => number;\n\n /**\n * Schedules a function, `work`, for execution. May happen at some point in\n * the future, according to the `delay` parameter, if specified. May be passed\n * some context object, `state`, which will be passed to the `work` function.\n *\n * The given arguments will be processed an stored as an Action object in a\n * queue of actions.\n *\n * @param work A function representing a task, or some unit of work to be\n * executed by the Scheduler.\n * @param delay Time to wait before executing the work, where the time unit is\n * implicit and defined by the Scheduler itself.\n * @param state Some contextual data that the `work` function uses when called\n * by the Scheduler.\n * @return A subscription in order to be able to unsubscribe the scheduled work.\n */\n public schedule(work: (this: SchedulerAction, state?: T) => void, delay: number = 0, state?: T): Subscription {\n return new this.schedulerActionCtor(this, work).schedule(state, delay);\n }\n}\n", "import { Scheduler } from '../Scheduler';\nimport { Action } from './Action';\nimport { AsyncAction } from './AsyncAction';\nimport { TimerHandle } from './timerHandle';\n\nexport class AsyncScheduler extends Scheduler {\n public actions: Array> = [];\n /**\n * A flag to indicate whether the Scheduler is currently executing a batch of\n * queued actions.\n * @internal\n */\n public _active: boolean = false;\n /**\n * An internal ID used to track the latest asynchronous task such as those\n * coming from `setTimeout`, `setInterval`, `requestAnimationFrame`, and\n * others.\n * @internal\n */\n public _scheduled: TimerHandle | undefined;\n\n constructor(SchedulerAction: typeof Action, now: () => number = Scheduler.now) {\n super(SchedulerAction, now);\n }\n\n public flush(action: AsyncAction): void {\n const { actions } = this;\n\n if (this._active) {\n actions.push(action);\n return;\n }\n\n let error: any;\n this._active = true;\n\n do {\n if ((error = action.execute(action.state, action.delay))) {\n break;\n }\n } while ((action = actions.shift()!)); // exhaust the scheduler queue\n\n this._active = false;\n\n if (error) {\n while ((action = actions.shift()!)) {\n action.unsubscribe();\n }\n throw error;\n }\n }\n}\n", "import { AsyncAction } from './AsyncAction';\nimport { AsyncScheduler } from './AsyncScheduler';\n\n/**\n *\n * Async Scheduler\n *\n * Schedule task as if you used setTimeout(task, duration)\n *\n * `async` scheduler schedules tasks asynchronously, by putting them on the JavaScript\n * event loop queue. It is best used to delay tasks in time or to schedule tasks repeating\n * in intervals.\n *\n * If you just want to \"defer\" task, that is to perform it right after currently\n * executing synchronous code ends (commonly achieved by `setTimeout(deferredTask, 0)`),\n * better choice will be the {@link asapScheduler} scheduler.\n *\n * ## Examples\n * Use async scheduler to delay task\n * ```ts\n * import { asyncScheduler } from 'rxjs';\n *\n * const task = () => console.log('it works!');\n *\n * asyncScheduler.schedule(task, 2000);\n *\n * // After 2 seconds logs:\n * // \"it works!\"\n * ```\n *\n * Use async scheduler to repeat task in intervals\n * ```ts\n * import { asyncScheduler } from 'rxjs';\n *\n * function task(state) {\n * console.log(state);\n * this.schedule(state + 1, 1000); // `this` references currently executing Action,\n * // which we reschedule with new state and delay\n * }\n *\n * asyncScheduler.schedule(task, 3000, 0);\n *\n * // Logs:\n * // 0 after 3s\n * // 1 after 4s\n * // 2 after 5s\n * // 3 after 6s\n * ```\n */\n\nexport const asyncScheduler = new AsyncScheduler(AsyncAction);\n\n/**\n * @deprecated Renamed to {@link asyncScheduler}. Will be removed in v8.\n */\nexport const async = asyncScheduler;\n", "import { AsyncAction } from './AsyncAction';\nimport { Subscription } from '../Subscription';\nimport { QueueScheduler } from './QueueScheduler';\nimport { SchedulerAction } from '../types';\nimport { TimerHandle } from './timerHandle';\n\nexport class QueueAction extends AsyncAction {\n constructor(protected scheduler: QueueScheduler, protected work: (this: SchedulerAction, state?: T) => void) {\n super(scheduler, work);\n }\n\n public schedule(state?: T, delay: number = 0): Subscription {\n if (delay > 0) {\n return super.schedule(state, delay);\n }\n this.delay = delay;\n this.state = state;\n this.scheduler.flush(this);\n return this;\n }\n\n public execute(state: T, delay: number): any {\n return delay > 0 || this.closed ? super.execute(state, delay) : this._execute(state, delay);\n }\n\n protected requestAsyncId(scheduler: QueueScheduler, id?: TimerHandle, delay: number = 0): TimerHandle {\n // If delay exists and is greater than 0, or if the delay is null (the\n // action wasn't rescheduled) but was originally scheduled as an async\n // action, then recycle as an async action.\n\n if ((delay != null && delay > 0) || (delay == null && this.delay > 0)) {\n return super.requestAsyncId(scheduler, id, delay);\n }\n\n // Otherwise flush the scheduler starting with this action.\n scheduler.flush(this);\n\n // HACK: In the past, this was returning `void`. However, `void` isn't a valid\n // `TimerHandle`, and generally the return value here isn't really used. So the\n // compromise is to return `0` which is both \"falsy\" and a valid `TimerHandle`,\n // as opposed to refactoring every other instanceo of `requestAsyncId`.\n return 0;\n }\n}\n", "import { AsyncScheduler } from './AsyncScheduler';\n\nexport class QueueScheduler extends AsyncScheduler {\n}\n", "import { QueueAction } from './QueueAction';\nimport { QueueScheduler } from './QueueScheduler';\n\n/**\n *\n * Queue Scheduler\n *\n * Put every next task on a queue, instead of executing it immediately\n *\n * `queue` scheduler, when used with delay, behaves the same as {@link asyncScheduler} scheduler.\n *\n * When used without delay, it schedules given task synchronously - executes it right when\n * it is scheduled. However when called recursively, that is when inside the scheduled task,\n * another task is scheduled with queue scheduler, instead of executing immediately as well,\n * that task will be put on a queue and wait for current one to finish.\n *\n * This means that when you execute task with `queue` scheduler, you are sure it will end\n * before any other task scheduled with that scheduler will start.\n *\n * ## Examples\n * Schedule recursively first, then do something\n * ```ts\n * import { queueScheduler } from 'rxjs';\n *\n * queueScheduler.schedule(() => {\n * queueScheduler.schedule(() => console.log('second')); // will not happen now, but will be put on a queue\n *\n * console.log('first');\n * });\n *\n * // Logs:\n * // \"first\"\n * // \"second\"\n * ```\n *\n * Reschedule itself recursively\n * ```ts\n * import { queueScheduler } from 'rxjs';\n *\n * queueScheduler.schedule(function(state) {\n * if (state !== 0) {\n * console.log('before', state);\n * this.schedule(state - 1); // `this` references currently executing Action,\n * // which we reschedule with new state\n * console.log('after', state);\n * }\n * }, 0, 3);\n *\n * // In scheduler that runs recursively, you would expect:\n * // \"before\", 3\n * // \"before\", 2\n * // \"before\", 1\n * // \"after\", 1\n * // \"after\", 2\n * // \"after\", 3\n *\n * // But with queue it logs:\n * // \"before\", 3\n * // \"after\", 3\n * // \"before\", 2\n * // \"after\", 2\n * // \"before\", 1\n * // \"after\", 1\n * ```\n */\n\nexport const queueScheduler = new QueueScheduler(QueueAction);\n\n/**\n * @deprecated Renamed to {@link queueScheduler}. Will be removed in v8.\n */\nexport const queue = queueScheduler;\n", "import { AsyncAction } from './AsyncAction';\nimport { AnimationFrameScheduler } from './AnimationFrameScheduler';\nimport { SchedulerAction } from '../types';\nimport { animationFrameProvider } from './animationFrameProvider';\nimport { TimerHandle } from './timerHandle';\n\nexport class AnimationFrameAction extends AsyncAction {\n constructor(protected scheduler: AnimationFrameScheduler, protected work: (this: SchedulerAction, state?: T) => void) {\n super(scheduler, work);\n }\n\n protected requestAsyncId(scheduler: AnimationFrameScheduler, id?: TimerHandle, delay: number = 0): TimerHandle {\n // If delay is greater than 0, request as an async action.\n if (delay !== null && delay > 0) {\n return super.requestAsyncId(scheduler, id, delay);\n }\n // Push the action to the end of the scheduler queue.\n scheduler.actions.push(this);\n // If an animation frame has already been requested, don't request another\n // one. If an animation frame hasn't been requested yet, request one. Return\n // the current animation frame request id.\n return scheduler._scheduled || (scheduler._scheduled = animationFrameProvider.requestAnimationFrame(() => scheduler.flush(undefined)));\n }\n\n protected recycleAsyncId(scheduler: AnimationFrameScheduler, id?: TimerHandle, delay: number = 0): TimerHandle | undefined {\n // If delay exists and is greater than 0, or if the delay is null (the\n // action wasn't rescheduled) but was originally scheduled as an async\n // action, then recycle as an async action.\n if (delay != null ? delay > 0 : this.delay > 0) {\n return super.recycleAsyncId(scheduler, id, delay);\n }\n // If the scheduler queue has no remaining actions with the same async id,\n // cancel the requested animation frame and set the scheduled flag to\n // undefined so the next AnimationFrameAction will request its own.\n const { actions } = scheduler;\n if (id != null && id === scheduler._scheduled && actions[actions.length - 1]?.id !== id) {\n animationFrameProvider.cancelAnimationFrame(id as number);\n scheduler._scheduled = undefined;\n }\n // Return undefined so the action knows to request a new async id if it's rescheduled.\n return undefined;\n }\n}\n", "import { AsyncAction } from './AsyncAction';\nimport { AsyncScheduler } from './AsyncScheduler';\n\nexport class AnimationFrameScheduler extends AsyncScheduler {\n public flush(action?: AsyncAction): void {\n this._active = true;\n // The async id that effects a call to flush is stored in _scheduled.\n // Before executing an action, it's necessary to check the action's async\n // id to determine whether it's supposed to be executed in the current\n // flush.\n // Previous implementations of this method used a count to determine this,\n // but that was unsound, as actions that are unsubscribed - i.e. cancelled -\n // are removed from the actions array and that can shift actions that are\n // scheduled to be executed in a subsequent flush into positions at which\n // they are executed within the current flush.\n let flushId;\n if (action) {\n flushId = action.id;\n } else {\n flushId = this._scheduled;\n this._scheduled = undefined;\n }\n\n const { actions } = this;\n let error: any;\n action = action || actions.shift()!;\n\n do {\n if ((error = action.execute(action.state, action.delay))) {\n break;\n }\n } while ((action = actions[0]) && action.id === flushId && actions.shift());\n\n this._active = false;\n\n if (error) {\n while ((action = actions[0]) && action.id === flushId && actions.shift()) {\n action.unsubscribe();\n }\n throw error;\n }\n }\n}\n", "import { AnimationFrameAction } from './AnimationFrameAction';\nimport { AnimationFrameScheduler } from './AnimationFrameScheduler';\n\n/**\n *\n * Animation Frame Scheduler\n *\n * Perform task when `window.requestAnimationFrame` would fire\n *\n * When `animationFrame` scheduler is used with delay, it will fall back to {@link asyncScheduler} scheduler\n * behaviour.\n *\n * Without delay, `animationFrame` scheduler can be used to create smooth browser animations.\n * It makes sure scheduled task will happen just before next browser content repaint,\n * thus performing animations as efficiently as possible.\n *\n * ## Example\n * Schedule div height animation\n * ```ts\n * // html:
\n * import { animationFrameScheduler } from 'rxjs';\n *\n * const div = document.querySelector('div');\n *\n * animationFrameScheduler.schedule(function(height) {\n * div.style.height = height + \"px\";\n *\n * this.schedule(height + 1); // `this` references currently executing Action,\n * // which we reschedule with new state\n * }, 0, 0);\n *\n * // You will see a div element growing in height\n * ```\n */\n\nexport const animationFrameScheduler = new AnimationFrameScheduler(AnimationFrameAction);\n\n/**\n * @deprecated Renamed to {@link animationFrameScheduler}. Will be removed in v8.\n */\nexport const animationFrame = animationFrameScheduler;\n", "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\n\n/**\n * A simple Observable that emits no items to the Observer and immediately\n * emits a complete notification.\n *\n * Just emits 'complete', and nothing else.\n *\n * ![](empty.png)\n *\n * A simple Observable that only emits the complete notification. It can be used\n * for composing with other Observables, such as in a {@link mergeMap}.\n *\n * ## Examples\n *\n * Log complete notification\n *\n * ```ts\n * import { EMPTY } from 'rxjs';\n *\n * EMPTY.subscribe({\n * next: () => console.log('Next'),\n * complete: () => console.log('Complete!')\n * });\n *\n * // Outputs\n * // Complete!\n * ```\n *\n * Emit the number 7, then complete\n *\n * ```ts\n * import { EMPTY, startWith } from 'rxjs';\n *\n * const result = EMPTY.pipe(startWith(7));\n * result.subscribe(x => console.log(x));\n *\n * // Outputs\n * // 7\n * ```\n *\n * Map and flatten only odd numbers to the sequence `'a'`, `'b'`, `'c'`\n *\n * ```ts\n * import { interval, mergeMap, of, EMPTY } from 'rxjs';\n *\n * const interval$ = interval(1000);\n * const result = interval$.pipe(\n * mergeMap(x => x % 2 === 1 ? of('a', 'b', 'c') : EMPTY),\n * );\n * result.subscribe(x => console.log(x));\n *\n * // Results in the following to the console:\n * // x is equal to the count on the interval, e.g. (0, 1, 2, 3, ...)\n * // x will occur every 1000ms\n * // if x % 2 is equal to 1, print a, b, c (each on its own)\n * // if x % 2 is not equal to 1, nothing will be output\n * ```\n *\n * @see {@link Observable}\n * @see {@link NEVER}\n * @see {@link of}\n * @see {@link throwError}\n */\nexport const EMPTY = new Observable((subscriber) => subscriber.complete());\n\n/**\n * @param scheduler A {@link SchedulerLike} to use for scheduling\n * the emission of the complete notification.\n * @deprecated Replaced with the {@link EMPTY} constant or {@link scheduled} (e.g. `scheduled([], scheduler)`). Will be removed in v8.\n */\nexport function empty(scheduler?: SchedulerLike) {\n return scheduler ? emptyScheduled(scheduler) : EMPTY;\n}\n\nfunction emptyScheduled(scheduler: SchedulerLike) {\n return new Observable((subscriber) => scheduler.schedule(() => subscriber.complete()));\n}\n", "import { SchedulerLike } from '../types';\nimport { isFunction } from './isFunction';\n\nexport function isScheduler(value: any): value is SchedulerLike {\n return value && isFunction(value.schedule);\n}\n", "import { SchedulerLike } from '../types';\nimport { isFunction } from './isFunction';\nimport { isScheduler } from './isScheduler';\n\nfunction last(arr: T[]): T | undefined {\n return arr[arr.length - 1];\n}\n\nexport function popResultSelector(args: any[]): ((...args: unknown[]) => unknown) | undefined {\n return isFunction(last(args)) ? args.pop() : undefined;\n}\n\nexport function popScheduler(args: any[]): SchedulerLike | undefined {\n return isScheduler(last(args)) ? args.pop() : undefined;\n}\n\nexport function popNumber(args: any[], defaultValue: number): number {\n return typeof last(args) === 'number' ? args.pop()! : defaultValue;\n}\n", "export const isArrayLike = ((x: any): x is ArrayLike => x && typeof x.length === 'number' && typeof x !== 'function');", "import { isFunction } from \"./isFunction\";\n\n/**\n * Tests to see if the object is \"thennable\".\n * @param value the object to test\n */\nexport function isPromise(value: any): value is PromiseLike {\n return isFunction(value?.then);\n}\n", "import { InteropObservable } from '../types';\nimport { observable as Symbol_observable } from '../symbol/observable';\nimport { isFunction } from './isFunction';\n\n/** Identifies an input as being Observable (but not necessary an Rx Observable) */\nexport function isInteropObservable(input: any): input is InteropObservable {\n return isFunction(input[Symbol_observable]);\n}\n", "import { isFunction } from './isFunction';\n\nexport function isAsyncIterable(obj: any): obj is AsyncIterable {\n return Symbol.asyncIterator && isFunction(obj?.[Symbol.asyncIterator]);\n}\n", "/**\n * Creates the TypeError to throw if an invalid object is passed to `from` or `scheduled`.\n * @param input The object that was passed.\n */\nexport function createInvalidObservableTypeError(input: any) {\n // TODO: We should create error codes that can be looked up, so this can be less verbose.\n return new TypeError(\n `You provided ${\n input !== null && typeof input === 'object' ? 'an invalid object' : `'${input}'`\n } where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`\n );\n}\n", "export function getSymbolIterator(): symbol {\n if (typeof Symbol !== 'function' || !Symbol.iterator) {\n return '@@iterator' as any;\n }\n\n return Symbol.iterator;\n}\n\nexport const iterator = getSymbolIterator();\n", "import { iterator as Symbol_iterator } from '../symbol/iterator';\nimport { isFunction } from './isFunction';\n\n/** Identifies an input as being an Iterable */\nexport function isIterable(input: any): input is Iterable {\n return isFunction(input?.[Symbol_iterator]);\n}\n", "import { ReadableStreamLike } from '../types';\nimport { isFunction } from './isFunction';\n\nexport async function* readableStreamLikeToAsyncGenerator(readableStream: ReadableStreamLike): AsyncGenerator {\n const reader = readableStream.getReader();\n try {\n while (true) {\n const { value, done } = await reader.read();\n if (done) {\n return;\n }\n yield value!;\n }\n } finally {\n reader.releaseLock();\n }\n}\n\nexport function isReadableStreamLike(obj: any): obj is ReadableStreamLike {\n // We don't want to use instanceof checks because they would return\n // false for instances from another Realm, like an